diff --git a/.gitignore b/.gitignore
index dd6040b4..0d4633f3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,6 +11,11 @@ fastlane/screenshots/screenshots.html
# Swift build artifacts
.build/
buildServer.json
+build_sim.log
# VSCode/Cursor settings (personal preferences)
-.vscode/
\ No newline at end of file
+.vscode/
+
+# Fastlane
+fastlane/.env
+fastlane/builds/
diff --git a/Makefile b/Makefile
index fb7b200b..0fff2752 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: help setup setup_hook setup_snapshot setup_fastlane setup_cursor update update_fastlane update_swiftformat format screenshots
+.PHONY: help setup setup_hook setup_snapshot setup_fastlane setup_cursor update update_fastlane update_swiftformat format screenshots upload_screenshots testflight fastlane build test
# Цвета и шрифт
YELLOW=\033[1;33m
@@ -309,6 +309,67 @@ screenshots:
bundle exec fastlane snapshot; \
'
+## upload_screenshots: Загрузить существующие скриншоты в App Store Connect
+upload_screenshots:
+ @bash -c '\
+ set -e; \
+ if [ ! -d fastlane ] || [ ! -f fastlane/Fastfile ]; then \
+ printf "$(YELLOW)fastlane не инициализирован в проекте$(RESET)\n"; \
+ $(MAKE) setup_fastlane; \
+ if [ ! -d fastlane ] || [ ! -f fastlane/Fastfile ]; then \
+ printf "$(RED)Нужно инициализировать fastlane перед использованием$(RESET)\n"; \
+ exit 1; \
+ fi; \
+ fi; \
+ printf "$(YELLOW)Загрузка существующих скриншотов в App Store Connect...$(RESET)\n"; \
+ eval "$$(rbenv init -)"; \
+ rbenv shell $(RUBY_VERSION); \
+ bundle exec fastlane ios upload_screenshots; \
+ '
+
+## testflight: Собрать и отправить сборку в TestFlight через fastlane
+testflight:
+ @bash -c '\
+ set -e; \
+ if [ ! -d fastlane ] || [ ! -f fastlane/Fastfile ]; then \
+ printf "$(YELLOW)fastlane не инициализирован в проекте$(RESET)\n"; \
+ $(MAKE) setup_fastlane; \
+ if [ ! -d fastlane ] || [ ! -f fastlane/Fastfile ]; then \
+ printf "$(RED)Нужно инициализировать fastlane перед использованием$(RESET)\n"; \
+ exit 1; \
+ fi; \
+ fi; \
+ printf "$(YELLOW)Запуск fastlane release для отправки в TestFlight...$(RESET)\n"; \
+ eval "$$(rbenv init -)"; \
+ rbenv shell $(RUBY_VERSION); \
+ bundle exec fastlane ios release; \
+ '
+
+## fastlane: Запустить меню команд fastlane
+fastlane:
+ @bash -c '\
+ set -e; \
+ if [ ! -d fastlane ] || [ ! -f fastlane/Fastfile ]; then \
+ printf "$(YELLOW)fastlane не инициализирован в проекте$(RESET)\n"; \
+ $(MAKE) setup_fastlane; \
+ if [ ! -d fastlane ] || [ ! -f fastlane/Fastfile ]; then \
+ printf "$(RED)Нужно инициализировать fastlane перед использованием$(RESET)\n"; \
+ exit 1; \
+ fi; \
+ fi; \
+ eval "$$(rbenv init -)"; \
+ rbenv shell $(RUBY_VERSION); \
+ bundle exec fastlane; \
+ '
+
+## build: Сборка проекта в терминале
+build:
+ xcodebuild -project SwiftUI-WorkoutApp.xcodeproj -scheme SwiftUI-WorkoutApp -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 16 Pro' build
+
+## test: Запускает unit-тесты в терминале
+test:
+ xcodebuild -project SwiftUI-WorkoutApp.xcodeproj -scheme SwiftUI-WorkoutApp -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 16 Pro' test -testPlan SwiftUI-WorkoutApp
+
.DEFAULT:
@printf "$(RED)Неизвестная команда: 'make $@'\n$(RESET)"
@$(MAKE) help
diff --git a/README.md b/README.md
index c9e1df29..38c02d28 100644
--- a/README.md
+++ b/README.md
@@ -182,16 +182,16 @@ make screenshots
#### iPhone
| Карта с площадками | Список площадок | Площадка | Прошедшие мероприятия | Мероприятие | Профиль |
| --- | --- | --- | --- | --- | --- |
-|
|
|
|
|
|
|
+|
|
|
|
|
|
|
#### iPad
| Карта с площадками | Список площадок | Площадка | Прошедшие мероприятия | Мероприятие | Профиль |
| --- | --- | --- | --- | --- | --- |
-|
|
|
|
|
|
|
+|
|
|
|
|
|
|
#### Модели девайсов, используемые для скриншотов
По состоянию на 2025 год Apple берет за основу скриншоты для диагонали 6.9 (или 6.7) дюймов для айфона (13 дюймов для айпада) и масштабирует их под все остальные размеры экранов, то есть можно использовать для скриншотов по одному девайсу на платформу:
-- iPhone 16 Pro Max
-- iPad Pro 13-inch
+- iPhone 15 Pro Max
+- iPad Pro (12.9-inch) (6th generation)
Список всех существующих девайсов есть [тут](https://iosref.com/res).
diff --git a/SwiftUI-WorkoutApp.xcodeproj/project.pbxproj b/SwiftUI-WorkoutApp.xcodeproj/project.pbxproj
index 4ec82fe9..529eb1ba 100644
--- a/SwiftUI-WorkoutApp.xcodeproj/project.pbxproj
+++ b/SwiftUI-WorkoutApp.xcodeproj/project.pbxproj
@@ -445,10 +445,11 @@
CLANG_TIDY_BUGPRONE_REDUNDANT_BRANCH_CONDITION = YES;
CLANG_TIDY_MISC_REDUNDANT_EXPRESSION = YES;
CLANG_WARN_SEMICOLON_BEFORE_METHOD_BODY = YES;
+ CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_ASSET_PATHS = "SwiftUI-WorkoutApp/PreviewContent";
- DEVELOPMENT_TEAM = CR68PP2Z3F;
+ DEVELOPMENT_TEAM = 3PHS45582J;
ENABLE_PREVIEWS = YES;
GCC_WARN_UNUSED_LABEL = YES;
GCC_WARN_UNUSED_PARAMETER = YES;
@@ -468,9 +469,10 @@
INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait";
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- MARKETING_VERSION = 3.13.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.FGU.WorkOut;
+ MARKETING_VERSION = 3.13.1;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.oleg991.SW-Parks";
PRODUCT_NAME = WorkoutApp;
+ PROVISIONING_PROFILE_SPECIFIER = "";
RUN_CLANG_STATIC_ANALYZER = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
@@ -498,10 +500,11 @@
CLANG_TIDY_BUGPRONE_REDUNDANT_BRANCH_CONDITION = YES;
CLANG_TIDY_MISC_REDUNDANT_EXPRESSION = YES;
CLANG_WARN_SEMICOLON_BEFORE_METHOD_BODY = YES;
+ CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_ASSET_PATHS = "SwiftUI-WorkoutApp/PreviewContent";
- DEVELOPMENT_TEAM = CR68PP2Z3F;
+ DEVELOPMENT_TEAM = 3PHS45582J;
ENABLE_PREVIEWS = YES;
GCC_WARN_UNUSED_LABEL = YES;
GCC_WARN_UNUSED_PARAMETER = YES;
@@ -521,9 +524,10 @@
INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait";
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
- MARKETING_VERSION = 3.13.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.FGU.WorkOut;
+ MARKETING_VERSION = 3.13.1;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.oleg991.SW-Parks";
PRODUCT_NAME = WorkoutApp;
+ PROVISIONING_PROFILE_SPECIFIER = "";
RUN_CLANG_STATIC_ANALYZER = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
diff --git a/SwiftUI-WorkoutApp/Libraries/SWNetworkClient/Sources/SWNetworkClient/Endpoint.swift b/SwiftUI-WorkoutApp/Libraries/SWNetworkClient/Sources/SWNetworkClient/Endpoint.swift
index 21995834..bd89712f 100644
--- a/SwiftUI-WorkoutApp/Libraries/SWNetworkClient/Sources/SWNetworkClient/Endpoint.swift
+++ b/SwiftUI-WorkoutApp/Libraries/SWNetworkClient/Sources/SWNetworkClient/Endpoint.swift
@@ -83,6 +83,10 @@ enum Endpoint {
/// Возвращает список с кратким набором полей, т.к. при запросе всех данных сервер не справляется с нагрузкой
case getAllParks
+ // MARK: Получить список площадок постранично
+ /// **GET** ${API}/areas?fields=short&page_size=${pageSize}&page=${page}
+ case getParksPageByPage(page: Int, pageSize: Int)
+
// MARK: Получить список площадок, обновленных после указанной даты
/// **GET** ${API}/areas/last/
case getUpdatedParks(from: String)
@@ -284,7 +288,7 @@ extension Endpoint {
"/users/search"
case .getCountries:
"/countries"
- case .getAllParks:
+ case .getAllParks, .getParksPageByPage:
"/areas"
case let .getUpdatedParks(date):
"/areas/last/\(date)"
@@ -363,7 +367,7 @@ extension Endpoint {
.createPark, .editPark:
.post
case .getUser, .getFriendsForUser, .getFriendRequests,
- .getAllParks, .getPark,
+ .getAllParks, .getParksPageByPage, .getPark,
.findUsers, .getParksForUser, .getBlacklist,
.getFutureEvents, .getPastEvents, .getEvent,
.getDialogs, .getMessages, .getJournals,
@@ -393,6 +397,11 @@ extension Endpoint {
var queryItems: [URLQueryItem] {
switch self {
case .getAllParks: [.init(name: "fields", value: "short")]
+ case let .getParksPageByPage(page, pageSize): [
+ .init(name: "fields", value: "short"),
+ .init(name: "page_size", value: String(pageSize)),
+ .init(name: "page", value: String(page))
+ ]
case let .findUsers(name): [.init(name: "name", value: name)]
default: []
}
@@ -427,7 +436,7 @@ extension Endpoint {
.deleteEventComment, .deleteEvent, .getDialogs,
.getMessages, .deleteDialog, .getJournals,
.getJournal, .getJournalEntries, .deleteEntry,
- .deleteJournal, .getAllParks,
+ .deleteJournal, .getAllParks, .getParksPageByPage,
.getUpdatedParks, .deletePark,
.deleteEventPhoto, .deleteParkPhoto:
return nil
diff --git a/SwiftUI-WorkoutApp/Libraries/SWNetworkClient/Sources/SWNetworkClient/SWClient.swift b/SwiftUI-WorkoutApp/Libraries/SWNetworkClient/Sources/SWNetworkClient/SWClient.swift
index b9e882be..d8fa36ee 100644
--- a/SwiftUI-WorkoutApp/Libraries/SWNetworkClient/Sources/SWNetworkClient/SWClient.swift
+++ b/SwiftUI-WorkoutApp/Libraries/SWNetworkClient/Sources/SWNetworkClient/SWClient.swift
@@ -197,6 +197,16 @@ public struct SWClient: Sendable {
return try await makeResult(for: endpoint)
}
+ /// Загружает список площадок постранично
+ /// - Parameters:
+ /// - page: Номер страницы (начиная с 1)
+ /// - pageSize: Количество элементов на странице
+ /// - Returns: Список площадок для указанной страницы
+ public func getParksPageByPage(page: Int, pageSize: Int) async throws -> [Park] {
+ let endpoint = Endpoint.getParksPageByPage(page: page, pageSize: pageSize)
+ return try await makeResult(for: endpoint)
+ }
+
/// Загружает список всех площадок, обновленных после указанной даты
/// - Parameter stringDate: дата отсечки для поиска обновленных площадок
/// - Returns: Список обновленных площадок
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon10Small.imageset/10 1.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon10Small.imageset/10 1.png
new file mode 100644
index 00000000..0203266d
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon10Small.imageset/10 1.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon10Small.imageset/10.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon10Small.imageset/10.png
new file mode 100644
index 00000000..924dd6f1
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon10Small.imageset/10.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon10Small.imageset/AppIcon10.svg b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon10Small.imageset/AppIcon10.svg
deleted file mode 100644
index 9ad6942e..00000000
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon10Small.imageset/AppIcon10.svg
+++ /dev/null
@@ -1,17 +0,0 @@
-
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon10Small.imageset/Contents.json b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon10Small.imageset/Contents.json
index c92d88a9..cef0cbfe 100644
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon10Small.imageset/Contents.json
+++ b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon10Small.imageset/Contents.json
@@ -1,8 +1,18 @@
{
"images" : [
{
- "filename" : "AppIcon10.svg",
- "idiom" : "universal"
+ "idiom" : "universal",
+ "scale" : "1x"
+ },
+ {
+ "filename" : "10.png",
+ "idiom" : "universal",
+ "scale" : "2x"
+ },
+ {
+ "filename" : "10 1.png",
+ "idiom" : "universal",
+ "scale" : "3x"
}
],
"info" : {
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon1Small.imageset/1 1.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon1Small.imageset/1 1.png
new file mode 100644
index 00000000..0c63708a
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon1Small.imageset/1 1.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon1Small.imageset/1.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon1Small.imageset/1.png
new file mode 100644
index 00000000..218b114f
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon1Small.imageset/1.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon1Small.imageset/AppIcon1.svg b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon1Small.imageset/AppIcon1.svg
deleted file mode 100644
index 905ec0b7..00000000
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon1Small.imageset/AppIcon1.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon1Small.imageset/Contents.json b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon1Small.imageset/Contents.json
index d9c398b1..c69f957b 100644
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon1Small.imageset/Contents.json
+++ b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon1Small.imageset/Contents.json
@@ -1,8 +1,18 @@
{
"images" : [
{
- "filename" : "AppIcon1.svg",
- "idiom" : "universal"
+ "idiom" : "universal",
+ "scale" : "1x"
+ },
+ {
+ "filename" : "1.png",
+ "idiom" : "universal",
+ "scale" : "2x"
+ },
+ {
+ "filename" : "1 1.png",
+ "idiom" : "universal",
+ "scale" : "3x"
}
],
"info" : {
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon2Small.imageset/2 1.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon2Small.imageset/2 1.png
new file mode 100644
index 00000000..b633c163
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon2Small.imageset/2 1.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon2Small.imageset/2.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon2Small.imageset/2.png
new file mode 100644
index 00000000..a93ae543
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon2Small.imageset/2.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon2Small.imageset/AppIcon2.svg b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon2Small.imageset/AppIcon2.svg
deleted file mode 100644
index 9b420987..00000000
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon2Small.imageset/AppIcon2.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon2Small.imageset/Contents.json b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon2Small.imageset/Contents.json
index 4c653bb2..1f9e2dc9 100644
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon2Small.imageset/Contents.json
+++ b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon2Small.imageset/Contents.json
@@ -1,8 +1,18 @@
{
"images" : [
{
- "filename" : "AppIcon2.svg",
- "idiom" : "universal"
+ "idiom" : "universal",
+ "scale" : "1x"
+ },
+ {
+ "filename" : "2.png",
+ "idiom" : "universal",
+ "scale" : "2x"
+ },
+ {
+ "filename" : "2 1.png",
+ "idiom" : "universal",
+ "scale" : "3x"
}
],
"info" : {
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon3Small.imageset/3 1.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon3Small.imageset/3 1.png
new file mode 100644
index 00000000..8ce6ad37
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon3Small.imageset/3 1.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon3Small.imageset/3.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon3Small.imageset/3.png
new file mode 100644
index 00000000..e6abba79
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon3Small.imageset/3.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon3Small.imageset/AppIcon3.svg b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon3Small.imageset/AppIcon3.svg
deleted file mode 100644
index e20ac566..00000000
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon3Small.imageset/AppIcon3.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon3Small.imageset/Contents.json b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon3Small.imageset/Contents.json
index 3431328a..fa33c65c 100644
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon3Small.imageset/Contents.json
+++ b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon3Small.imageset/Contents.json
@@ -1,8 +1,18 @@
{
"images" : [
{
- "filename" : "AppIcon3.svg",
- "idiom" : "universal"
+ "idiom" : "universal",
+ "scale" : "1x"
+ },
+ {
+ "filename" : "3 1.png",
+ "idiom" : "universal",
+ "scale" : "2x"
+ },
+ {
+ "filename" : "3.png",
+ "idiom" : "universal",
+ "scale" : "3x"
}
],
"info" : {
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon4Small.imageset/4 1.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon4Small.imageset/4 1.png
new file mode 100644
index 00000000..8aa8cbf5
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon4Small.imageset/4 1.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon4Small.imageset/4.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon4Small.imageset/4.png
new file mode 100644
index 00000000..700ea0d0
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon4Small.imageset/4.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon4Small.imageset/AppIcon4.svg b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon4Small.imageset/AppIcon4.svg
deleted file mode 100644
index c03694e6..00000000
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon4Small.imageset/AppIcon4.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon4Small.imageset/Contents.json b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon4Small.imageset/Contents.json
index 6ddb17f5..1639bdb8 100644
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon4Small.imageset/Contents.json
+++ b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon4Small.imageset/Contents.json
@@ -1,8 +1,18 @@
{
"images" : [
{
- "filename" : "AppIcon4.svg",
- "idiom" : "universal"
+ "idiom" : "universal",
+ "scale" : "1x"
+ },
+ {
+ "filename" : "4.png",
+ "idiom" : "universal",
+ "scale" : "2x"
+ },
+ {
+ "filename" : "4 1.png",
+ "idiom" : "universal",
+ "scale" : "3x"
}
],
"info" : {
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon5Small.imageset/5 1.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon5Small.imageset/5 1.png
new file mode 100644
index 00000000..91f765b1
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon5Small.imageset/5 1.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon5Small.imageset/5.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon5Small.imageset/5.png
new file mode 100644
index 00000000..9d72a474
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon5Small.imageset/5.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon5Small.imageset/AppIcon5.svg b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon5Small.imageset/AppIcon5.svg
deleted file mode 100644
index 1138a910..00000000
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon5Small.imageset/AppIcon5.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon5Small.imageset/Contents.json b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon5Small.imageset/Contents.json
index 62c785e4..41cd8cf5 100644
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon5Small.imageset/Contents.json
+++ b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon5Small.imageset/Contents.json
@@ -1,8 +1,18 @@
{
"images" : [
{
- "filename" : "AppIcon5.svg",
- "idiom" : "universal"
+ "idiom" : "universal",
+ "scale" : "1x"
+ },
+ {
+ "filename" : "5.png",
+ "idiom" : "universal",
+ "scale" : "2x"
+ },
+ {
+ "filename" : "5 1.png",
+ "idiom" : "universal",
+ "scale" : "3x"
}
],
"info" : {
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon6Small.imageset/6 1.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon6Small.imageset/6 1.png
new file mode 100644
index 00000000..373a1e67
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon6Small.imageset/6 1.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon6Small.imageset/6.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon6Small.imageset/6.png
new file mode 100644
index 00000000..4d8bb770
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon6Small.imageset/6.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon6Small.imageset/AppIcon6.svg b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon6Small.imageset/AppIcon6.svg
deleted file mode 100644
index 3d39d196..00000000
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon6Small.imageset/AppIcon6.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon6Small.imageset/Contents.json b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon6Small.imageset/Contents.json
index a30636eb..f0d2d50f 100644
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon6Small.imageset/Contents.json
+++ b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon6Small.imageset/Contents.json
@@ -1,8 +1,18 @@
{
"images" : [
{
- "filename" : "AppIcon6.svg",
- "idiom" : "universal"
+ "idiom" : "universal",
+ "scale" : "1x"
+ },
+ {
+ "filename" : "6.png",
+ "idiom" : "universal",
+ "scale" : "2x"
+ },
+ {
+ "filename" : "6 1.png",
+ "idiom" : "universal",
+ "scale" : "3x"
}
],
"info" : {
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon7Small.imageset/7 1.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon7Small.imageset/7 1.png
new file mode 100644
index 00000000..ff182ec1
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon7Small.imageset/7 1.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon7Small.imageset/7.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon7Small.imageset/7.png
new file mode 100644
index 00000000..be9c4841
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon7Small.imageset/7.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon7Small.imageset/AppIcon7.svg b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon7Small.imageset/AppIcon7.svg
deleted file mode 100644
index f55fd267..00000000
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon7Small.imageset/AppIcon7.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon7Small.imageset/Contents.json b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon7Small.imageset/Contents.json
index 8f47d673..b7ee7085 100644
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon7Small.imageset/Contents.json
+++ b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon7Small.imageset/Contents.json
@@ -1,8 +1,18 @@
{
"images" : [
{
- "filename" : "AppIcon7.svg",
- "idiom" : "universal"
+ "idiom" : "universal",
+ "scale" : "1x"
+ },
+ {
+ "filename" : "7.png",
+ "idiom" : "universal",
+ "scale" : "2x"
+ },
+ {
+ "filename" : "7 1.png",
+ "idiom" : "universal",
+ "scale" : "3x"
}
],
"info" : {
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon8Small.imageset/8 1.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon8Small.imageset/8 1.png
new file mode 100644
index 00000000..06e58160
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon8Small.imageset/8 1.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon8Small.imageset/8.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon8Small.imageset/8.png
new file mode 100644
index 00000000..b2cc4f95
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon8Small.imageset/8.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon8Small.imageset/AppIcon8.svg b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon8Small.imageset/AppIcon8.svg
deleted file mode 100644
index 3f72083b..00000000
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon8Small.imageset/AppIcon8.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon8Small.imageset/Contents.json b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon8Small.imageset/Contents.json
index 6d6901df..3cedc71e 100644
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon8Small.imageset/Contents.json
+++ b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon8Small.imageset/Contents.json
@@ -1,8 +1,18 @@
{
"images" : [
{
- "filename" : "AppIcon8.svg",
- "idiom" : "universal"
+ "idiom" : "universal",
+ "scale" : "1x"
+ },
+ {
+ "filename" : "8.png",
+ "idiom" : "universal",
+ "scale" : "2x"
+ },
+ {
+ "filename" : "8 1.png",
+ "idiom" : "universal",
+ "scale" : "3x"
}
],
"info" : {
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon9Small.imageset/9 1.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon9Small.imageset/9 1.png
new file mode 100644
index 00000000..252e2221
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon9Small.imageset/9 1.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon9Small.imageset/9.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon9Small.imageset/9.png
new file mode 100644
index 00000000..adff3eda
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon9Small.imageset/9.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon9Small.imageset/AppIcon9.svg b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon9Small.imageset/AppIcon9.svg
deleted file mode 100644
index 934482a5..00000000
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon9Small.imageset/AppIcon9.svg
+++ /dev/null
@@ -1,6 +0,0 @@
-
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon9Small.imageset/Contents.json b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon9Small.imageset/Contents.json
index 3014daa3..ee34e3d0 100644
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon9Small.imageset/Contents.json
+++ b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIcon9Small.imageset/Contents.json
@@ -1,8 +1,18 @@
{
"images" : [
{
- "filename" : "AppIcon9.svg",
- "idiom" : "universal"
+ "idiom" : "universal",
+ "scale" : "1x"
+ },
+ {
+ "filename" : "9.png",
+ "idiom" : "universal",
+ "scale" : "2x"
+ },
+ {
+ "filename" : "9 1.png",
+ "idiom" : "universal",
+ "scale" : "3x"
}
],
"info" : {
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIconSmall.imageset/Contents.json b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIconSmall.imageset/Contents.json
index d1a0f5e1..ecec3831 100644
--- a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIconSmall.imageset/Contents.json
+++ b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIconSmall.imageset/Contents.json
@@ -1,8 +1,18 @@
{
"images" : [
{
- "filename" : "icon-1024.png",
- "idiom" : "universal"
+ "idiom" : "universal",
+ "scale" : "1x"
+ },
+ {
+ "filename" : "icon-1024 (1) 1.png",
+ "idiom" : "universal",
+ "scale" : "2x"
+ },
+ {
+ "filename" : "icon-1024 (1) 2.png",
+ "idiom" : "universal",
+ "scale" : "3x"
}
],
"info" : {
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIconSmall.imageset/icon-1024 (1) 1.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIconSmall.imageset/icon-1024 (1) 1.png
new file mode 100644
index 00000000..340d1489
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIconSmall.imageset/icon-1024 (1) 1.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIconSmall.imageset/icon-1024 (1) 2.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIconSmall.imageset/icon-1024 (1) 2.png
new file mode 100644
index 00000000..2b2f6ada
Binary files /dev/null and b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIconSmall.imageset/icon-1024 (1) 2.png differ
diff --git a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIconSmall.imageset/icon-1024.png b/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIconSmall.imageset/icon-1024.png
deleted file mode 100644
index d6e45426..00000000
Binary files a/SwiftUI-WorkoutApp/Resources/Assets.xcassets/AppIcon/Thumbnail/AppIconSmall.imageset/icon-1024.png and /dev/null differ
diff --git a/SwiftUI-WorkoutApp/Resources/oldParks.json b/SwiftUI-WorkoutApp/Resources/oldParks.json
deleted file mode 100644
index 67061894..00000000
--- a/SwiftUI-WorkoutApp/Resources/oldParks.json
+++ /dev/null
@@ -1,117518 +0,0 @@
-[
- {
- "id": 3,
- "name": "№3 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "37.762597",
- "latitude": "55.795396",
- "address": "м. Партизанская, улица 2-я Советская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/измайлово.jpg",
- "trainings": 5
- },
- {
- "id": 6,
- "name": "№6 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.504467",
- "latitude": "55.687001",
- "address": "м. Проспект Вернадского, Парк 50-летия Октября",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/50 лет Октября69.jpg",
- "trainings": 3
- },
- {
- "id": 10,
- "name": "№10 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.69965",
- "latitude": "55.624178",
- "address": "м. Домодедовская, Борисовские пруды",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 9,
- "preview": "https://workout.su/uploads/userfiles/борисовский2.jpg",
- "trainings": 8
- },
- {
- "id": 12,
- "name": "№12 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.727476",
- "latitude": "55.774852",
- "address": "м. Семеновская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/Семеновская.jpg",
- "trainings": 5
- },
- {
- "id": 13,
- "name": "№13 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "37.701406",
- "latitude": "55.762228",
- "address": "стадион \"энергия\"",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 12,
- "preview": "https://workout.su/uploads/userfiles/энергия1.jpg",
- "trainings": 8
- },
- {
- "id": 14,
- "name": "№14 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.65226",
- "latitude": "55.87913",
- "address": "м. Медведково",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/медведи1.jpg",
- "trainings": 0
- },
- {
- "id": 15,
- "name": "№15 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.602171420658124",
- "latitude": "55.616168264435245",
- "address": "м. Пражская, улица Кировоградская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-20-20-11-15-3ra.jpg",
- "trainings": 1
- },
- {
- "id": 18,
- "name": "№18 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "30.313087",
- "latitude": "59.838011",
- "address": "м. Московская 5й предпортовый проез д 6 корп 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/Московская1.jpg",
- "trainings": 2
- },
- {
- "id": 20,
- "name": "№20 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.351483",
- "latitude": "59.847391",
- "address": "м. Московская, пр.Космонавтов 47.",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/Московская-2.jpg",
- "trainings": 3
- },
- {
- "id": 21,
- "name": "№21 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.419314",
- "latitude": "59.840896",
- "address": "м. Купчино, ул.Ярослава Гашека д.28к.2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/368.jpg",
- "trainings": 0
- },
- {
- "id": 22,
- "name": "№22 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.314342",
- "latitude": "60.060487",
- "address": "м. Просвещения, ул. Композиторов",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/Просвещения-.jpg",
- "trainings": 1
- },
- {
- "id": 24,
- "name": "№24 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "73.448937",
- "latitude": "54.907027",
- "address": "ул. Молодова, 12",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z_3a6787df.jpg",
- "trainings": 1
- },
- {
- "id": 27,
- "name": "№27 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "73.287806",
- "latitude": "55.024406",
- "address": "Проспект Мира, 13а",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/x_0d451c77.jpg",
- "trainings": 2
- },
- {
- "id": 28,
- "name": "№28 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "73.303139",
- "latitude": "55.024462",
- "address": "Проспект Мира, 6",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_4ab7392640.jpg",
- "trainings": 0
- },
- {
- "id": 29,
- "name": "№29 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "73.286753",
- "latitude": "55.001415",
- "address": "Заречный Бульвар, 3",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_07e0f7d9.jpg",
- "trainings": 1
- },
- {
- "id": 30,
- "name": "№30 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "73.421912",
- "latitude": "54.969608",
- "address": "Ул. Лизы Чайкиной",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_f01d50c4.jpg",
- "trainings": 2
- },
- {
- "id": 32,
- "name": "№32 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "73.43203",
- "latitude": "54.901662",
- "address": "Ул. Василия Маргелова",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z_5f718a5a.jpg",
- "trainings": 0
- },
- {
- "id": 33,
- "name": "№33 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "73.206283",
- "latitude": "55.062567",
- "address": "Ул. Кемеровская\\Набережная Тухачевского",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z_20248bc5.jpg",
- "trainings": 0
- },
- {
- "id": 34,
- "name": "№34 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "73.334897",
- "latitude": "55.002302",
- "address": "Ул. Старозагородная Роща, 10",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z_a3c10d70.jpg",
- "trainings": 0
- },
- {
- "id": 35,
- "name": "№35 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.257074",
- "latitude": "48.637811",
- "address": "Большая Коваливка 6",
- "city_id": 560,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/площадка.jpg",
- "trainings": 0
- },
- {
- "id": 43,
- "name": "№43 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.759758",
- "latitude": "55.806564",
- "address": "м. Черкизовская, ул.Амурская д.6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/черкизон93.jpg",
- "trainings": 2
- },
- {
- "id": 45,
- "name": "№45 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.506147000000055",
- "latitude": "48.757726",
- "address": "ул.8-ой воздушной армии 52",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/x_ec19f272.jpg",
- "trainings": 1
- },
- {
- "id": 46,
- "name": "№46 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.355805000000032",
- "latitude": "59.928045",
- "address": "ул марата 20",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 11,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-21-10-08-07-xy2.jpg",
- "trainings": 9
- },
- {
- "id": 47,
- "name": "№47 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "37.52180352949459",
- "latitude": "55.62815661886896",
- "address": "м. Коньково, улица Академика Капицы 32А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 8,
- "preview": "https://workout.su/uploads/userfiles/коньково1.jpg",
- "trainings": 7
- },
- {
- "id": 49,
- "name": "№49 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.376681",
- "latitude": "60.0105",
- "address": "м. Политехническая, ул. Обручевых, 6",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/z_0c74502e.jpg",
- "trainings": 0
- },
- {
- "id": 50,
- "name": "№50 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "30.417074",
- "latitude": "60.039707",
- "address": "ул. Ушинского, д. 33 к. 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_6706824d.jpg",
- "trainings": 7
- },
- {
- "id": 51,
- "name": "№51 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.343392",
- "latitude": "59.986726",
- "address": "лесной проспект 65 к3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/z_f8dbd2d2.jpg",
- "trainings": 8
- },
- {
- "id": 52,
- "name": "№52 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.397097",
- "latitude": "59.853196",
- "address": "альпийский переулок",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/z_4733a123.jpg",
- "trainings": 1
- },
- {
- "id": 53,
- "name": "№53 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.294928",
- "latitude": "59.995411",
- "address": "ул. Генерала Хрулёва д.6",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/z_73a2f541.jpg",
- "trainings": 3
- },
- {
- "id": 56,
- "name": "№56 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "30.337074",
- "latitude": "60.016342",
- "address": "тореза 82",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/z_368b7d8b32.jpg",
- "trainings": 14
- },
- {
- "id": 57,
- "name": "№57 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "30.27519",
- "latitude": "59.846532",
- "address": "Кировский район,школа 538",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/z_d5d4a641.jpg",
- "trainings": 7
- },
- {
- "id": 59,
- "name": "№59 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.586034",
- "latitude": "50.830591",
- "address": "Ул. Красная, спорт площадка школы №7",
- "city_id": 562,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/z_7fe209af.jpg",
- "trainings": 0
- },
- {
- "id": 60,
- "name": "№60 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.511018",
- "latitude": "55.797328",
- "address": "ул.Новопесчанная, 15",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/IMG_3997.JPG",
- "trainings": 2
- },
- {
- "id": 61,
- "name": "№61 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "50.269161",
- "latitude": "53.231002",
- "address": "металлургов 52 самара",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/плозооо.jpg",
- "trainings": 0
- },
- {
- "id": 65,
- "name": "№65 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "44.472689",
- "latitude": "48.673811",
- "address": "Тулака 3 Советский район",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/y_40823f2a.jpg",
- "trainings": 3
- },
- {
- "id": 66,
- "name": "№66 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "34.930736",
- "latitude": "48.484907",
- "address": "ул. Коробова",
- "city_id": 491,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/x_c500775d.jpg",
- "trainings": 1
- },
- {
- "id": 68,
- "name": "№68 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "35.063991",
- "latitude": "48.430227",
- "address": "Днепропетровск, ж/м Победа 2",
- "city_id": 491,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/x_800b920f.jpg",
- "trainings": 1
- },
- {
- "id": 70,
- "name": "№70 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "34.914763",
- "latitude": "48.480074",
- "address": "ж/м Коммунар, сш№106",
- "city_id": 491,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/x_5fd063c0.jpg",
- "trainings": 1
- },
- {
- "id": 74,
- "name": "№74 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "40.59184970000001",
- "latitude": "50.826395",
- "address": "ул. Блинова, площадка Профессионального Лицея №39",
- "city_id": 562,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/02012011485.jpg",
- "trainings": 0
- },
- {
- "id": 78,
- "name": "№78 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "60.59864700000003",
- "latitude": "56.822927",
- "address": "м. Геологическая, квартал улиц Народной Воли - Шейнкмана - Большакова",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 8,
- "preview": "https://workout.su/uploads/userfiles/воркаут155164.jpg",
- "trainings": 10
- },
- {
- "id": 80,
- "name": "№80 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.506509",
- "latitude": "55.793867",
- "address": "ул.Сальвадора Альенде, дом 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_4001.JPG",
- "trainings": 1
- },
- {
- "id": 81,
- "name": "№81 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.223322",
- "latitude": "50.023839",
- "address": "метро ",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/x_797a9bda.jpg",
- "trainings": 3
- },
- {
- "id": 84,
- "name": "№84 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "36.211105",
- "latitude": "50.029535",
- "address": "Перекресток Клочковской и Тобольской. 15 минут пешком от ст. м. ",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/760.jpg",
- "trainings": 0
- },
- {
- "id": 85,
- "name": "№85 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.596143",
- "latitude": "56.828979",
- "address": "м. Геологическая, Вайнера, 54",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/гринвич1.jpg",
- "trainings": 2
- },
- {
- "id": 92,
- "name": "№92 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.663177",
- "latitude": "56.765171",
- "address": "Уктусский Лесопарк, ул. Щербакова",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/ska1.jpg",
- "trainings": 0
- },
- {
- "id": 96,
- "name": "№96 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.783518",
- "latitude": "48.034094",
- "address": "Донецк, Артёма 172",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/akula.jpg",
- "trainings": 1
- },
- {
- "id": 98,
- "name": "№98 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "50.276368",
- "latitude": "53.238031",
- "address": "республиканская 56",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/y_f3e4006215.jpg",
- "trainings": 1
- },
- {
- "id": 99,
- "name": "№99 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "37.4502893909812",
- "latitude": "55.859170806874474",
- "address": "м. Планерная, парк Северное Тушино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 15,
- "preview": "https://workout.su/uploads/userfiles/св3.jpg",
- "trainings": 23
- },
- {
- "id": 100,
- "name": "№100 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.486057",
- "latitude": "55.796849",
- "address": "м. Октябрьское поле, улица маршала бирюзова, дом 35",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/Фото-0033.jpg",
- "trainings": 1
- },
- {
- "id": 102,
- "name": "№102 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.602386600000045",
- "latitude": "50.8330077",
- "address": " Московский проспект, 150",
- "city_id": 562,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/410_olympic3.jpg",
- "trainings": 0
- },
- {
- "id": 103,
- "name": "№103 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.928306",
- "latitude": "52.402513",
- "address": "пр.Октября 70",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_2360.jpg",
- "trainings": 0
- },
- {
- "id": 105,
- "name": "№105 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.598353",
- "latitude": "55.78875",
- "address": "м. Менделеевская, 1-й тихвинский тупик, дом 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z_5d1a2357.jpg",
- "trainings": 0
- },
- {
- "id": 112,
- "name": "№112 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.438761",
- "latitude": "55.859754",
- "address": "м. Планерная, улица Планерная, дом 12, корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z_14d1c5f0.jpg",
- "trainings": 0
- },
- {
- "id": 113,
- "name": "№113 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.442046",
- "latitude": "55.861818",
- "address": "м. Планерная, ?",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z_25e28383.jpg",
- "trainings": 0
- },
- {
- "id": 115,
- "name": "№115 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.578828",
- "latitude": "55.722001",
- "address": "м. Фрунзенская, Вторая Фрунзенская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/SDC1537290.JPG",
- "trainings": 1
- },
- {
- "id": 116,
- "name": "№116 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "40.63789558436838",
- "latitude": "50.809791076037605",
- "address": "ул. Заводская",
- "city_id": 562,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/y_1736e879.jpg",
- "trainings": 0
- },
- {
- "id": 119,
- "name": "№119 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "85.1402822",
- "latitude": "52.50951070000001",
- "address": "город Бийск.улица Васильева,52",
- "city_id": 569,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/z_ab701380.jpg",
- "trainings": 0
- },
- {
- "id": 124,
- "name": "№124 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "50.185331",
- "latitude": "53.20536",
- "address": "лукачева 17",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_0d19492d.jpg",
- "trainings": 1
- },
- {
- "id": 125,
- "name": "№125 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "85.17205810494488",
- "latitude": "52.51296674412005",
- "address": "улица Советская, стадион Авангард",
- "city_id": 569,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC01812.JPG",
- "trainings": 0
- },
- {
- "id": 127,
- "name": "№127 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "82.95050900000001",
- "latitude": "55.072244",
- "address": "Народная 37",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/SAM_005946.JPG",
- "trainings": 0
- },
- {
- "id": 128,
- "name": "№128 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "82.90414345808699",
- "latitude": "54.988626542951806",
- "address": "Проспект Карла Маркса, 37",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/y_9e725bf8.jpg",
- "trainings": 2
- },
- {
- "id": 130,
- "name": "№130 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.612905",
- "latitude": "55.650457",
- "address": "улица артековская, дом 2, корпус 2, рядом с детской библиотекой номер 94",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/02062011198.jpg",
- "trainings": 0
- },
- {
- "id": 131,
- "name": "№131 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.580211",
- "latitude": "55.656859",
- "address": "улица перекопская, дом 7к3, рядом с храмом святых Благоверных Князей",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/02062011202.jpg",
- "trainings": 0
- },
- {
- "id": 137,
- "name": "№137 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.895771",
- "latitude": "43.232724",
- "address": "Аллея Гагарина (между Сатпаева и Жандосова)",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/15052011478.jpg",
- "trainings": 2
- },
- {
- "id": 141,
- "name": "№141 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.540628",
- "latitude": "55.667882",
- "address": "Воронцовский парк (м. Новые Черёмушки, Калужская)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSCN8633.JPG",
- "trainings": 6
- },
- {
- "id": 142,
- "name": "№142 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.531192",
- "latitude": "55.667102",
- "address": "Воронцовский парк (м. Новые Черёмушки, Калужская)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/DSCN8649.JPG",
- "trainings": 3
- },
- {
- "id": 143,
- "name": "№143 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.545038",
- "latitude": "55.67129",
- "address": "ул.Архитектора Власова 31А (м.Новые Черёмушки)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/DSCN8672.JPG",
- "trainings": 3
- },
- {
- "id": 147,
- "name": "№147 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.797294",
- "latitude": "55.631638",
- "address": "5-ый квартал Капотни, школа №1996 (м. Братиславская, Домодедовская)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/Изображение 025.jpg",
- "trainings": 2
- },
- {
- "id": 148,
- "name": "№148 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.566966",
- "latitude": "55.648",
- "address": "Битцевский лесопарк, северный вход (м. Калужская, Каховская, Севастопольская, Беляево)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSCN8719.JPG",
- "trainings": 1
- },
- {
- "id": 149,
- "name": "№149 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.61304199999995",
- "latitude": "55.838014",
- "address": "Главный Ботанический Сад РАН (м. Владыкино, Ботанический Сад, ВДНХ)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/476.jpg",
- "trainings": 17
- },
- {
- "id": 150,
- "name": "№150 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.927371",
- "latitude": "52.403588",
- "address": "Гомель,пр Октября",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/69 шк.jpg",
- "trainings": 1
- },
- {
- "id": 152,
- "name": "№152 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.562811",
- "latitude": "55.646936",
- "address": "м. Калужская, Каховская, Севастопольская, Беляево, Битцевский лесопарк, северный вход",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSCN8722.JPG",
- "trainings": 0
- },
- {
- "id": 156,
- "name": "№156 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "27.512682",
- "latitude": "52.7858",
- "address": "Беларусь г. Солигорск, ул. Богомолова",
- "city_id": 558,
- "country_id": 5,
- "comments_count": 10,
- "preview": "https://workout.su/uploads/userfiles/170620112917.jpg",
- "trainings": 0
- },
- {
- "id": 159,
- "name": "№159 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "36.248795",
- "latitude": "50.009662",
- "address": "м. Пушкинская, СК Политех",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_09aca1c332.jpg",
- "trainings": 2
- },
- {
- "id": 160,
- "name": "№160 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "37.768495",
- "latitude": "55.688074",
- "address": "м. волжская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/z_9fd40f08.jpg",
- "trainings": 2
- },
- {
- "id": 190,
- "name": "№190 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "76.894602",
- "latitude": "43.235396",
- "address": "ул. Сатпаева, уг. Гагарина",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1406201154088.jpg",
- "trainings": 0
- },
- {
- "id": 191,
- "name": "№191 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "76.89263299999993",
- "latitude": "43.246986",
- "address": "ул. Гагарина, уг. Калинина",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/брусья 1.jpg",
- "trainings": 2
- },
- {
- "id": 192,
- "name": "№192 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.814711",
- "latitude": "55.793914",
- "address": "м. Первомайская, Первомайская улица, 111",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/5884962478_feb66166e9.jpg",
- "trainings": 3
- },
- {
- "id": 198,
- "name": "№198 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "24.014867",
- "latitude": "56.965153",
- "address": "Dammes 20, Ostvalda Vidusskola",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/dam 1.jpg",
- "trainings": 0
- },
- {
- "id": 199,
- "name": "№199 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "24.022115",
- "latitude": "56.956429",
- "address": "Anninmuizas Bulvaris",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/park.jpg",
- "trainings": 0
- },
- {
- "id": 201,
- "name": "№201 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.523594",
- "latitude": "50.404095",
- "address": "пр.Науки д8.к1",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/w_fefd3012.jpg-492x366.jpg",
- "trainings": 0
- },
- {
- "id": 204,
- "name": "№204 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "24.020005",
- "latitude": "56.946287",
- "address": "P. Lejina 12",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/22748517.jpg",
- "trainings": 2
- },
- {
- "id": 214,
- "name": "№214 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "45.004321000000004",
- "latitude": "53.174871",
- "address": "Пенза, ул. Красная-5а",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/af1b30f88ae231ab67a09f6b5ef620eb.jpg",
- "trainings": 1
- },
- {
- "id": 215,
- "name": "№215 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.9943528",
- "latitude": "53.188269",
- "address": "Пенза, ул. Саратовская",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_e6e5a2f7.jpg",
- "trainings": 0
- },
- {
- "id": 216,
- "name": "№216 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.978811",
- "latitude": "53.228837",
- "address": "Пенза, ул. Титова, 3а",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7e65b4c3b50a.jpg",
- "trainings": 2
- },
- {
- "id": 217,
- "name": "№217 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.993354",
- "latitude": "53.220087",
- "address": "Пенза, ул. Крупской",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/y_aff29c33.jpg",
- "trainings": 2
- },
- {
- "id": 225,
- "name": "№225 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.954608678948716",
- "latitude": "56.97926155067836",
- "address": "улица Некрасова",
- "city_id": 44,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_a666901e39.jpg",
- "trainings": 0
- },
- {
- "id": 237,
- "name": "№237 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "31.282826",
- "latitude": "51.48867",
- "address": "пр-т Победы 54",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/y_78beea72.jpg",
- "trainings": 2
- },
- {
- "id": 240,
- "name": "№240 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.645145",
- "latitude": "55.780609",
- "address": "м. Комсомольская, улица Пантелеевская, дом 2, корпус 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/6002108808_f7e93f273a.jpg",
- "trainings": 3
- },
- {
- "id": 244,
- "name": "№244 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "31.0297511",
- "latitude": "52.3903157",
- "address": "Ильича 53",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2011-08-03 13.24.14.jpg",
- "trainings": 0
- },
- {
- "id": 248,
- "name": "№248 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.948625",
- "latitude": "57.022011",
- "address": "г. Иваново, ул. Смольная",
- "city_id": 44,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/y_3a1a78df.jpg",
- "trainings": 3
- },
- {
- "id": 254,
- "name": "№254 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "23.998898",
- "latitude": "56.958209",
- "address": "kurzemes 154",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Фото0721.jpg",
- "trainings": 0
- },
- {
- "id": 258,
- "name": "№258 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "31.025398600000017",
- "latitude": "52.3817549",
- "address": "Ул.Пионерская 5",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2011-08-05 15.05.5949.jpg",
- "trainings": 0
- },
- {
- "id": 276,
- "name": "№276 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "60.627457",
- "latitude": "56.78986",
- "address": "Родонитовая, 30",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/бтнк.jpg",
- "trainings": 1
- },
- {
- "id": 293,
- "name": "№293 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.274707",
- "latitude": "55.421021",
- "address": "ул. Советская д.88 (возле ",
- "city_id": 12,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/P1010529.JPG",
- "trainings": 0
- },
- {
- "id": 294,
- "name": "№294 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.26626",
- "latitude": "55.421165",
- "address": "ул. Московская д.120 (сзади школы)",
- "city_id": 12,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/P1010535.JPG",
- "trainings": 0
- },
- {
- "id": 299,
- "name": "№299 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "45.020103",
- "latitude": "53.131723",
- "address": "ул. Экспериментальная, 7",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_34ff3adc.jpg",
- "trainings": 1
- },
- {
- "id": 300,
- "name": "№300 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "35.889485",
- "latitude": "56.862575",
- "address": "г.Тверь сразу напротив Суворовского училища",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z_965f1dfc.jpg",
- "trainings": 3
- },
- {
- "id": 301,
- "name": "№301 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "36.357221",
- "latitude": "50.023595",
- "address": "Ком. Уборевича 34-Г",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/300820111161.jpg",
- "trainings": 0
- },
- {
- "id": 302,
- "name": "№302 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "24.16374",
- "latitude": "57.00691",
- "address": "Meža prospekts 1",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/x_b91f4427.jpg",
- "trainings": 0
- },
- {
- "id": 304,
- "name": "№304 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.488059",
- "latitude": "55.680034",
- "address": "Улица Коштоянца, 6к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/Image0126.jpg",
- "trainings": 2
- },
- {
- "id": 305,
- "name": "№305 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "24.001726",
- "latitude": "56.964537",
- "address": "Kurzemes prospekts",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/328695731.jpg",
- "trainings": 0
- },
- {
- "id": 312,
- "name": "№312 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "24.027498",
- "latitude": "56.987304",
- "address": "Kleistu iela, напротив конюшен",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/157.jpg",
- "trainings": 0
- },
- {
- "id": 314,
- "name": "№314 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.400074",
- "latitude": "55.711193",
- "address": "Беловежская ул. д. 7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/28082011137177.jpg",
- "trainings": 3
- },
- {
- "id": 330,
- "name": "№330 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.535216",
- "latitude": "55.832511",
- "address": "м. Водный Стадион, Петровско-Разумовская, Большая Академическая 38",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 13,
- "preview": "https://workout.su/uploads/userfiles/т-1.jpg",
- "trainings": 7
- },
- {
- "id": 350,
- "name": "№350 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.61375099999998",
- "latitude": "55.624115",
- "address": "м. Южная, Варшавское шоссе 126А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z_bbfb93d643.jpg",
- "trainings": 2
- },
- {
- "id": 355,
- "name": "№355 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.307082",
- "latitude": "59.955838",
- "address": "площадка у м.Горьковская, ул.Маркина 6",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/x_b9019a4f.jpg",
- "trainings": 3
- },
- {
- "id": 358,
- "name": "№358 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "36.26406",
- "latitude": "49.989593",
- "address": "м. Площа Повстания",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/x_5043fd8f.jpg",
- "trainings": 2
- },
- {
- "id": 362,
- "name": "№362 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.909438",
- "latitude": "55.577899",
- "address": "Лыткарино г., Первомайская улица, 1",
- "city_id": 77,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0110.jpg",
- "trainings": 0
- },
- {
- "id": 367,
- "name": "№367 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.614171",
- "latitude": "55.650943",
- "address": "м. Варшавская, Артековская ул., 3, г. Москва, Россия, 117556",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/13102011450.jpg",
- "trainings": 0
- },
- {
- "id": 374,
- "name": "№374 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "42.141023",
- "latitude": "47.518933",
- "address": "Бульвар Великой Победы, 6",
- "city_id": 592,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P1010740.JPG",
- "trainings": 0
- },
- {
- "id": 387,
- "name": "№387 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.590562",
- "latitude": "55.659783",
- "address": "м. Нахимовский Проспект, Болотниковская улица, дом 36",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/z_06e3227d.jpg",
- "trainings": 1
- },
- {
- "id": 398,
- "name": "№398 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.612196",
- "latitude": "55.653735",
- "address": "Чонгарский бул., д. 12, г. Москва, Россия, 117556",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/09112011008.jpg",
- "trainings": 1
- },
- {
- "id": 403,
- "name": "№403 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.485793",
- "latitude": "59.844885",
- "address": "Санкт-Петербург,Рыбацкий проспект в парке через дорогу от дома 289 к.1.",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMGP0517.JPG",
- "trainings": 2
- },
- {
- "id": 404,
- "name": "№404 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.309553",
- "latitude": "59.965519",
- "address": "Метро Петроградская,Санкт-Петербург",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/IMGP0542.jpg",
- "trainings": 2
- },
- {
- "id": 406,
- "name": "№406 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.979091",
- "latitude": "53.18369",
- "address": "Пенза, Олимпийская аллея",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_f31e636d.jpg",
- "trainings": 1
- },
- {
- "id": 409,
- "name": "№409 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.399581",
- "latitude": "55.711562",
- "address": "Москва, ул. Воронцовские пруды, д. 9 и д. 6а (м. Новые Черёмушки, Калужская)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC00061.JPG",
- "trainings": 1
- },
- {
- "id": 411,
- "name": "№411 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "45.057651899999996",
- "latitude": "53.3796376",
- "address": "Пенза, Западная поляна",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_dabac410.jpg",
- "trainings": 1
- },
- {
- "id": 412,
- "name": "№412 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.958394",
- "latitude": "53.221443",
- "address": "Пенза, ул. Рахманинова",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_ff1d263f52.jpg",
- "trainings": 1
- },
- {
- "id": 413,
- "name": "№413 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "45.05721473615267",
- "latitude": "53.37957052982547",
- "address": "Пенза, Западная поляна",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z_6dd71a72.jpg",
- "trainings": 0
- },
- {
- "id": 415,
- "name": "№415 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.392397",
- "latitude": "52.36354",
- "address": "Город Речица, комунистической роты 22",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/137.jpg",
- "trainings": 0
- },
- {
- "id": 420,
- "name": "№420 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.92501",
- "latitude": "53.2213",
- "address": "Проспект Строителей, 44а",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/x_3bfa99a1.jpg",
- "trainings": 0
- },
- {
- "id": 426,
- "name": "№426 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "44.986222399999974",
- "latitude": "53.178651",
- "address": "Пенза, Военный городок №1",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7381badb.jpg",
- "trainings": 2
- },
- {
- "id": 431,
- "name": "№431 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.988006",
- "latitude": "53.149909",
- "address": "Пенза, ул. Черниговская",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/x_45d3f8ba95.jpg",
- "trainings": 1
- },
- {
- "id": 445,
- "name": "№445 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.260306",
- "latitude": "59.835509",
- "address": "Проспект Народного Ополчения, дом 135",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/DSC04839.JPG",
- "trainings": 2
- },
- {
- "id": 468,
- "name": "№468 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.239813",
- "latitude": "59.936764",
- "address": "Гаванская д.43",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/kor.jpg",
- "trainings": 1
- },
- {
- "id": 469,
- "name": "№469 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.242289",
- "latitude": "59.934277",
- "address": "Шкиперский Сад",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/sp.jpg",
- "trainings": 0
- },
- {
- "id": 476,
- "name": "№476 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-0.326299",
- "latitude": "39.483365",
- "address": "Carrer de Mendizabal",
- "city_id": 652,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/logotype_0025_05_pause.jpg",
- "trainings": 0
- },
- {
- "id": 477,
- "name": "№477 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "-80.129599",
- "latitude": "25.779834",
- "address": "miami beach",
- "city_id": 653,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/283.jpg",
- "trainings": 1
- },
- {
- "id": 479,
- "name": "№479 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-73.820586",
- "latitude": "40.747352",
- "address": "kissena blvd",
- "city_id": 655,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/369.jpg",
- "trainings": 0
- },
- {
- "id": 480,
- "name": "№480 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "-73.932416",
- "latitude": "40.862118",
- "address": "riverside dr",
- "city_id": 655,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ник-3.jpg",
- "trainings": 0
- },
- {
- "id": 481,
- "name": "№481 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-1.40511",
- "latitude": "43.794591",
- "address": "rue des bruyeres",
- "city_id": 656,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ник-1-22.jpg",
- "trainings": 0
- },
- {
- "id": 482,
- "name": "№482 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.385582",
- "latitude": "47.437536",
- "address": "switzerland, st. gallen, lessingstrasse",
- "city_id": 657,
- "country_id": 27,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ник-120.jpg",
- "trainings": 0
- },
- {
- "id": 483,
- "name": "№483 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.329463",
- "latitude": "47.403938",
- "address": "lehnhaldenstrasse",
- "city_id": 657,
- "country_id": 27,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/швейцария-1.jpg",
- "trainings": 0
- },
- {
- "id": 485,
- "name": "№485 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "2.365959",
- "latitude": "48.878507",
- "address": "paris, quai de jemmapes",
- "city_id": 659,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ник-128.jpg",
- "trainings": 0
- },
- {
- "id": 491,
- "name": "№491 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "45.01386",
- "latitude": "53.175811",
- "address": "Пенза, ул. Калинина",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z_e50cacd0.jpg",
- "trainings": 1
- },
- {
- "id": 504,
- "name": "№504 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "36.4108",
- "latitude": "49.916244",
- "address": "Харьков ул. С. Грицевца",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/w_4a94ddb9.jpg",
- "trainings": 1
- },
- {
- "id": 519,
- "name": "№519 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "45.006767",
- "latitude": "53.180505",
- "address": "Пенза, ул. Чкалова-49",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_c674cee4.jpg",
- "trainings": 0
- },
- {
- "id": 523,
- "name": "№523 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.987428",
- "latitude": "53.205114",
- "address": "Пенза, ул. Суворова-170а",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z_e724b117.jpg",
- "trainings": 1
- },
- {
- "id": 524,
- "name": "№524 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "45.011965",
- "latitude": "53.186844",
- "address": "Пенза, ул. Володарского-1",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z_15ff50cd.jpg",
- "trainings": 1
- },
- {
- "id": 538,
- "name": "№538 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.640436",
- "latitude": "55.783844",
- "address": "м. Проспект Мира, Орлово-Давыдовский пер. д.5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/030320121604.jpg",
- "trainings": 1
- },
- {
- "id": 542,
- "name": "№542 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.705132",
- "latitude": "55.881785",
- "address": "м. Медведково, Бабушкинская, Улица Челюскинская дом 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/уцацуа31.jpg",
- "trainings": 2
- },
- {
- "id": 544,
- "name": "№544 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.022134",
- "latitude": "56.962652",
- "address": "Иваново куконковых 142",
- "city_id": 44,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/turnik.jpg",
- "trainings": 0
- },
- {
- "id": 553,
- "name": "№553 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "56.264658",
- "latitude": "57.987266",
- "address": "ул. Чкалова 10, за этим домом, на автостоянке, рядом ",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG260.jpg",
- "trainings": 1
- },
- {
- "id": 572,
- "name": "№572 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "50.14422200000001",
- "latitude": "53.19756",
- "address": "Самара, улица Дачная, 29",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/y_a1efdf03.jpg",
- "trainings": 2
- },
- {
- "id": 612,
- "name": "№612 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.060473423278836",
- "latitude": "55.374416192492276",
- "address": "1 мкр., дом 61, территория школы №12",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/y_4fae2064.jpg",
- "trainings": 4
- },
- {
- "id": 664,
- "name": "№664 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.907604",
- "latitude": "55.051813",
- "address": "Кропоткина 92/2",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/y_4f302aa699.jpg",
- "trainings": 0
- },
- {
- "id": 665,
- "name": "№665 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.921205",
- "latitude": "55.05469",
- "address": "Кропоткина 110",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/z_d2a8c924.jpg",
- "trainings": 0
- },
- {
- "id": 715,
- "name": "№715 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.746329",
- "latitude": "55.614568",
- "address": "м.Красногвардейская. Ореховый бульвар д.49.к.1.(Поликлиника №121).",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 8,
- "preview": "https://workout.su/uploads/userfiles/getImage.jpg",
- "trainings": 0
- },
- {
- "id": 717,
- "name": "№717 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.456042",
- "latitude": "55.839542",
- "address": "улица лодочная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20120406_162847.jpg",
- "trainings": 1
- },
- {
- "id": 730,
- "name": "№730 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.196826",
- "latitude": "57.981697",
- "address": "ул. Мира 26",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/184.jpg",
- "trainings": 0
- },
- {
- "id": 738,
- "name": "№738 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "28.163842299999942",
- "latitude": "59.40011209999999",
- "address": "Эстония, Нарва, Jalgrata tee (Ореховая горка)",
- "city_id": 578,
- "country_id": 29,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSCN1744.JPG",
- "trainings": 0
- },
- {
- "id": 753,
- "name": "№753 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "45.976921",
- "latitude": "51.586795",
- "address": "ул.куприянова 16",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_3f362393.jpg",
- "trainings": 1
- },
- {
- "id": 756,
- "name": "№756 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.526481",
- "latitude": "55.817875",
- "address": "м. войковская, улица Космонавта Волкова 31к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1357.JPG",
- "trainings": 0
- },
- {
- "id": 780,
- "name": "№780 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "50.134063",
- "latitude": "53.21535",
- "address": "улица лесная 33",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/cVTme_mLga8.jpg",
- "trainings": 1
- },
- {
- "id": 792,
- "name": "№792 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.91484418252367",
- "latitude": "55.03266196291298",
- "address": "Советская 51",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/cyi-nN6qOdQ46.jpg",
- "trainings": 2
- },
- {
- "id": 793,
- "name": "№793 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "38.221269",
- "latitude": "55.568573",
- "address": "стадион сатурн",
- "city_id": 110,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/azBE70J6S-Y.jpg",
- "trainings": 0
- },
- {
- "id": 797,
- "name": "№797 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.582635283470154",
- "latitude": "55.71291535433571",
- "address": "м. Ленинский проспект, Нескучный сад",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 61,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-17-11-06-23-3qw.jpg",
- "trainings": 113
- },
- {
- "id": 799,
- "name": "№799 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.493283",
- "latitude": "55.813315",
- "address": "м. Войковская, светлый проезд 4а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/PYWNyULxIg0.jpg",
- "trainings": 0
- },
- {
- "id": 800,
- "name": "№800 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.410779",
- "latitude": "55.839871",
- "address": "улица Василия Петушкова 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/tffMB8t5s_4.jpg",
- "trainings": 0
- },
- {
- "id": 803,
- "name": "№803 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.620212",
- "latitude": "55.661653",
- "address": "Россия, Москва, Варшавское шоссе, 69к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/111 (4).jpg",
- "trainings": 0
- },
- {
- "id": 805,
- "name": "№805 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.517495",
- "latitude": "55.536064",
- "address": "м. Бунинская Аллея, ул. Южнобутовская, д. 76, к.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/площадка.JPG",
- "trainings": 7
- },
- {
- "id": 807,
- "name": "№807 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.72025",
- "latitude": "55.729079",
- "address": "Нижегородская улица, 94",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/VGYQpKVoMdo.jpg",
- "trainings": 2
- },
- {
- "id": 818,
- "name": "№818 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "56.251247",
- "latitude": "58.004119",
- "address": "ул. Революции 27, за парком им. Горького",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG235.jpg",
- "trainings": 0
- },
- {
- "id": 824,
- "name": "№824 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.759396",
- "latitude": "54.625096",
- "address": "г. Рязань, ул. Есенина, д.46",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/w_26263705.jpg",
- "trainings": 2
- },
- {
- "id": 845,
- "name": "№845 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "33.459009",
- "latitude": "48.007795",
- "address": "Петроградская 10а",
- "city_id": 512,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8htdmTirOjM.jpg",
- "trainings": 1
- },
- {
- "id": 849,
- "name": "№849 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.238948",
- "latitude": "54.568753",
- "address": "Рязань Новики",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20120513_170604.jpg",
- "trainings": 0
- },
- {
- "id": 850,
- "name": "№850 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.651442",
- "latitude": "54.670115",
- "address": "Рязань бирюзова 10",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/kaxw06MfOf4.jpg",
- "trainings": 0
- },
- {
- "id": 851,
- "name": "№851 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.657974",
- "latitude": "54.669119",
- "address": "Рязань Ул.интернациональная дом 13 корп1",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/kWW2b78mvnI.jpg",
- "trainings": 0
- },
- {
- "id": 856,
- "name": "№856 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "38.06171",
- "latitude": "54.885623",
- "address": "ул. Бахарева, 14",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2012-05-13_13-35-38_HDR80.jpg",
- "trainings": 5
- },
- {
- "id": 857,
- "name": "№857 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "25.947869",
- "latitude": "48.25205",
- "address": "ул. Южно-Окружная 17",
- "city_id": 553,
- "country_id": 22,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/113.jpg",
- "trainings": 3
- },
- {
- "id": 861,
- "name": "№861 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "63.615799",
- "latitude": "53.175728",
- "address": "Парк ",
- "city_id": 416,
- "country_id": 11,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/Изображение 216.jpg",
- "trainings": 0
- },
- {
- "id": 862,
- "name": "№862 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "76.802102",
- "latitude": "43.246938",
- "address": "казахская школа",
- "city_id": 416,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Фото0284.jpg",
- "trainings": 0
- },
- {
- "id": 863,
- "name": "№863 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "43.853995",
- "latitude": "56.264358",
- "address": "Автозаводский район лицей 169",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/w_24ef6f49.jpg",
- "trainings": 0
- },
- {
- "id": 870,
- "name": "№870 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "43.861111",
- "latitude": "56.3375",
- "address": "сормовский парк",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/BdMS54vb35A.jpg",
- "trainings": 3
- },
- {
- "id": 874,
- "name": "№874 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "28.740932",
- "latitude": "47.843977",
- "address": "Шолданешть",
- "city_id": 445,
- "country_id": 15,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/16052012633.jpg",
- "trainings": 1
- },
- {
- "id": 877,
- "name": "№877 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.781547",
- "latitude": "54.649884",
- "address": "Лесопарк, озеро Орешек",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/282.jpg",
- "trainings": 2
- },
- {
- "id": 879,
- "name": "№879 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "27.59767770767212",
- "latitude": "53.934612979630074",
- "address": "ул Восточная 40",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/Фото0562.jpg",
- "trainings": 4
- },
- {
- "id": 881,
- "name": "№881 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "48.40142",
- "latitude": "54.32086",
- "address": "Гончарова-55",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/353.jpg",
- "trainings": 0
- },
- {
- "id": 882,
- "name": "№882 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.206528",
- "latitude": "58.00323",
- "address": "ул. Плеханова 41",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ZmsjgS2fWMM.jpg",
- "trainings": 0
- },
- {
- "id": 885,
- "name": "№885 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "76.633333",
- "latitude": "66.083333",
- "address": "4мкр, школа 1",
- "city_id": 570,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_632440.jpg",
- "trainings": 0
- },
- {
- "id": 889,
- "name": "№889 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "83.75",
- "latitude": "53.366667",
- "address": "8-Марта",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/150.jpg",
- "trainings": 1
- },
- {
- "id": 892,
- "name": "№892 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "34.546384",
- "latitude": "49.590513",
- "address": "ул. Ляхова, 1, Полтава, Полтавская область",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/_1EMZa-ypvA.jpg",
- "trainings": 0
- },
- {
- "id": 893,
- "name": "№893 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "34.537345",
- "latitude": "49.601747",
- "address": "Шведская ул., 3, Полтава, Полтавская область",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/w_3198cfb9.jpg",
- "trainings": 0
- },
- {
- "id": 894,
- "name": "№894 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "34.514947",
- "latitude": "49.565927",
- "address": "36021 м. Полтава, вул. Калініна, буд. № 8,",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/w_4c674d70.jpg",
- "trainings": 0
- },
- {
- "id": 896,
- "name": "№896 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.54297",
- "latitude": "49.595785",
- "address": "Полтава, задний двор коопера",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/z_fd9f5335.jpg",
- "trainings": 0
- },
- {
- "id": 898,
- "name": "№898 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "34.539893",
- "latitude": "49.578178",
- "address": "Вечный огонь",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/w_0e59229f.jpg",
- "trainings": 0
- },
- {
- "id": 899,
- "name": "№899 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "34.511163",
- "latitude": "49.563337",
- "address": "29 школа",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/w_3f902fbc.jpg",
- "trainings": 0
- },
- {
- "id": 901,
- "name": "№901 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "34.495552",
- "latitude": "49.565663",
- "address": "28школа",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/w_2be24e86.jpg",
- "trainings": 1
- },
- {
- "id": 903,
- "name": "№903 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "34.536914",
- "latitude": "49.594164",
- "address": "38 школа",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/w_9f5037ca.jpg",
- "trainings": 0
- },
- {
- "id": 904,
- "name": "№904 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.763766",
- "latitude": "54.617447",
- "address": "Рязань Новая 53б",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/190520122551.jpg",
- "trainings": 1
- },
- {
- "id": 912,
- "name": "№912 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "50.238356",
- "latitude": "53.138297",
- "address": "г. Самара ул. Охтинская 16",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/rrrr.jpg",
- "trainings": 0
- },
- {
- "id": 913,
- "name": "№913 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.299015",
- "latitude": "55.832312",
- "address": "Ленина ул., 32,",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9yp-VEM2kic.jpg",
- "trainings": 0
- },
- {
- "id": 917,
- "name": "№917 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "43.914062",
- "latitude": "56.330237",
- "address": "нижний новгород школа 149",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/DSC00822.jpg",
- "trainings": 1
- },
- {
- "id": 919,
- "name": "№919 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "56.22314",
- "latitude": "58.00757",
- "address": "ул. Борчанинова 6, за этим домом",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/zJ7_T-0fAho.jpg",
- "trainings": 1
- },
- {
- "id": 921,
- "name": "№921 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.591593",
- "latitude": "53.920362",
- "address": "пр Независимости 61- ул Дорошевича 5",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/Фото1151.jpg",
- "trainings": 5
- },
- {
- "id": 928,
- "name": "№928 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "56.261338",
- "latitude": "57.987976",
- "address": "Льва Шатрова 5, лицей №10",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/DSC_5783.JPG",
- "trainings": 1
- },
- {
- "id": 935,
- "name": "№935 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.23838",
- "latitude": "58.007898",
- "address": "Комсомольский проспект 29, за политехом",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG278.jpg",
- "trainings": 1
- },
- {
- "id": 942,
- "name": "№942 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "34.056973",
- "latitude": "45.014931",
- "address": "аграрный университет ул. спортивная",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/x_27a2077d.jpg",
- "trainings": 0
- },
- {
- "id": 949,
- "name": "№949 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "56.282691",
- "latitude": "58.099286",
- "address": "ул. Усадебная 55, м-н Гайва",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG287.jpg",
- "trainings": 0
- },
- {
- "id": 950,
- "name": "№950 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "73.445782",
- "latitude": "54.971598",
- "address": "Космический проспект, 13",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Фото0172.jpg",
- "trainings": 0
- },
- {
- "id": 956,
- "name": "№956 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.384274",
- "latitude": "56.142517",
- "address": "ул. Студенческая 77сб.",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_0294.JPG",
- "trainings": 1
- },
- {
- "id": 964,
- "name": "№964 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.05601999999999",
- "latitude": "55.380422",
- "address": "6 мкр., дом 11А",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/Фото 0594.jpg",
- "trainings": 0
- },
- {
- "id": 965,
- "name": "№965 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "56.249748",
- "latitude": "57.988203",
- "address": "ул. Куйбышева 98а",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG307.jpg",
- "trainings": 0
- },
- {
- "id": 966,
- "name": "№966 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.624339",
- "latitude": "55.717784",
- "address": "люсиновская улица, 55",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/594.jpg",
- "trainings": 1
- },
- {
- "id": 967,
- "name": "№967 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.620784",
- "latitude": "55.701126",
- "address": "варшавское шоссе, 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/112.jpg",
- "trainings": 0
- },
- {
- "id": 979,
- "name": "№979 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "32.778464",
- "latitude": "48.110551",
- "address": "ул.Щорса 13",
- "city_id": 671,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Фото1867.jpg",
- "trainings": 1
- },
- {
- "id": 991,
- "name": "№991 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "32.76622",
- "latitude": "48.124054",
- "address": "ул.Советская",
- "city_id": 671,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Фото1875.jpg",
- "trainings": 0
- },
- {
- "id": 992,
- "name": "№992 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "32.770548",
- "latitude": "48.106992",
- "address": "ул.Октябрьская",
- "city_id": 671,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Фото1892.jpg",
- "trainings": 0
- },
- {
- "id": 1000,
- "name": "№1000 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.615854",
- "latitude": "55.712833",
- "address": "Татищева улица 17, Москва",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20120621_111032.jpg",
- "trainings": 0
- },
- {
- "id": 1005,
- "name": "№1005 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "44.976527",
- "latitude": "53.186057",
- "address": "ул. Попова",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/9SQZec5bPyw.jpg",
- "trainings": 1
- },
- {
- "id": 1007,
- "name": "№1007 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "36.731013",
- "latitude": "56.324513",
- "address": "Бородинский проспект, 23",
- "city_id": 58,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/33.jpg",
- "trainings": 0
- },
- {
- "id": 1010,
- "name": "№1010 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.028648",
- "latitude": "55.392113",
- "address": "Фубры, территория 13 школы",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20120624_164654.jpg",
- "trainings": 1
- },
- {
- "id": 1011,
- "name": "№1011 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.733532",
- "latitude": "55.651837",
- "address": "Москва, м.Марьино, Ул.Перерва д.28",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/IMAG0075.jpg",
- "trainings": 1
- },
- {
- "id": 1017,
- "name": "№1017 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.450888",
- "latitude": "57.198233",
- "address": "ростов великий",
- "city_id": 7441,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ViXQwM6Amh4.jpg",
- "trainings": 0
- },
- {
- "id": 1019,
- "name": "№1019 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.076531807363835",
- "latitude": "55.376413076672264",
- "address": "Ул. Хлебникова, дом 104/13",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/Фото 0633.jpg",
- "trainings": 0
- },
- {
- "id": 1020,
- "name": "№1020 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "32.763945",
- "latitude": "48.114628",
- "address": "ул.Шевченка",
- "city_id": 671,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Фото1911.jpg",
- "trainings": 0
- },
- {
- "id": 1030,
- "name": "№1030 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "56.26136999999994",
- "latitude": "57.999618",
- "address": "ул. Сибирская 80",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG339.jpg",
- "trainings": 1
- },
- {
- "id": 1031,
- "name": "№1031 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.307407",
- "latitude": "58.113373",
- "address": "ул. Репина 20, в парке рядом с ДК",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG19989.jpg",
- "trainings": 0
- },
- {
- "id": 1032,
- "name": "№1032 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.258556",
- "latitude": "57.99898399999999",
- "address": "ул. Сибирская 67",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG20131.jpg",
- "trainings": 0
- },
- {
- "id": 1038,
- "name": "№1038 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.04236029999993",
- "latitude": "56.9660468",
- "address": " ул Павла Большевикова",
- "city_id": 44,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/gZzciJ_9ei4.jpg",
- "trainings": 4
- },
- {
- "id": 1039,
- "name": "№1039 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "32.764772",
- "latitude": "48.111142",
- "address": "ул.Щорса",
- "city_id": 671,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Фото189674.jpg",
- "trainings": 0
- },
- {
- "id": 1047,
- "name": "№1047 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "49.194378",
- "latitude": "55.751805",
- "address": "м. Проспект Победы, парк Детский",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/bJlBvOlgJeg.jpg",
- "trainings": 4
- },
- {
- "id": 1057,
- "name": "№1057 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "37.54884588708592",
- "latitude": "55.75454222695846",
- "address": "м. Выставочная или м. Улица 1905 года, парк Красная Пресня",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 12,
- "preview": "https://workout.su/uploads/userfiles/222.jpg",
- "trainings": 33
- },
- {
- "id": 1072,
- "name": "№1072 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.967062",
- "latitude": "53.176147",
- "address": "Пенза, 2-й Окружной проезд",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9V8M03EmYrg.jpg",
- "trainings": 0
- },
- {
- "id": 1084,
- "name": "№1084 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.799629",
- "latitude": "54.612577",
- "address": "Новоселов 17,1",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/121.jpg",
- "trainings": 3
- },
- {
- "id": 1097,
- "name": "№1097 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.715517",
- "latitude": "54.611353",
- "address": "рязань гагарина 158",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/300720124212.jpg",
- "trainings": 2
- },
- {
- "id": 1099,
- "name": "№1099 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.49021289999996",
- "latitude": "52.05844219999999",
- "address": "Ул Июньская",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/dtaCQu3OC6M (1).jpg",
- "trainings": 0
- },
- {
- "id": 1100,
- "name": "№1100 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.5",
- "latitude": "52.033333",
- "address": "Г.Чита, Глубокая.",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z_76f3093d.jpg",
- "trainings": 0
- },
- {
- "id": 1103,
- "name": "№1103 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.50406709999993",
- "latitude": "52.048586",
- "address": " Ул.Новобульварная.",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/turnik ul0il3nyl219.jpg",
- "trainings": 0
- },
- {
- "id": 1105,
- "name": "№1105 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.47400730000004",
- "latitude": "52.04319719999999",
- "address": "Проспект Генерала Белика.",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/foto-turnika35.jpg",
- "trainings": 0
- },
- {
- "id": 1106,
- "name": "№1106 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.50214195277658",
- "latitude": "52.04880095564891",
- "address": " Ул.Новобульварная.",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/x_941e4d88.jpg",
- "trainings": 0
- },
- {
- "id": 1107,
- "name": "№1107 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "113.50823593165842",
- "latitude": "52.03482657575428",
- "address": "ул.Чкалова.",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/z_7daabed5.jpg",
- "trainings": 0
- },
- {
- "id": 1114,
- "name": "№1114 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.453737",
- "latitude": "55.813246",
- "address": "ул. Габричевского, д 3, к. ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/1a.jpg",
- "trainings": 2
- },
- {
- "id": 1117,
- "name": "№1117 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.54614",
- "latitude": "56.337789",
- "address": "улица Космонавтов, 19",
- "city_id": 34,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/д1.jpg",
- "trainings": 3
- },
- {
- "id": 1118,
- "name": "№1118 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "38.833534",
- "latitude": "58.050062",
- "address": "пр. Серова, д. 21",
- "city_id": 646,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/рыб5.jpg",
- "trainings": 3
- },
- {
- "id": 1120,
- "name": "№1120 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.622933",
- "latitude": "55.743012",
- "address": "Первый Кадашевский переулок,дом 3,школа №19",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 8,
- "preview": "https://workout.su/uploads/userfiles/центр2.jpeg",
- "trainings": 2
- },
- {
- "id": 1121,
- "name": "№1121 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "83.092522",
- "latitude": "54.836442",
- "address": "Жемчужная 16",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/18286.jpg",
- "trainings": 0
- },
- {
- "id": 1124,
- "name": "№1124 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "151.205415",
- "latitude": "-33.859936",
- "address": "Аппер-Форт-стрит, Миллерс Пойнт, Новый Южный Уэльс, Австралия",
- "city_id": 698,
- "country_id": 1,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/Screen Shot 2012-08-07 at 11.30.29 PM.png",
- "trainings": 2
- },
- {
- "id": 1126,
- "name": "№1126 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "56.226388",
- "latitude": "57.993455",
- "address": "ул. Овчинникова 11",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG388.jpg",
- "trainings": 0
- },
- {
- "id": 1129,
- "name": "№1129 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "50.227336",
- "latitude": "53.209986",
- "address": "ул. 22 Партсьезда",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC0781564.JPG",
- "trainings": 3
- },
- {
- "id": 1130,
- "name": "№1130 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.338486",
- "latitude": "55.698634",
- "address": "ЗЯБ ул.Комарова",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC00015.JPG",
- "trainings": 4
- },
- {
- "id": 1131,
- "name": "№1131 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.36912099999995",
- "latitude": "55.734611",
- "address": "38 комплекс, 53-я школа",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/138.jpg",
- "trainings": 3
- },
- {
- "id": 1139,
- "name": "№1139 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "61.364463",
- "latitude": "55.160073",
- "address": "Стадион им. Елесиной",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/y_7ef7fc02.jpg",
- "trainings": 3
- },
- {
- "id": 1144,
- "name": "№1144 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.805623",
- "latitude": "54.605531",
- "address": "Рязань, Зубковой 22а",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/180820124838.jpg",
- "trainings": 0
- },
- {
- "id": 1145,
- "name": "№1145 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.707956",
- "latitude": "54.603007",
- "address": "Рязань, Гоголя 45",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/119.jpg",
- "trainings": 0
- },
- {
- "id": 1147,
- "name": "№1147 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.79059",
- "latitude": "54.617108",
- "address": "Рязань, Советской Армии 3",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/155.jpg",
- "trainings": 1
- },
- {
- "id": 1148,
- "name": "№1148 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.607051",
- "latitude": "50.438862",
- "address": "Киев, ул. Энтузиастов, 17",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Снимок экрана 2012-08-25 в 1.39.11.png",
- "trainings": 1
- },
- {
- "id": 1158,
- "name": "№1158 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.740864",
- "latitude": "48.134713",
- "address": "Комуналь",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/turnik75.jpg",
- "trainings": 0
- },
- {
- "id": 1161,
- "name": "№1161 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.27639102857211",
- "latitude": "54.8944245929885",
- "address": "Городское озеро, вблизи ул.Шевченко",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/laCxoDlzicU.jpg",
- "trainings": 2
- },
- {
- "id": 1162,
- "name": "№1162 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.741733",
- "latitude": "48.129714",
- "address": "Авдеевка,на карла маркса 5",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0.jpg",
- "trainings": 1
- },
- {
- "id": 1164,
- "name": "№1164 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.745073",
- "latitude": "48.144692",
- "address": "Авдеевка.улица Ленина",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0129.jpg",
- "trainings": 0
- },
- {
- "id": 1165,
- "name": "№1165 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.537737",
- "latitude": "55.805527",
- "address": "рядом с метро Аэропорт(ул. Планетная)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Фото0503.jpg",
- "trainings": 2
- },
- {
- "id": 1168,
- "name": "№1168 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.30994629999998",
- "latitude": "54.9122573",
- "address": "Комсомольской парк",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/z5vUamis74g23.jpg",
- "trainings": 0
- },
- {
- "id": 1172,
- "name": "№1172 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.288286",
- "latitude": "54.895997",
- "address": "Двор школы №17",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/960c722104e8572969aa2ead7921f3e1.jpg",
- "trainings": 1
- },
- {
- "id": 1177,
- "name": "№1177 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.114604",
- "latitude": "55.064166",
- "address": "Город Миасс, Челябинская область",
- "city_id": 716,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P1130446.JPG",
- "trainings": 1
- },
- {
- "id": 1178,
- "name": "№1178 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.396152",
- "latitude": "55.745048",
- "address": "маршала тимошенко 26",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/8Y8Rv_j07pk.jpg",
- "trainings": 2
- },
- {
- "id": 1183,
- "name": "№1183 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "41.925313",
- "latitude": "45.05736",
- "address": "г. Ставрополь ул. Васильева,11",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1020.JPG",
- "trainings": 3
- },
- {
- "id": 1184,
- "name": "№1184 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "41.931186",
- "latitude": "45.06287",
- "address": "г.Ставрополь ул. Бруснева,10",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1028.JPG",
- "trainings": 3
- },
- {
- "id": 1192,
- "name": "№1192 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "39.788701",
- "latitude": "54.610132",
- "address": "Рязань, Советской Армии 24 к.1",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/067.JPG",
- "trainings": 7
- },
- {
- "id": 1198,
- "name": "№1198 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.92672100000004",
- "latitude": "45.063211",
- "address": "г. Ставрополь пр.Кулакова,29",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_1057.JPG",
- "trainings": 3
- },
- {
- "id": 1199,
- "name": "№1199 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.922663",
- "latitude": "45.032165",
- "address": "г. Ставрополь ул. Васякина, 127",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1066.JPG",
- "trainings": 3
- },
- {
- "id": 1202,
- "name": "№1202 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.274144",
- "latitude": "54.894554",
- "address": "Площадка на берегу озера",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMAG0229.jpg",
- "trainings": 0
- },
- {
- "id": 1204,
- "name": "№1204 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.478834",
- "latitude": "48.03205",
- "address": "Шахтерск, донецкая область",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ggg52.jpg",
- "trainings": 1
- },
- {
- "id": 1209,
- "name": "№1209 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.299659730051644",
- "latitude": "54.90044111943973",
- "address": "Альметьевск, Санаторий",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMAG0183.jpg",
- "trainings": 0
- },
- {
- "id": 1216,
- "name": "№1216 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "16.012681",
- "latitude": "45.818104",
- "address": "maksimirska",
- "city_id": 721,
- "country_id": 26,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/загреб1.jpg",
- "trainings": 0
- },
- {
- "id": 1217,
- "name": "№1217 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "15.964518",
- "latitude": "45.790112",
- "address": "Prisavlje ul.",
- "city_id": 721,
- "country_id": 26,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC01502.jpg",
- "trainings": 0
- },
- {
- "id": 1218,
- "name": "№1218 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "15.937687",
- "latitude": "45.778125",
- "address": "-",
- "city_id": 721,
- "country_id": 26,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0453.jpg",
- "trainings": 0
- },
- {
- "id": 1220,
- "name": "№1220 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "15.937687",
- "latitude": "45.778125",
- "address": "-",
- "city_id": 721,
- "country_id": 26,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/29.jpg",
- "trainings": 0
- },
- {
- "id": 1223,
- "name": "№1223 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "82.95703500000002",
- "latitude": "54.970147",
- "address": "Саввы Кожевникова 39",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-25-21-08-13-qnp.jpg",
- "trainings": 4
- },
- {
- "id": 1224,
- "name": "№1224 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.614657",
- "latitude": "55.862978",
- "address": "Москва, улица Пестеля, 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/jYmKJde9FaA.jpg",
- "trainings": 0
- },
- {
- "id": 1227,
- "name": "№1227 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.27598130000001",
- "latitude": "54.89582979999999",
- "address": "ул.Шевченко, 98",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMAG0227.jpg",
- "trainings": 0
- },
- {
- "id": 1228,
- "name": "№1228 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.060917",
- "latitude": "50.314772",
- "address": "двор домов ул.Шевченко 107,103,105",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 11,
- "preview": "https://workout.su/uploads/userfiles/IMAG0225.jpg",
- "trainings": 1
- },
- {
- "id": 1231,
- "name": "№1231 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.267952",
- "latitude": "54.902194",
- "address": "пр.Строителей 20,22",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_9239 копия.jpg",
- "trainings": 0
- },
- {
- "id": 1232,
- "name": "№1232 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.27119979999998",
- "latitude": "54.8954864",
- "address": "ул.Шевченко 106",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMAG0236.jpg",
- "trainings": 0
- },
- {
- "id": 1233,
- "name": "№1233 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.278099",
- "latitude": "54.917394",
- "address": "за майданом, возле ",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_9209 копия.jpg",
- "trainings": 0
- },
- {
- "id": 1240,
- "name": "№1240 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "32.066897",
- "latitude": "49.449192",
- "address": "Украина, Черкассы, Долина роз",
- "city_id": 551,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b_4f17e80d0107273.jpg",
- "trainings": 0
- },
- {
- "id": 1246,
- "name": "№1246 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "32.049882",
- "latitude": "49.406755",
- "address": "Украина, Черкассы, парк Химиков",
- "city_id": 551,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/bcz.jpg",
- "trainings": 0
- },
- {
- "id": 1247,
- "name": "№1247 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "32.056147",
- "latitude": "49.406704",
- "address": "Украина, Черкассы, ЧДБК",
- "city_id": 551,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/LQ2jQ83kyJM.jpg",
- "trainings": 0
- },
- {
- "id": 1249,
- "name": "№1249 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.662987",
- "latitude": "55.797132",
- "address": "1-й Лучевой просек",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 10,
- "preview": "https://workout.su/uploads/userfiles/image316963.jpeg",
- "trainings": 9
- },
- {
- "id": 1252,
- "name": "№1252 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.302413",
- "latitude": "55.177439",
- "address": "ул. 250-летия Челибинска, 15",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/280920121451.jpg",
- "trainings": 2
- },
- {
- "id": 1253,
- "name": "№1253 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.392486",
- "latitude": "55.741771",
- "address": "Маршала Тимошенко 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/Qo8XQIOxxwY.jpg",
- "trainings": 5
- },
- {
- "id": 1256,
- "name": "№1256 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.425528",
- "latitude": "55.733736",
- "address": "Молодогвардейская 15",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/16XLmJyXHME.jpg",
- "trainings": 2
- },
- {
- "id": 1258,
- "name": "№1258 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.763639",
- "latitude": "55.631167",
- "address": "м. Алма-Атинская, Ключевая ул. 24 к 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/брааа.jpg",
- "trainings": 3
- },
- {
- "id": 1260,
- "name": "№1260 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.581101",
- "latitude": "55.714682",
- "address": "На склоне у реки где начинается крутой спуск к Андреевскому пруду",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/12090092.jpg",
- "trainings": 1
- },
- {
- "id": 1261,
- "name": "№1261 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.304231",
- "latitude": "55.185255",
- "address": "ул. 40 лет Победы, 29В",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/280920121454.jpg",
- "trainings": 1
- },
- {
- "id": 1265,
- "name": "№1265 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.681849",
- "latitude": "55.762034",
- "address": "улица Радио 22",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/RW7oDUo3GGs.jpg",
- "trainings": 1
- },
- {
- "id": 1266,
- "name": "№1266 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.421991",
- "latitude": "55.880422",
- "address": "ул. Бабакина, 7",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/s2W7RsfOq48.jpg",
- "trainings": 0
- },
- {
- "id": 1267,
- "name": "№1267 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.425935",
- "latitude": "55.880935",
- "address": "ул. Бабакина, 5",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ZDst7UHMgYM.jpg",
- "trainings": 1
- },
- {
- "id": 1268,
- "name": "№1268 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.42512202243233",
- "latitude": "55.88066602277158",
- "address": "улица Бабакина, 5",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/NBKde_4t_3s.jpg",
- "trainings": 0
- },
- {
- "id": 1269,
- "name": "№1269 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.418758000000025",
- "latitude": "55.884375",
- "address": "Куркинское шоссе 18",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/Jd0W6CT_xDc.jpg",
- "trainings": 2
- },
- {
- "id": 1271,
- "name": "№1271 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "56.211792",
- "latitude": "57.997509",
- "address": "Голева 8",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_0384-1.jpg",
- "trainings": 1
- },
- {
- "id": 1274,
- "name": "№1274 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.079388",
- "latitude": "54.921722",
- "address": "Узорная 19",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_03-09-2012_193717.jpg",
- "trainings": 1
- },
- {
- "id": 1278,
- "name": "№1278 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.418723",
- "latitude": "55.881856",
- "address": "Молодёжная улица, 8",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/dwEWFbFBdsI.jpg",
- "trainings": 0
- },
- {
- "id": 1279,
- "name": "№1279 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.421838",
- "latitude": "55.883561",
- "address": "Куркинское шоссе 6",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/GZuGcRCp5Hg.jpg",
- "trainings": 1
- },
- {
- "id": 1281,
- "name": "№1281 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.532623",
- "latitude": "55.803108",
- "address": "рядом с ул. Черняховского,напротив магазина магнолия)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/Фото0593.jpg",
- "trainings": 2
- },
- {
- "id": 1283,
- "name": "№1283 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.485774",
- "latitude": "56.047499",
- "address": "Россия, Московская область, Лобня, мрн Луговая,",
- "city_id": 73,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_7558_cr35.jpg",
- "trainings": 0
- },
- {
- "id": 1299,
- "name": "№1299 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.408914",
- "latitude": "55.745752",
- "address": "Москва ул.Ельнинская 46",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/YiDfC8hHNNM.jpg",
- "trainings": 3
- },
- {
- "id": 1300,
- "name": "№1300 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.422922",
- "latitude": "55.736171",
- "address": "Москва Полоцкая улица, 29к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/M_ocNuui-UA.jpg",
- "trainings": 0
- },
- {
- "id": 1302,
- "name": "№1302 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.401165",
- "latitude": "55.845354",
- "address": "Светлогорский пр-д, 7, корп.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/0hungE-Zvt0.jpg",
- "trainings": 1
- },
- {
- "id": 1311,
- "name": "№1311 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.59087099999999",
- "latitude": "49.563279",
- "address": "Полтава, Левада, Приречный парк",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20120914_170856.jpg",
- "trainings": 2
- },
- {
- "id": 1317,
- "name": "№1317 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.577152",
- "latitude": "55.738844",
- "address": "Москва, ул бурденко 23",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/Фото0064.jpg",
- "trainings": 2
- },
- {
- "id": 1321,
- "name": "№1321 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.596598",
- "latitude": "55.615025",
- "address": "улица Красного маяка, 8к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/FAx6gDUUIPY.jpg",
- "trainings": 3
- },
- {
- "id": 1322,
- "name": "№1322 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.654708",
- "latitude": "55.835535",
- "address": "Москва. проспект Мира, 163",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2012-10-21 11.44.50.jpg",
- "trainings": 3
- },
- {
- "id": 1328,
- "name": "№1328 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "50.277324",
- "latitude": "53.231092",
- "address": "Самара Елизарова 34",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/un7qgJAFKb418.jpg",
- "trainings": 2
- },
- {
- "id": 1332,
- "name": "№1332 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.845145",
- "latitude": "55.94424",
- "address": "г.Королев ул. Героев Курсантов, двор рядом с домом 20, 18",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_4513[1].JPG",
- "trainings": 1
- },
- {
- "id": 1338,
- "name": "№1338 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.91873299999997",
- "latitude": "55.017406",
- "address": "Фабричная 6/8",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/нн5.jpg",
- "trainings": 0
- },
- {
- "id": 1345,
- "name": "№1345 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.89726599999994",
- "latitude": "55.041844",
- "address": "ул. 1905 года 21",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/100_1086.JPG",
- "trainings": 6
- },
- {
- "id": 1359,
- "name": "№1359 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.336024",
- "latitude": "60.03458",
- "address": "Санкт-Петербург ул.Сикейроса 17 к.1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2012-11-01-40987.jpg",
- "trainings": 4
- },
- {
- "id": 1364,
- "name": "№1364 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "43.069993899999986",
- "latitude": "44.0381502",
- "address": "Университетская, 6",
- "city_id": 735,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/z_777ca3e6.jpg",
- "trainings": 0
- },
- {
- "id": 1365,
- "name": "№1365 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.09415000000001",
- "latitude": "44.0357554",
- "address": "ул.Нижняя 76",
- "city_id": 735,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/getImage (1).jpg",
- "trainings": 2
- },
- {
- "id": 1371,
- "name": "№1371 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.869387",
- "latitude": "55.947956",
- "address": "мк-р Первомайский ул.Советская 2 школа",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_4515.JPG",
- "trainings": 1
- },
- {
- "id": 1378,
- "name": "№1378 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "20.514241",
- "latitude": "54.692506",
- "address": "г. Калининград, проспект Калинина",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/y_542d86bf.jpg",
- "trainings": 4
- },
- {
- "id": 1383,
- "name": "№1383 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.402372",
- "latitude": "55.739361",
- "address": "Москва ул.Партизанская 45",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0JqpYmOk-tA.jpg",
- "trainings": 1
- },
- {
- "id": 1388,
- "name": "№1388 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.95746",
- "latitude": "55.081098",
- "address": "Возле аттракционов в ПКиО \"Сосновый Бор\"",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_0106.jpg",
- "trainings": 1
- },
- {
- "id": 1389,
- "name": "№1389 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.360834599999976",
- "latitude": "52.3350313",
- "address": "г. Железногорск, ул.Курская, 21",
- "city_id": 678,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/738883D9.jpeg",
- "trainings": 3
- },
- {
- "id": 1398,
- "name": "№1398 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "56.205227",
- "latitude": "58.006146",
- "address": "Пермь, Плеханова 33",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_0552[1]72.jpg",
- "trainings": 0
- },
- {
- "id": 1399,
- "name": "№1399 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "56.210962",
- "latitude": "57.996804",
- "address": "Пермь, Голева 10а",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_0389[1].jpg",
- "trainings": 1
- },
- {
- "id": 1410,
- "name": "№1410 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.649905",
- "latitude": "58.588178",
- "address": "Между улицей Горького и Октябрьским проспектом.",
- "city_id": 55,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/awQD6tV8zlQ.jpg",
- "trainings": 4
- },
- {
- "id": 1412,
- "name": "№1412 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "56.169151",
- "latitude": "57.972581",
- "address": "леонова 22 пермь",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_0557[1].jpg",
- "trainings": 0
- },
- {
- "id": 1413,
- "name": "№1413 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "56.183945",
- "latitude": "57.965825",
- "address": "Чердынская 30",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_0566[1].jpg",
- "trainings": 1
- },
- {
- "id": 1416,
- "name": "№1416 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.348046",
- "latitude": "55.847565",
- "address": "3-й Митинский переулок д.5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/SRucrNMawoc26.jpg",
- "trainings": 4
- },
- {
- "id": 1420,
- "name": "№1420 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.860996",
- "latitude": "55.934207",
- "address": "г.Королев между ул.Дурылина и ул.Прудная д.39",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_4546.JPG",
- "trainings": 0
- },
- {
- "id": 1421,
- "name": "№1421 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.874881",
- "latitude": "55.919921",
- "address": "г.Королев между ул. Чайкиной и ул.Строителей",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_4553.JPG",
- "trainings": 1
- },
- {
- "id": 1424,
- "name": "№1424 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.844707",
- "latitude": "55.932217",
- "address": "г.Королев, на углу ул.Пушкинская и ул.Ленинская",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_4559.JPG",
- "trainings": 1
- },
- {
- "id": 1426,
- "name": "№1426 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.34971740000003",
- "latitude": "52.3511077",
- "address": "улица Воинов - Интернационалистов",
- "city_id": 678,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0549.JPG",
- "trainings": 2
- },
- {
- "id": 1437,
- "name": "№1437 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.833763",
- "latitude": "55.923666",
- "address": "г. Королев проезд Циолковского между домами 3а и 6а",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_4565.JPG",
- "trainings": 1
- },
- {
- "id": 1467,
- "name": "№1467 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.655339",
- "latitude": "55.677546",
- "address": "Нагатинская 24",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/18022013168.jpg",
- "trainings": 0
- },
- {
- "id": 1474,
- "name": "№1474 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "44.982724",
- "latitude": "53.16892",
- "address": "Пенза ул.Российская 53",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P1000221.JPG",
- "trainings": 0
- },
- {
- "id": 1487,
- "name": "№1487 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.36191844953282",
- "latitude": "55.839071405147685",
- "address": "м. Митино, улица Барышиха, 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/LZ7bVfNCtmU.jpg",
- "trainings": 4
- },
- {
- "id": 1492,
- "name": "№1492 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.522009",
- "latitude": "55.793713",
- "address": "ул. Авиаконструктора Микояна 14К4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/FzDwsJCXrFU.jpg",
- "trainings": 3
- },
- {
- "id": 1495,
- "name": "№1495 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "44.983735000000024",
- "latitude": "53.169523",
- "address": "г.Пенза ул.Российская 53",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/P100022120.JPG",
- "trainings": 2
- },
- {
- "id": 1499,
- "name": "№1499 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.6535",
- "latitude": "55.678748",
- "address": "Москва, Высокая 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2103201317964.jpg",
- "trainings": 1
- },
- {
- "id": 1500,
- "name": "№1500 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.658573",
- "latitude": "55.680279",
- "address": "Москва, Высокая 12",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2103201318276.jpg",
- "trainings": 1
- },
- {
- "id": 1502,
- "name": "№1502 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.555055",
- "latitude": "55.900339",
- "address": "м. Алтуфьево, ул. Зональная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/22032013184.jpg",
- "trainings": 1
- },
- {
- "id": 1503,
- "name": "№1503 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "76.86197",
- "latitude": "43.232838",
- "address": "Алматы, Ауэзовский р-н, 5-мкрн, СШ №6",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_4078.JPG",
- "trainings": 2
- },
- {
- "id": 1505,
- "name": "№1505 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.930578",
- "latitude": "45.025233",
- "address": "г. Ставрополь,парк Победы",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/5mpu9WBsDqI.jpg",
- "trainings": 4
- },
- {
- "id": 1507,
- "name": "№1507 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "45.039971",
- "latitude": "53.192229",
- "address": "г.Пенза ул Парковая 43 школа",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSCN3898.JPG",
- "trainings": 1
- },
- {
- "id": 1508,
- "name": "№1508 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "42.975997",
- "latitude": "44.099753",
- "address": "город Лермонтов, ул. Решетника, д.3",
- "city_id": 727,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/20082011195.jpg",
- "trainings": 0
- },
- {
- "id": 1517,
- "name": "№1517 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.36488940000004",
- "latitude": "52.3237151",
- "address": "Ленина 34/2",
- "city_id": 678,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSCN14801.JPG",
- "trainings": 2
- },
- {
- "id": 1518,
- "name": "№1518 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.35097680000001",
- "latitude": "52.3327592",
- "address": "Ул. Парковая, д.10",
- "city_id": 678,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6396bab31279.jpg",
- "trainings": 2
- },
- {
- "id": 1536,
- "name": "№1536 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "23.648928278330693",
- "latitude": "52.105039279417625",
- "address": "ул. Дачная 58/1",
- "city_id": 371,
- "country_id": 5,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/SS859028.jpg",
- "trainings": 2
- },
- {
- "id": 1537,
- "name": "№1537 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.652067999999986",
- "latitude": "55.873547",
- "address": "ул.Сухонская д.5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20130421_093758.jpg",
- "trainings": 8
- },
- {
- "id": 1538,
- "name": "№1538 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.65804297351076",
- "latitude": "55.87852635427726",
- "address": "Олонецкий пр-д д.20",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/на яузе 1 - 1.jpg",
- "trainings": 5
- },
- {
- "id": 1539,
- "name": "№1539 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.655554",
- "latitude": "55.878226",
- "address": "ул.Сухонская д.11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/на яузе 3 - 1.jpg",
- "trainings": 5
- },
- {
- "id": 1544,
- "name": "№1544 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.655222",
- "latitude": "56.813909",
- "address": "Базовый",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/00193.jpg",
- "trainings": 4
- },
- {
- "id": 1546,
- "name": "№1546 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.603421",
- "latitude": "56.784675",
- "address": "Агрономическая",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/001.JPG",
- "trainings": 1
- },
- {
- "id": 1548,
- "name": "№1548 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "37.456255",
- "latitude": "55.893054",
- "address": "улица Железнодорожная, Химки",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/cvnj_kC0BhY.jpg",
- "trainings": 2
- },
- {
- "id": 1556,
- "name": "№1556 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.621841",
- "latitude": "56.811418",
- "address": "Белинского, 154",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/1001.jpg",
- "trainings": 0
- },
- {
- "id": 1557,
- "name": "№1557 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "60.619164",
- "latitude": "56.811369",
- "address": "Щорса 56Б",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2001.jpg",
- "trainings": 0
- },
- {
- "id": 1558,
- "name": "№1558 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "44.641076",
- "latitude": "48.82081",
- "address": "Спартановка, ул. Грамши",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/pl.jpg",
- "trainings": 2
- },
- {
- "id": 1567,
- "name": "№1567 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "38.558454",
- "latitude": "54.85146",
- "address": "ул. Ленина",
- "city_id": 760,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/25072013890.jpg",
- "trainings": 5
- },
- {
- "id": 1569,
- "name": "№1569 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.523233",
- "latitude": "55.879825",
- "address": "Ангарская д20 к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2013-04-29 18.56.56.jpg",
- "trainings": 1
- },
- {
- "id": 1570,
- "name": "№1570 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.582806",
- "latitude": "55.705911",
- "address": "60 летия октября",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/04052013206.jpg",
- "trainings": 0
- },
- {
- "id": 1575,
- "name": "№1575 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.635391",
- "latitude": "55.867069",
- "address": "Заповедная улица 12",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/WP_20130507_001.jpg",
- "trainings": 1
- },
- {
- "id": 1592,
- "name": "№1592 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.92689100000007",
- "latitude": "55.066292",
- "address": "Дуси Ковальчук, 191 (Залесского, 3)",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/SNC01146.jpg",
- "trainings": 0
- },
- {
- "id": 1593,
- "name": "№1593 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "48.009755",
- "latitude": "46.339783",
- "address": "ул. Набережная Приволжского затона 16к3",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0719.JPG",
- "trainings": 1
- },
- {
- "id": 1595,
- "name": "№1595 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.91628",
- "latitude": "52.918648",
- "address": "город Чечерск улица 50 лет БССР дом 44",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1227.JPG",
- "trainings": 1
- },
- {
- "id": 1604,
- "name": "№1604 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "49.620912",
- "latitude": "58.596006",
- "address": "Перекресток ул.Воровского и ул.Солнечная",
- "city_id": 55,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/k87BdtFnyZ8.jpg",
- "trainings": 3
- },
- {
- "id": 1607,
- "name": "№1607 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.66629999999998",
- "latitude": "55.736897",
- "address": "марксистская улица, 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/0vuLAILKBds.jpg",
- "trainings": 13
- },
- {
- "id": 1613,
- "name": "№1613 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.717714",
- "latitude": "54.61908",
- "address": "Рязань, ул. Ленинского Комсомола",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/FTvWbGED784.jpg",
- "trainings": 0
- },
- {
- "id": 1616,
- "name": "№1616 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.596061",
- "latitude": "55.726379",
- "address": "м. Октябрьская, Москва, ЦПКиО",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/17062013218.jpg",
- "trainings": 4
- },
- {
- "id": 1620,
- "name": "№1620 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.584502",
- "latitude": "55.60149",
- "address": "Чертановская, 60а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20130510_001.jpg",
- "trainings": 6
- },
- {
- "id": 1623,
- "name": "№1623 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "49.61308",
- "latitude": "58.636098",
- "address": "ул.Луганская 1",
- "city_id": 55,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/AxzzUXjYLoc.jpg",
- "trainings": 2
- },
- {
- "id": 1625,
- "name": "№1625 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.016899999999964",
- "latitude": "55.74654",
- "address": "Россия, Железнодорожный",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20130621_201904 (copy).jpg",
- "trainings": 3
- },
- {
- "id": 1626,
- "name": "№1626 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "64.82390269999996",
- "latitude": "60.117052",
- "address": "Аэропорт",
- "city_id": 603,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2012-01-01 00.25.15.jpg",
- "trainings": 2
- },
- {
- "id": 1627,
- "name": "№1627 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "64.81753778418351",
- "latitude": "60.12873404392067",
- "address": "3мкр",
- "city_id": 603,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2012-01-01 01.27.07.jpg",
- "trainings": 1
- },
- {
- "id": 1628,
- "name": "№1628 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.02462700000001",
- "latitude": "55.741689",
- "address": "Россия, Железнодорожный",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ul0.jpg",
- "trainings": 0
- },
- {
- "id": 1631,
- "name": "№1631 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "64.77594820000002",
- "latitude": "60.1257684",
- "address": " ул. Маяковского, дом 17",
- "city_id": 603,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2013-06-26 15.10.05.jpg",
- "trainings": 1
- },
- {
- "id": 1634,
- "name": "№1634 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.692563",
- "latitude": "55.640973",
- "address": "Москва Каширское шоссе дом 51 корпус 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/104373258.jpg",
- "trainings": 3
- },
- {
- "id": 1635,
- "name": "№1635 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.042723",
- "latitude": "44.052509",
- "address": "Бештаугорская",
- "city_id": 735,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/DSC03671.JPG",
- "trainings": 2
- },
- {
- "id": 1636,
- "name": "№1636 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "150.803635",
- "latitude": "59.561193",
- "address": "ул. Парковая 20",
- "city_id": 629,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/gopr4459.mp4-0_00_10-000181.jpg",
- "trainings": 3
- },
- {
- "id": 1637,
- "name": "№1637 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.587548",
- "latitude": "55.649095",
- "address": "улица Каховка 11к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/8Jr-Ml9CsF0.jpg",
- "trainings": 8
- },
- {
- "id": 1638,
- "name": "№1638 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "65.322072",
- "latitude": "55.435809",
- "address": "город Курган, Васильева, 7",
- "city_id": 601,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/bxhk7Jur7yk (1).jpg",
- "trainings": 2
- },
- {
- "id": 1640,
- "name": "№1640 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.685445",
- "latitude": "58.612269",
- "address": "Набережная Грина 7",
- "city_id": 55,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/jEgakJFGm2E.jpg",
- "trainings": 2
- },
- {
- "id": 1644,
- "name": "№1644 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.56799",
- "latitude": "56.853341",
- "address": "19а",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Фото0405.jpg",
- "trainings": 2
- },
- {
- "id": 1651,
- "name": "№1651 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "82.90210400000001",
- "latitude": "54.987949",
- "address": "Проспект Карла Маркса, 33А",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/143.JPG",
- "trainings": 2
- },
- {
- "id": 1652,
- "name": "№1652 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.619853",
- "latitude": "55.707765",
- "address": "ул. Большая Тульская д.2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/b-Map7U-JB4.jpg",
- "trainings": 3
- },
- {
- "id": 1653,
- "name": "№1653 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.561665",
- "latitude": "56.850966",
- "address": "Опалихинская 21",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Фото0413.jpg",
- "trainings": 0
- },
- {
- "id": 1657,
- "name": "№1657 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.638709",
- "latitude": "55.855046",
- "address": "Проезд Русанова 33",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/Photo 1 (7).jpg",
- "trainings": 1
- },
- {
- "id": 1666,
- "name": "№1666 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.704241",
- "latitude": "55.87208",
- "address": "м. Бабушкинская, Ярославское шоссе, д.109 к.3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Fto7oj9Svjg15.jpg",
- "trainings": 1
- },
- {
- "id": 1667,
- "name": "№1667 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.710516",
- "latitude": "55.873395",
- "address": "м. Бабушкинская, ул. Лосевская, д.1 к.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/BwKDkShYmWw.jpg",
- "trainings": 0
- },
- {
- "id": 1668,
- "name": "№1668 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.712008",
- "latitude": "55.875587",
- "address": "м. Бабушкинская, ул. Палехская, д.122 к.2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/thrd4R9eoOg.jpg",
- "trainings": 0
- },
- {
- "id": 1669,
- "name": "№1669 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.724172",
- "latitude": "55.878539",
- "address": "м. Бабушкинская, ул. Проходчиков, д.17",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/GDWnAx-93J4.jpg",
- "trainings": 4
- },
- {
- "id": 1670,
- "name": "№1670 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.709319",
- "latitude": "55.867559",
- "address": "м. Бабушкинская, Ярославское шоссе, д.118 к.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/sF8gVr5rD18.jpg",
- "trainings": 0
- },
- {
- "id": 1671,
- "name": "№1671 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "29.089407",
- "latitude": "47.347537",
- "address": "Молдавия, Дубоссары, с. Новая Маловата",
- "city_id": 445,
- "country_id": 15,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0692.JPG",
- "trainings": 1
- },
- {
- "id": 1675,
- "name": "№1675 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "29.091269",
- "latitude": "47.343446",
- "address": "Молдавия, Дубоссары, с. Новая Маловата",
- "city_id": 445,
- "country_id": 15,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0705.JPG",
- "trainings": 1
- },
- {
- "id": 1676,
- "name": "№1676 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.088565",
- "latitude": "47.350793",
- "address": "Молдавия, Дубоссары, с. Новая Маловата",
- "city_id": 445,
- "country_id": 15,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Fotografie0201.jpg",
- "trainings": 1
- },
- {
- "id": 1681,
- "name": "№1681 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.337125",
- "latitude": "55.176185",
- "address": "г. Челябинск ул.Молодогвардейцев 61а",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_4027.JPG",
- "trainings": 1
- },
- {
- "id": 1690,
- "name": "№1690 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "58.45",
- "latitude": "54.8",
- "address": "Челябинская область, город Трёхгорный",
- "city_id": 7448,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/CAM0050610.jpg",
- "trainings": 1
- },
- {
- "id": 1696,
- "name": "№1696 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.661106",
- "latitude": "55.880017",
- "address": "Олонецкий проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20130803_122236.jpg",
- "trainings": 6
- },
- {
- "id": 1705,
- "name": "№1705 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "24.198555",
- "latitude": "56.936136",
- "address": "Ilūkstes 10, Rīga",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/7476_542681655792161_400236140_n.jpg",
- "trainings": 2
- },
- {
- "id": 1708,
- "name": "№1708 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "33.401224",
- "latitude": "47.905358",
- "address": "Кривой рог, 22 Партсъезда 11",
- "city_id": 512,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/328.jpg",
- "trainings": 0
- },
- {
- "id": 1709,
- "name": "№1709 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.894735",
- "latitude": "43.129256",
- "address": "Океанский пр-т 54",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20130726_172953.jpg",
- "trainings": 3
- },
- {
- "id": 1710,
- "name": "№1710 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.900101",
- "latitude": "43.130799",
- "address": "Ул. Острякова №9",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20130802_200637.jpg",
- "trainings": 1
- },
- {
- "id": 1711,
- "name": "№1711 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.90717500000005",
- "latitude": "43.132102",
- "address": "Между Океанским проспектомом 112 и 142",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20130730_184846.jpg",
- "trainings": 3
- },
- {
- "id": 1713,
- "name": "№1713 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.455569",
- "latitude": "55.896563",
- "address": "парк им. Льва Толстого",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/химки3.jpg",
- "trainings": 16
- },
- {
- "id": 1720,
- "name": "№1720 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.14936",
- "latitude": "44.22911",
- "address": "Минеральные воды, с левокумка,",
- "city_id": 7389,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2013-08-17 10.56.53.jpg",
- "trainings": 2
- },
- {
- "id": 1721,
- "name": "№1721 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.31900300000007",
- "latitude": "55.210002",
- "address": "Сокур, ул. Советская 39",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/SAM_4088.JPG",
- "trainings": 1
- },
- {
- "id": 1723,
- "name": "№1723 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.808872",
- "latitude": "55.731464",
- "address": "Вешняки",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/18082013247.jpg",
- "trainings": 5
- },
- {
- "id": 1725,
- "name": "№1725 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.667935",
- "latitude": "55.800997",
- "address": "3-й лучевой просек",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1563.JPG",
- "trainings": 3
- },
- {
- "id": 1726,
- "name": "№1726 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.669393300000024",
- "latitude": "55.8051885",
- "address": "4-й лучевой просек, Сокольники, большой Путяевский пруд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/WP_20160603_20_47_17_Pro (2)10.jpg",
- "trainings": 7
- },
- {
- "id": 1727,
- "name": "№1727 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.14369",
- "latitude": "56.325529",
- "address": "Сергиев Посад г., Матросова улица, 2-А",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/-t-FarxjvpQ.jpg",
- "trainings": 4
- },
- {
- "id": 1732,
- "name": "№1732 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.334708999999975",
- "latitude": "55.704395",
- "address": "44 школа набережные челны",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/CvpGcAbYlaU.jpg",
- "trainings": 3
- },
- {
- "id": 1733,
- "name": "№1733 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "52.41552257590229",
- "latitude": "55.73431122772463",
- "address": "гренада набережные челны",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/MS4ZCJ-sk9U.jpg",
- "trainings": 6
- },
- {
- "id": 1735,
- "name": "№1735 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.427036",
- "latitude": "55.865403",
- "address": "Вилиса Лациса , дом 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DTthjm3KyvM.jpg",
- "trainings": 5
- },
- {
- "id": 1738,
- "name": "№1738 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.566408",
- "latitude": "55.688871",
- "address": "Улица Ивана Бабушкина, д.3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Photo 7.jpg",
- "trainings": 0
- },
- {
- "id": 1739,
- "name": "№1739 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.565896",
- "latitude": "55.686514",
- "address": "Улица Кедрова д.3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/Photo 4.jpg",
- "trainings": 0
- },
- {
- "id": 1740,
- "name": "№1740 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.554531",
- "latitude": "55.666739",
- "address": "Ул. Профсоюзная, д. 43.к.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Photo 3.jpg",
- "trainings": 1
- },
- {
- "id": 1742,
- "name": "№1742 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.567377",
- "latitude": "55.780733",
- "address": "Улица Скаковая 18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Photo 14.jpg",
- "trainings": 2
- },
- {
- "id": 1744,
- "name": "№1744 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.447317",
- "latitude": "59.917992",
- "address": "Улица Бадаева дом 8",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/big67.jpg",
- "trainings": 3
- },
- {
- "id": 1757,
- "name": "№1757 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.95900600000004",
- "latitude": "54.95806",
- "address": "Новосибирск, ул. Комсомольская 31",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/NczK1JxgnZ4.jpg",
- "trainings": 1
- },
- {
- "id": 1759,
- "name": "№1759 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.850087",
- "latitude": "56.498996",
- "address": "Сергиево посадский район, д. Марьино",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9e2a9026cba811e286b922000a9f14cd_7.jpg",
- "trainings": 1
- },
- {
- "id": 1779,
- "name": "№1779 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.232485",
- "latitude": "47.782908",
- "address": "Чумаченко 13б",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2013-09-09-08-43-51.jpg",
- "trainings": 2
- },
- {
- "id": 1797,
- "name": "№1797 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.33367120118892",
- "latitude": "55.19299678925843",
- "address": "ул. Молодогвардейцев",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_403269.JPG",
- "trainings": 5
- },
- {
- "id": 1801,
- "name": "№1801 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.741863",
- "latitude": "55.761619",
- "address": "ул. Соколиной Горы 3-я",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC_0256.JPG",
- "trainings": 3
- },
- {
- "id": 1802,
- "name": "№1802 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "50.815968",
- "latitude": "61.685702",
- "address": "Сыктывкар, ул.Печорская, д.12",
- "city_id": 132,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2097.jpg",
- "trainings": 2
- },
- {
- "id": 1805,
- "name": "№1805 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.398675",
- "latitude": "59.824857",
- "address": "Малая Балканская д.40 к.1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image80.jpg",
- "trainings": 6
- },
- {
- "id": 1806,
- "name": "№1806 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.232537",
- "latitude": "47.786053",
- "address": "Украина, Запорожье, ул. Космическая 124",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/jpg.jpg",
- "trainings": 0
- },
- {
- "id": 1808,
- "name": "№1808 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.224388",
- "latitude": "47.782328",
- "address": "Северокольцевая 16A, Школа №84",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20130919_072924.jpg",
- "trainings": 1
- },
- {
- "id": 1810,
- "name": "№1810 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.122942",
- "latitude": "47.842498",
- "address": "проспект Маяковского 8, Гимназия №71",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20130917_151606.jpg",
- "trainings": 0
- },
- {
- "id": 1811,
- "name": "№1811 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.123156",
- "latitude": "47.841539",
- "address": "Маяковского проспект, 14, Школа Алеф",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20130917_150434.jpg",
- "trainings": 0
- },
- {
- "id": 1812,
- "name": "№1812 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.230512",
- "latitude": "47.783434",
- "address": "Чумаченко 7",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20130918_072417.jpg",
- "trainings": 2
- },
- {
- "id": 1813,
- "name": "№1813 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.230591",
- "latitude": "47.784473",
- "address": "Космическая 126А",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20130918_080024.jpg",
- "trainings": 0
- },
- {
- "id": 1814,
- "name": "№1814 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.123435",
- "latitude": "47.8389",
- "address": "Лермонтова 26",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20130917_145759.jpg",
- "trainings": 0
- },
- {
- "id": 1815,
- "name": "№1815 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.137813",
- "latitude": "47.830055",
- "address": "в парке УКРНИИСПЕЦСТАЛЬ по адресу ул. Патриотическая, 74а.",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20130921_164719.jpg",
- "trainings": 0
- },
- {
- "id": 1816,
- "name": "№1816 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.42249",
- "latitude": "55.887961",
- "address": "Химки, Юбилейный проспект, 32",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/1SfuI-lLRA0.jpg",
- "trainings": 3
- },
- {
- "id": 1818,
- "name": "№1818 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.37537367459106",
- "latitude": "55.840852454909594",
- "address": "Митинская улица д12",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/684а_-1 copy.jpg",
- "trainings": 2
- },
- {
- "id": 1819,
- "name": "№1819 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.043168",
- "latitude": "48.433311",
- "address": "Парк им. Юрия Гагарина",
- "city_id": 491,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/N9IpBhAZGiw.jpg",
- "trainings": 3
- },
- {
- "id": 1823,
- "name": "№1823 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.616742",
- "latitude": "55.120604",
- "address": "ул. Калужская, 1",
- "city_id": 796,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/5EmUL_aOFsE.jpg",
- "trainings": 2
- },
- {
- "id": 1824,
- "name": "№1824 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.032516",
- "latitude": "48.434456",
- "address": "Днепропетровск, ул.Научная",
- "city_id": 491,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Спортивная площадка79.jpg",
- "trainings": 1
- },
- {
- "id": 1825,
- "name": "№1825 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "35.223072",
- "latitude": "47.796223",
- "address": "Запорожье, ул. Музыкальная 11",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/24092013109.jpg",
- "trainings": 0
- },
- {
- "id": 1826,
- "name": "№1826 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.226827",
- "latitude": "47.782902",
- "address": "Запорожье, ул.Северокольцевая 24",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/24092013107.jpg",
- "trainings": 2
- },
- {
- "id": 1828,
- "name": "№1828 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.56573629339982",
- "latitude": "55.89997779832075",
- "address": "Череповецкая 3б.с2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 10,
- "preview": "https://workout.su/uploads/userfiles/912.jpg",
- "trainings": 13
- },
- {
- "id": 1829,
- "name": "№1829 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.866794624871545",
- "latitude": "57.35820366976101",
- "address": "ул. Паровозников 30а",
- "city_id": 8219,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20130926_112424.jpg",
- "trainings": 0
- },
- {
- "id": 1831,
- "name": "№1831 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "10.477488",
- "latitude": "44.660713",
- "address": "Италия,Реджо Емилий,Биббиано,ул.Ленин",
- "city_id": 7891,
- "country_id": 31,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/SAM_191069.JPG",
- "trainings": 1
- },
- {
- "id": 1832,
- "name": "№1832 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "49.420969",
- "latitude": "53.509677",
- "address": "Центральный парк",
- "city_id": 136,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/T64vZ0G9Urk29.jpg",
- "trainings": 2
- },
- {
- "id": 1836,
- "name": "№1836 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.046499",
- "latitude": "48.435237",
- "address": "Днепропетровск, ул. Лазаряна, 2.",
- "city_id": 491,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/28092013(004).jpg",
- "trainings": 0
- },
- {
- "id": 1837,
- "name": "№1837 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "23.655162511148273",
- "latitude": "52.09957658260759",
- "address": "vulica Adamkoŭskaja 40, Brest, Belarus",
- "city_id": 371,
- "country_id": 5,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/PANO_20130526_10242383142.jpg",
- "trainings": 1
- },
- {
- "id": 1838,
- "name": "№1838 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.340026",
- "latitude": "55.694549",
- "address": "ЗЯБ. 18/35",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSCN4621.JPG",
- "trainings": 3
- },
- {
- "id": 1839,
- "name": "№1839 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "52.343105",
- "latitude": "55.694313",
- "address": "ЗЯБ. 18/15",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSCN4641.JPG",
- "trainings": 3
- },
- {
- "id": 1840,
- "name": "№1840 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.339526",
- "latitude": "55.690479",
- "address": "ЗЯБ. 18/21",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSCN4626.JPG",
- "trainings": 2
- },
- {
- "id": 1841,
- "name": "№1841 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.340442",
- "latitude": "55.689949",
- "address": "ЗЯБ. .ул.Х.Такташа. 18/22",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSCN4630.JPG",
- "trainings": 2
- },
- {
- "id": 1842,
- "name": "№1842 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.50316178259661",
- "latitude": "55.82052011629951",
- "address": "м. Войковская, 4-й Новоподмосковный пер. д2 с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 17,
- "preview": "https://workout.su/uploads/userfiles/IvwdYvHRS1Q.jpg",
- "trainings": 18
- },
- {
- "id": 1844,
- "name": "№1844 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "10.472355",
- "latitude": "44.660782",
- "address": "Италия,Реджо Емилий,Биббиано",
- "city_id": 808,
- "country_id": 31,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/SAM_1926.JPG",
- "trainings": 1
- },
- {
- "id": 1846,
- "name": "№1846 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "85.023387",
- "latitude": "56.508844",
- "address": "Россия, Томск, Карский переулок 29 (/Любы Шевцовой 7)",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1001_081337.jpg",
- "trainings": 0
- },
- {
- "id": 1847,
- "name": "№1847 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.198016",
- "latitude": "47.81415",
- "address": "г.Запорожье, ул. Деповская д.85",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/01102013127.jpg",
- "trainings": 0
- },
- {
- "id": 1848,
- "name": "№1848 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.164247",
- "latitude": "47.81762",
- "address": "г.Запорожье, ул.Грязнова 2",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/30092013122.jpg",
- "trainings": 0
- },
- {
- "id": 1849,
- "name": "№1849 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.219043",
- "latitude": "47.796869",
- "address": "г.Запорожье, ул. Антарктическая 15",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/01102013125.jpg",
- "trainings": 0
- },
- {
- "id": 1855,
- "name": "№1855 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.221567",
- "latitude": "47.781368",
- "address": "г.Запорожье, ул.Сытова 13",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0410201313670.jpg",
- "trainings": 0
- },
- {
- "id": 1856,
- "name": "№1856 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.220823",
- "latitude": "47.77992",
- "address": "г.Запорожье, ул.Сытова 17",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/04102013138.jpg",
- "trainings": 0
- },
- {
- "id": 1857,
- "name": "№1857 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.178089",
- "latitude": "47.813625",
- "address": "г.Запорожье, ул.Горького 55",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/04102013139.jpg",
- "trainings": 0
- },
- {
- "id": 1858,
- "name": "№1858 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "50.134146999999984",
- "latitude": "53.203124",
- "address": "ул. Больничная, 14",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1209201342075.jpg",
- "trainings": 0
- },
- {
- "id": 1859,
- "name": "№1859 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "50.215385",
- "latitude": "53.201034",
- "address": "ул. Гагарина/Советской армии",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2405201333492.jpg",
- "trainings": 0
- },
- {
- "id": 1860,
- "name": "№1860 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.048331",
- "latitude": "47.866623",
- "address": "Трегубова 10",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2013-10-05-14-44-36.png",
- "trainings": 0
- },
- {
- "id": 1861,
- "name": "№1861 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.22706",
- "latitude": "47.780271",
- "address": "г.Запорожье, Чумаченко 18",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2013-10-06-11-24-0015.png",
- "trainings": 0
- },
- {
- "id": 1862,
- "name": "№1862 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "85.021948",
- "latitude": "56.51011",
- "address": "Россия, Томск, Иркутский тракт , Л Шевцовой 65 ",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140524_072745_resize.jpg",
- "trainings": 1
- },
- {
- "id": 1864,
- "name": "№1864 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.523189",
- "latitude": "55.807377",
- "address": "Москва, 2 Балтийский переулок, 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/675.jpg",
- "trainings": 9
- },
- {
- "id": 1865,
- "name": "№1865 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.216226",
- "latitude": "47.781833",
- "address": "г.Запорожье, ул.Малиновского 14",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/09102013145.jpg",
- "trainings": 1
- },
- {
- "id": 1866,
- "name": "№1866 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.217325",
- "latitude": "47.790628",
- "address": "г.Запорожье, ул.Космическая 101",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/09102013147.jpg",
- "trainings": 0
- },
- {
- "id": 1868,
- "name": "№1868 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.800341",
- "latitude": "55.791405",
- "address": "м. Первомайская, Нижняя Первомайская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/09102013274.jpg",
- "trainings": 0
- },
- {
- "id": 1871,
- "name": "№1871 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.237974",
- "latitude": "47.806021",
- "address": "г.Запорожье, ул.Юности, район автодрома ЗГОУКК",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/11102013157.jpg",
- "trainings": 0
- },
- {
- "id": 1872,
- "name": "№1872 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.214705",
- "latitude": "47.788089",
- "address": "г.Запорожье, ул.Магара 5а",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/11102013164.jpg",
- "trainings": 0
- },
- {
- "id": 1873,
- "name": "№1873 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.207931",
- "latitude": "47.791702",
- "address": "г.Запорожье, ул. Космическая 90",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/11102013162.jpg",
- "trainings": 0
- },
- {
- "id": 1874,
- "name": "№1874 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.411231",
- "latitude": "55.763143",
- "address": "улица Крылатские Холмы, 45с2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image51.jpg",
- "trainings": 2
- },
- {
- "id": 1876,
- "name": "№1876 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "83.769931",
- "latitude": "53.345786",
- "address": "ул. Молодежная, гостиница Колос",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/101_183794.JPG",
- "trainings": 0
- },
- {
- "id": 1877,
- "name": "№1877 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.20845",
- "latitude": "47.777902",
- "address": "г.Запорожье, ул. Комарова 29",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/12102013169.jpg",
- "trainings": 0
- },
- {
- "id": 1879,
- "name": "№1879 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.228076",
- "latitude": "47.78426",
- "address": "Космос, Северо-Кольцевая 25",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-10-13-18-58-50.png",
- "trainings": 0
- },
- {
- "id": 1880,
- "name": "№1880 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.226198",
- "latitude": "47.786214",
- "address": "Космос, Северо-Кольцевая 21",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-10-13-19-03-56.png",
- "trainings": 0
- },
- {
- "id": 1881,
- "name": "№1881 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.21983649999993",
- "latitude": "47.7875455",
- "address": "Космос, Космическая 110А",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-10-13-19-08-18.png",
- "trainings": 0
- },
- {
- "id": 1882,
- "name": "№1882 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.220462",
- "latitude": "47.787332",
- "address": "Космос, Космическая 112А",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-10-13-19-07-28.png",
- "trainings": 0
- },
- {
- "id": 1883,
- "name": "№1883 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.213194",
- "latitude": "47.787695",
- "address": "Космос, Магара 5",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-10-13-19-23-00.png",
- "trainings": 0
- },
- {
- "id": 1886,
- "name": "№1886 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.226972",
- "latitude": "47.783676",
- "address": "Космос, Северо-Кольцевая 20",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2013-10-13-19-35-46.png",
- "trainings": 0
- },
- {
- "id": 1894,
- "name": "№1894 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "50.199026",
- "latitude": "53.20085659999999",
- "address": "Гагарина",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/08102013438.jpg",
- "trainings": 0
- },
- {
- "id": 1898,
- "name": "№1898 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.123676",
- "latitude": "47.841797",
- "address": "проспект Маяковского 10",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2013-10-15-15-37-53.png",
- "trainings": 0
- },
- {
- "id": 1899,
- "name": "№1899 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.00943",
- "latitude": "48.427051",
- "address": "г.Днепропетровск ул.Фабрично-Заводская, 22",
- "city_id": 491,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0243.JPG",
- "trainings": 2
- },
- {
- "id": 1901,
- "name": "№1901 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.192352",
- "latitude": "47.772377",
- "address": "Украина г.Запорожье ул.Стешенко 19",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/137.png",
- "trainings": 2
- },
- {
- "id": 1904,
- "name": "№1904 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.421518",
- "latitude": "50.442765",
- "address": "Киев Николая Василенко 10",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0195[1].jpg",
- "trainings": 0
- },
- {
- "id": 1905,
- "name": "№1905 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.720069",
- "latitude": "55.743865",
- "address": "г.Москва, ул. Авиамоторная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_025474.JPG",
- "trainings": 1
- },
- {
- "id": 1906,
- "name": "№1906 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.339717",
- "latitude": "47.911306",
- "address": "Харитонова 95",
- "city_id": 512,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/197.jpg",
- "trainings": 0
- },
- {
- "id": 1907,
- "name": "№1907 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.812595",
- "latitude": "55.789713",
- "address": "Измайловский проспект 115",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20130917_090617.jpg",
- "trainings": 1
- },
- {
- "id": 1908,
- "name": "№1908 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.479633",
- "latitude": "55.752746",
- "address": "Филёвский парк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1-1.jpg",
- "trainings": 2
- },
- {
- "id": 1909,
- "name": "№1909 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.476012",
- "latitude": "55.750227",
- "address": "Филёвский парк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2-3.jpg",
- "trainings": 2
- },
- {
- "id": 1910,
- "name": "№1910 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.45649500000002",
- "latitude": "55.736275",
- "address": "Филёвский парк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3-2.jpg",
- "trainings": 7
- },
- {
- "id": 1912,
- "name": "№1912 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.95484",
- "latitude": "55.736972",
- "address": "ул.Калинина",
- "city_id": 95,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ZsD4euCC7R0.jpg",
- "trainings": 1
- },
- {
- "id": 1913,
- "name": "№1913 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "49.629463",
- "latitude": "58.584961",
- "address": "Вход в парк со стороны ул.Попова",
- "city_id": 55,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/bTeYtubf6PQ.jpg",
- "trainings": 0
- },
- {
- "id": 1916,
- "name": "№1916 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "38.003833",
- "latitude": "48.303344",
- "address": "Горловка,Пушкинской 80",
- "city_id": 600,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/LnUilh7A-4c.jpg",
- "trainings": 0
- },
- {
- "id": 1918,
- "name": "№1918 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.191101",
- "latitude": "47.773132",
- "address": "Украина г.Запорожье ул.Автозаводская 56",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/134.png",
- "trainings": 2
- },
- {
- "id": 1919,
- "name": "№1919 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.229019",
- "latitude": "47.786497",
- "address": "г.Запорожье, ул. Космическая 122",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20131103_111002.jpg",
- "trainings": 0
- },
- {
- "id": 1920,
- "name": "№1920 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.231352",
- "latitude": "47.78531",
- "address": "г.Запорожье, ул.Космическая 124Б",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20131103_111236.jpg",
- "trainings": 0
- },
- {
- "id": 1921,
- "name": "№1921 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.231365",
- "latitude": "47.78191",
- "address": "г.Запорожье, ул. Чумаченко 13",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20131103_122334.jpg",
- "trainings": 1
- },
- {
- "id": 1922,
- "name": "№1922 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.227101",
- "latitude": "47.782561",
- "address": "г.Запорожье, ул. Чумаченко 12A",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20131103_122959.jpg",
- "trainings": 0
- },
- {
- "id": 1923,
- "name": "№1923 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.569726",
- "latitude": "55.706313",
- "address": "Ул.Косыгина, д.7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image34.jpg",
- "trainings": 2
- },
- {
- "id": 1924,
- "name": "№1924 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.382091",
- "latitude": "61.791831",
- "address": "Петрозаводск",
- "city_id": 102,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1373532249_843137_69.jpg",
- "trainings": 0
- },
- {
- "id": 1931,
- "name": "№1931 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.419705",
- "latitude": "50.445338",
- "address": "Киев Николая Василенко 6",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC_0198[1].jpg",
- "trainings": 0
- },
- {
- "id": 1932,
- "name": "№1932 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.426407",
- "latitude": "50.443842",
- "address": "Киев Николая Василенко 15",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0201[1].jpg",
- "trainings": 0
- },
- {
- "id": 1933,
- "name": "№1933 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.421168",
- "latitude": "50.462324",
- "address": "Парк Нивки",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC_0203[1].jpg",
- "trainings": 1
- },
- {
- "id": 1934,
- "name": "№1934 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.593619",
- "latitude": "64.592794",
- "address": "Костомукша, ул. Мира",
- "city_id": 799,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/081120131026.jpg",
- "trainings": 2
- },
- {
- "id": 1935,
- "name": "№1935 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "50.22604",
- "latitude": "53.239392",
- "address": "ул. Стара Загора, 110",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20131105_162756.jpg",
- "trainings": 2
- },
- {
- "id": 1936,
- "name": "№1936 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "50.19182",
- "latitude": "53.206023",
- "address": "Самара, ул. Дыбенко 24",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/17102013466.jpg",
- "trainings": 0
- },
- {
- "id": 1937,
- "name": "№1937 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "50.174439",
- "latitude": "53.198442",
- "address": "ул. Гагарина, 39",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/05112013485.jpg",
- "trainings": 0
- },
- {
- "id": 1938,
- "name": "№1938 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "50.210753",
- "latitude": "53.239009",
- "address": "Московское шоссе 125",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/05062013345.jpg",
- "trainings": 2
- },
- {
- "id": 1939,
- "name": "№1939 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "42.012965",
- "latitude": "45.0329",
- "address": "ул.Серова,523",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/53rcQCARHos.jpg",
- "trainings": 0
- },
- {
- "id": 1940,
- "name": "№1940 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.514681",
- "latitude": "57.866971",
- "address": "г.Тутаев, ул.Моторостроителей д.54",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20131101_161752.jpg",
- "trainings": 2
- },
- {
- "id": 1941,
- "name": "№1941 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.447415",
- "latitude": "55.830583",
- "address": "ул. Долгова дом 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/DSC_8216.JPG",
- "trainings": 6
- },
- {
- "id": 1944,
- "name": "№1944 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.055069",
- "latitude": "47.874579",
- "address": "Дудыкина 20",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-11-16-18-06-29.png",
- "trainings": 0
- },
- {
- "id": 1946,
- "name": "№1946 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.225514",
- "latitude": "47.781357",
- "address": "г.Запорожье, Чумаченко 14а",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20131117_143900.jpg",
- "trainings": 0
- },
- {
- "id": 1947,
- "name": "№1947 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.216501",
- "latitude": "47.780555",
- "address": "г.Запорожье, Чумаченко 22",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-11-17-15-18-06.png",
- "trainings": 0
- },
- {
- "id": 1948,
- "name": "№1948 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.216388",
- "latitude": "47.782398",
- "address": "г.Запорожье, Малиновского 12",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-11-17-16-59-31.png",
- "trainings": 0
- },
- {
- "id": 1950,
- "name": "№1950 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.537533",
- "latitude": "53.910387",
- "address": "г. Минск, Заславская ул., д.12",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/Минск.JPG",
- "trainings": 1
- },
- {
- "id": 1951,
- "name": "№1951 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.131548",
- "latitude": "47.833715",
- "address": "г.Запорожье, бульвар Центральный 20 (/ул Победы",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-11-18-17-20-54.png",
- "trainings": 0
- },
- {
- "id": 1952,
- "name": "№1952 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.136973",
- "latitude": "47.832823",
- "address": "г.Запорожье, ул Патриотическая 15а",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-11-18-17-38-14.png",
- "trainings": 0
- },
- {
- "id": 1953,
- "name": "№1953 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.131813",
- "latitude": "47.835859",
- "address": "г.Запорожье, бульвар Центральный 12а",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-11-18-17-43-35.png",
- "trainings": 0
- },
- {
- "id": 1954,
- "name": "№1954 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.127998",
- "latitude": "47.837915",
- "address": "г.Запорожье, ул Лермонтова 21",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-11-18-17-51-10.png",
- "trainings": 0
- },
- {
- "id": 1955,
- "name": "№1955 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.373783",
- "latitude": "60.00306",
- "address": "ул. Политехническая",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/DSC_0180.JPG",
- "trainings": 3
- },
- {
- "id": 1957,
- "name": "№1957 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.211212",
- "latitude": "47.787151",
- "address": "г.Запорожье, ул. Магара 4/4а",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20112013267.jpg",
- "trainings": 0
- },
- {
- "id": 1959,
- "name": "№1959 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.126799",
- "latitude": "47.840642",
- "address": "г.Запорожье, ул Лермонтова 18",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-11-20-18-19-14.png",
- "trainings": 0
- },
- {
- "id": 1960,
- "name": "№1960 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.127841",
- "latitude": "47.839161",
- "address": "г.Запорожье, ул Победы 50а",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-11-20-18-16-54.png",
- "trainings": 0
- },
- {
- "id": 1961,
- "name": "№1961 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.12936",
- "latitude": "47.838138",
- "address": "г.Запорожье, ул Победы 54а",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-11-20-18-17-24.png",
- "trainings": 0
- },
- {
- "id": 1962,
- "name": "№1962 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.135011",
- "latitude": "47.833076",
- "address": "г.Запорожье, бульвар Центральный 17",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-11-20-18-18-04.png",
- "trainings": 0
- },
- {
- "id": 1963,
- "name": "№1963 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.134477",
- "latitude": "47.832643",
- "address": "г.Запорожье, бульвар Центральный 19",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-11-20-18-18-49.png",
- "trainings": 0
- },
- {
- "id": 1964,
- "name": "№1964 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.13285",
- "latitude": "47.839895",
- "address": "г.Запорожье, ул Патриотическая 50",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2013-11-20-18-49-05.png",
- "trainings": 0
- },
- {
- "id": 1965,
- "name": "№1965 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "24.93951",
- "latitude": "60.171102",
- "address": "Asema-Aukio",
- "city_id": 697,
- "country_id": 23,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/sLC7s0GHRaA.jpg",
- "trainings": 0
- },
- {
- "id": 1967,
- "name": "№1967 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.830028",
- "latitude": "55.802245",
- "address": "16-я Парковая, 29, к.1.",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/Фото0112.jpg",
- "trainings": 2
- },
- {
- "id": 1969,
- "name": "№1969 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.585618",
- "latitude": "64.586846",
- "address": "Костомукша, ул. Октябрьская д.4",
- "city_id": 799,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/261120131057.jpg",
- "trainings": 1
- },
- {
- "id": 1970,
- "name": "№1970 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.213099",
- "latitude": "47.781275",
- "address": "г.Запорожье, ул.Чумаченко 35а",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/27112013280.jpg",
- "trainings": 1
- },
- {
- "id": 1971,
- "name": "№1971 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.226719",
- "latitude": "47.778042",
- "address": "г.Запорожье, ул.Чумаченко 23",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/27112013283.jpg",
- "trainings": 1
- },
- {
- "id": 1972,
- "name": "№1972 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.22394",
- "latitude": "47.77803",
- "address": "г.Запорожье, ул.Чумаченко 23",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/27112013287.jpg",
- "trainings": 0
- },
- {
- "id": 1974,
- "name": "№1974 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.411511",
- "latitude": "55.646126",
- "address": "Москва, ул. Щорса",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Щорса.jpg",
- "trainings": 2
- },
- {
- "id": 1975,
- "name": "№1975 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.821071",
- "latitude": "55.818866",
- "address": "Алтайская улица, 26а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_00000017.jpg",
- "trainings": 1
- },
- {
- "id": 1976,
- "name": "№1976 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.394214000000034",
- "latitude": "55.161857",
- "address": "Челябинск парк Алое поле",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/CAM00623.jpg",
- "trainings": 4
- },
- {
- "id": 1977,
- "name": "№1977 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "61.36344600000007",
- "latitude": "55.158206",
- "address": "Челябинск, пр. Ленина (за памятником Курчатову)",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/CAM00626.jpg",
- "trainings": 15
- },
- {
- "id": 1978,
- "name": "№1978 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.6009578704834",
- "latitude": "64.59582452444606",
- "address": "Карелия, Костомукша, ул. Советская",
- "city_id": 799,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/041220131070.jpg",
- "trainings": 3
- },
- {
- "id": 1979,
- "name": "№1979 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.214341",
- "latitude": "59.997412",
- "address": "Мебельная улица, 21к3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/14584.jpg",
- "trainings": 2
- },
- {
- "id": 1980,
- "name": "№1980 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.21514",
- "latitude": "59.988321",
- "address": "Яхтенная улица, 8к1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/139.jpg",
- "trainings": 12
- },
- {
- "id": 1982,
- "name": "№1982 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.581356",
- "latitude": "55.739459",
- "address": "г. Москва, Новоконюшенный пер., д. 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Бурденко 169.JPG",
- "trainings": 4
- },
- {
- "id": 1983,
- "name": "№1983 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.642241",
- "latitude": "55.81973",
- "address": "м. ВДНХ, выход к гостинице Космос",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/ВДНХ.JPG",
- "trainings": 3
- },
- {
- "id": 1984,
- "name": "№1984 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.598479",
- "latitude": "55.765723",
- "address": "Москва, Трёхпрудный пер, д. 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/Пушкинская.JPG",
- "trainings": 2
- },
- {
- "id": 1985,
- "name": "№1985 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "50.19799",
- "latitude": "53.230281",
- "address": "Московское шоссе 83",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/08122013527.jpg",
- "trainings": 8
- },
- {
- "id": 1986,
- "name": "№1986 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "50.137286",
- "latitude": "53.207983",
- "address": "ул. Осипенко 32",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/10122013539.jpg",
- "trainings": 1
- },
- {
- "id": 1987,
- "name": "№1987 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "50.139602",
- "latitude": "53.207673",
- "address": "ул. Осипенко 34",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/06112013493.jpg",
- "trainings": 0
- },
- {
- "id": 1989,
- "name": "№1989 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.867067",
- "latitude": "44.760916",
- "address": "г.Белореченск ул. Луначарского 122",
- "city_id": 5975,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140101_17440855.jpg",
- "trainings": 2
- },
- {
- "id": 1995,
- "name": "№1995 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.220922",
- "latitude": "47.836224",
- "address": "г.Запорожье, ул.Магистральная 76",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/14122013338.jpg",
- "trainings": 0
- },
- {
- "id": 1996,
- "name": "№1996 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.58668",
- "latitude": "55.72664",
- "address": "1-я фрунзенская 3А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/21122013283.jpg",
- "trainings": 1
- },
- {
- "id": 1999,
- "name": "№1999 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "32.006563",
- "latitude": "59.448627",
- "address": "Волховская наб., 28, Кириши, Ленинградская область",
- "city_id": 54,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMAG0117.jpg",
- "trainings": 1
- },
- {
- "id": 2000,
- "name": "№2000 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "71.424268",
- "latitude": "51.156224",
- "address": "Астана,район центрального парка",
- "city_id": 406,
- "country_id": 11,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/P1040151.JPG",
- "trainings": 3
- },
- {
- "id": 2001,
- "name": "№2001 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "65.616569",
- "latitude": "57.181569",
- "address": "г. Тюмень, ул. Игримская 30",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20131211_161951-3.jpg",
- "trainings": 1
- },
- {
- "id": 2002,
- "name": "№2002 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.560549",
- "latitude": "55.749214",
- "address": "Кутузовский проспект, д. 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Кутузовский проспект 1.JPG",
- "trainings": 1
- },
- {
- "id": 2003,
- "name": "№2003 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "65.612202",
- "latitude": "57.180756",
- "address": "г. Тюмень, ул. Малышева 37/1",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20131211_163516-3.jpg",
- "trainings": 0
- },
- {
- "id": 2006,
- "name": "№2006 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "34.436953",
- "latitude": "47.579461",
- "address": "г.Никополь, ул. Победы 39",
- "city_id": 661,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/06012014398.jpg",
- "trainings": 0
- },
- {
- "id": 2007,
- "name": "№2007 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.82091",
- "latitude": "55.822437",
- "address": "Уссурийская улица, 16с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_00000001.jpg",
- "trainings": 3
- },
- {
- "id": 2008,
- "name": "№2008 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.581375",
- "latitude": "55.725048",
- "address": "комсомольский проспект 27с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/02012014289.jpg",
- "trainings": 2
- },
- {
- "id": 2009,
- "name": "№2009 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.599677",
- "latitude": "55.70924",
- "address": "ул. Орджоникидзе 7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/08012014295.jpg",
- "trainings": 0
- },
- {
- "id": 2013,
- "name": "№2013 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.214664",
- "latitude": "47.791369",
- "address": "г.Запорожье, ул.Космическая 87",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/11012014403.jpg",
- "trainings": 0
- },
- {
- "id": 2014,
- "name": "№2014 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "32.767824",
- "latitude": "56.221214",
- "address": "Тверская обл. г.Нелидово ул.Советская, 34",
- "city_id": 7278,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Копия P117062894.JPG",
- "trainings": 1
- },
- {
- "id": 2015,
- "name": "№2015 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "32.766088",
- "latitude": "56.230109",
- "address": "Тверская обл. г.Нелидово ул.Советская д40",
- "city_id": 7278,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/Копия P1170631.JPG",
- "trainings": 1
- },
- {
- "id": 2016,
- "name": "№2016 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "176.183123",
- "latitude": "-37.634646",
- "address": "Новая Зеландия, Маунгани-роад",
- "city_id": 7449,
- "country_id": 40,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2014-01-26-342.jpg",
- "trainings": 0
- },
- {
- "id": 2017,
- "name": "№2017 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "47.879344",
- "latitude": "56.635785",
- "address": "Йошкар-Ола, ул. Я.Эшпая, д.156",
- "city_id": 571,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/28317.jpg",
- "trainings": 1
- },
- {
- "id": 2018,
- "name": "№2018 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "47.878166",
- "latitude": "56.643037",
- "address": "Йошкар-Ола, ул. Осипенко, д.60",
- "city_id": 571,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/цв.jpg",
- "trainings": 1
- },
- {
- "id": 2019,
- "name": "№2019 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "32.790721",
- "latitude": "56.229367",
- "address": "Тверская обл. г. Нелидово ул. Правды д17",
- "city_id": 7278,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Копия P1170641.JPG",
- "trainings": 0
- },
- {
- "id": 2027,
- "name": "№2027 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "31.64722",
- "latitude": "48.311049",
- "address": "Ул.Кирова",
- "city_id": 7378,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC02203.JPG",
- "trainings": 1
- },
- {
- "id": 2028,
- "name": "№2028 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "35.95528300000001",
- "latitude": "56.026352",
- "address": "Волоколамск, ул. Школьная, д. 14",
- "city_id": 20,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/031eOlVGnAE.jpg",
- "trainings": 1
- },
- {
- "id": 2029,
- "name": "№2029 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.954237",
- "latitude": "56.028157",
- "address": "Волоколамск, ул. Школьная, д. 12",
- "city_id": 20,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/lhlPnOFr7SQ.jpg",
- "trainings": 0
- },
- {
- "id": 2030,
- "name": "№2030 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.96754",
- "latitude": "56.032812",
- "address": "Волоколамск, Городской парк",
- "city_id": 20,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6Cd6FofPPdw.jpg",
- "trainings": 0
- },
- {
- "id": 2032,
- "name": "№2032 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "38.031111",
- "latitude": "47.965278",
- "address": "Маяк",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P2270897.JPG",
- "trainings": 0
- },
- {
- "id": 2044,
- "name": "№2044 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.233231",
- "latitude": "47.854717",
- "address": "г.Запорожье, ул. Авраменко 18",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0503201450417.jpg",
- "trainings": 0
- },
- {
- "id": 2045,
- "name": "№2045 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.746566",
- "latitude": "55.699559",
- "address": "Юных Ленинцев 20/2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/20140327_080616 (1280x960).jpg",
- "trainings": 2
- },
- {
- "id": 2047,
- "name": "№2047 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.53366",
- "latitude": "55.778521",
- "address": "Хорошевское шоссе, дом 50, корпус 3.",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/A1100857.jpg",
- "trainings": 4
- },
- {
- "id": 2050,
- "name": "№2050 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "47.991844",
- "latitude": "46.364904",
- "address": "астрахань пер.2-ой Садовый д.4",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_8959.JPG",
- "trainings": 1
- },
- {
- "id": 2051,
- "name": "№2051 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.568992",
- "latitude": "55.8189",
- "address": "парк Дубки",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20131212_161554.jpg",
- "trainings": 14
- },
- {
- "id": 2052,
- "name": "№2052 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "33.102845",
- "latitude": "68.913188",
- "address": "проспект Ледокольный, 23",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2014-03-20 15.49.30.jpg",
- "trainings": 1
- },
- {
- "id": 2053,
- "name": "№2053 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.919004",
- "latitude": "55.782379",
- "address": "Александровская улица, 2",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/383.jpg",
- "trainings": 3
- },
- {
- "id": 2054,
- "name": "№2054 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.957873",
- "latitude": "55.792039",
- "address": "Усадьба Пехра-Яковлевское",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/326.jpg",
- "trainings": 0
- },
- {
- "id": 2055,
- "name": "№2055 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.977505000000065",
- "latitude": "55.794581",
- "address": "улица Фадеева, 8",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/39376.jpg",
- "trainings": 8
- },
- {
- "id": 2056,
- "name": "№2056 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.211433",
- "latitude": "59.941817",
- "address": "Россия, Санкт-Петербург, улица Кораблестроителей, 18",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/22032014774.jpg",
- "trainings": 6
- },
- {
- "id": 2057,
- "name": "№2057 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.227356",
- "latitude": "59.945749",
- "address": "Россия, Санкт-Петербург, Наличная улица, 36к1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20032014766.jpg",
- "trainings": 3
- },
- {
- "id": 2058,
- "name": "№2058 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.525821",
- "latitude": "48.627424",
- "address": "вул.Ким",
- "city_id": 7385,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Безымянный51.JPG",
- "trainings": 0
- },
- {
- "id": 2059,
- "name": "№2059 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.318928",
- "latitude": "59.877332",
- "address": "Россия, Санкт-Петербург, Московский проспект, 145",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/14032014765.jpg",
- "trainings": 0
- },
- {
- "id": 2060,
- "name": "№2060 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.381578",
- "latitude": "59.927929",
- "address": "Санкт-Петербург, Херсонская 31",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/22032014773.jpg",
- "trainings": 2
- },
- {
- "id": 2061,
- "name": "№2061 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.547628",
- "latitude": "55.667942",
- "address": "Профсоюзная, д. 60",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_3066 small.jpg",
- "trainings": 1
- },
- {
- "id": 2062,
- "name": "№2062 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.533325",
- "latitude": "48.617973",
- "address": "ул.Пожарная",
- "city_id": 7385,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/SL371046.JPG",
- "trainings": 1
- },
- {
- "id": 2063,
- "name": "№2063 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.31763",
- "latitude": "59.876102",
- "address": "Россия, Санкт-Петербург, Благодатная улица, 22",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2403201480386.jpg",
- "trainings": 1
- },
- {
- "id": 2064,
- "name": "№2064 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.973442",
- "latitude": "55.798492",
- "address": "город Балашиха Шоссе Энтузиастов 53",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/DSC_0025.jpg",
- "trainings": 1
- },
- {
- "id": 2065,
- "name": "№2065 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.969464",
- "latitude": "43.293674",
- "address": "Большой Алматинский Канал им. Д. Кунаева",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/193.jpg",
- "trainings": 3
- },
- {
- "id": 2069,
- "name": "№2069 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.634496",
- "latitude": "55.784975",
- "address": "Москва, Проспект Мира, дом 55",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/image52.jpg",
- "trainings": 1
- },
- {
- "id": 2072,
- "name": "№2072 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.39904",
- "latitude": "59.837918",
- "address": "Россия, Санкт-Петербург, Будапештская улица, 98к1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/30032014806.jpg",
- "trainings": 1
- },
- {
- "id": 2073,
- "name": "№2073 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.401835",
- "latitude": "59.838381",
- "address": "Россия, Санкт-Петербург, Загребский бульвар, 23к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/30032014809.jpg",
- "trainings": 4
- },
- {
- "id": 2074,
- "name": "№2074 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.445968",
- "latitude": "50.467083",
- "address": "Киев, ул. Елены телеги 5",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/P1020770.JPG",
- "trainings": 1
- },
- {
- "id": 2075,
- "name": "№2075 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "53.1350584019674",
- "latitude": "52.441958652607944",
- "address": "г. Сорочинск, улица Карла Маркса",
- "city_id": 7380,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSCN6680.JPG",
- "trainings": 0
- },
- {
- "id": 2076,
- "name": "№2076 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.097084",
- "latitude": "47.84464",
- "address": "г.Запорожье, ул.12 апреля 78",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/03042014549.jpg",
- "trainings": 0
- },
- {
- "id": 2077,
- "name": "№2077 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.830449000000044",
- "latitude": "55.755148",
- "address": "м. Новогиреево, ул. Молостовых 14к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_0470[1].JPG",
- "trainings": 5
- },
- {
- "id": 2078,
- "name": "№2078 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.469737",
- "latitude": "56.005342",
- "address": "Московская область, г. Лобня, улица Иванищенко 1-а",
- "city_id": 73,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/123.JPG",
- "trainings": 2
- },
- {
- "id": 2079,
- "name": "№2079 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "55.973857",
- "latitude": "54.73029",
- "address": "г. Уфа, ул. Достоевского 154",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140405_170531.jpg",
- "trainings": 2
- },
- {
- "id": 2082,
- "name": "№2082 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.089948",
- "latitude": "55.824885",
- "address": "пр. Ямашева, 1",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140406_16211924.jpg",
- "trainings": 7
- },
- {
- "id": 2086,
- "name": "№2086 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "55.962616",
- "latitude": "54.734368",
- "address": "ул. Пархоменко 99а",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140407_164447.jpg",
- "trainings": 1
- },
- {
- "id": 2087,
- "name": "№2087 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "53.15975460000004",
- "latitude": "52.42550610000001",
- "address": "г. Сорочинск, Пионерская, 1.",
- "city_id": 7380,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSCN6690.JPG",
- "trainings": 0
- },
- {
- "id": 2088,
- "name": "№2088 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "53.13799419999998",
- "latitude": "52.4407401",
- "address": "г. Сорочинск, улица Карла Маркса",
- "city_id": 7380,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSCN6686.JPG",
- "trainings": 0
- },
- {
- "id": 2089,
- "name": "№2089 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.28641",
- "latitude": "47.856773",
- "address": "г.Запорожье, ул.Военстрой 84",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/10042014562.jpg",
- "trainings": 0
- },
- {
- "id": 2090,
- "name": "№2090 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "56.059436",
- "latitude": "54.815261",
- "address": "Кольцевая, 5/1",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC_0009.jpg",
- "trainings": 4
- },
- {
- "id": 2092,
- "name": "№2092 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.224413",
- "latitude": "59.944164",
- "address": "Россия, Санкт-Петербург, Матросская ул. 32 к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/12042014818.jpg",
- "trainings": 3
- },
- {
- "id": 2093,
- "name": "№2093 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.92310634734896",
- "latitude": "43.23283618938071",
- "address": "Бухар-Жырау Маркова",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140408_125613.jpg",
- "trainings": 1
- },
- {
- "id": 2094,
- "name": "№2094 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.605937",
- "latitude": "55.709144",
- "address": "2-й Верхний Михайловский проезд, 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140413_122401.jpg",
- "trainings": 0
- },
- {
- "id": 2095,
- "name": "№2095 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.612616",
- "latitude": "55.794668",
- "address": "Октябрьская улица, 69",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140413_125447.jpg",
- "trainings": 1
- },
- {
- "id": 2096,
- "name": "№2096 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.608006",
- "latitude": "55.795556",
- "address": "Стрелецкая 18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140413_130011.jpg",
- "trainings": 1
- },
- {
- "id": 2097,
- "name": "№2097 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.273973",
- "latitude": "53.996784",
- "address": "Минская обл., Минский р-н, г. Заславль, ул. Пионерская",
- "city_id": 7462,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140414_200606_1.jpg",
- "trainings": 2
- },
- {
- "id": 2098,
- "name": "№2098 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.439883",
- "latitude": "50.505778",
- "address": "пр-кт Правды 12-В",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2014-03-29 08.20.03.jpg",
- "trainings": 1
- },
- {
- "id": 2100,
- "name": "№2100 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.40463",
- "latitude": "55.818526",
- "address": "Исаковского",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-08-12-12-46-tzd.jpg",
- "trainings": 3
- },
- {
- "id": 2101,
- "name": "№2101 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.203468",
- "latitude": "59.847769",
- "address": "Россия, Санкт-Петербург, Петергофское шоссе, 5к1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/16042014831.jpg",
- "trainings": 1
- },
- {
- "id": 2102,
- "name": "№2102 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.226718",
- "latitude": "59.950804",
- "address": "Россия, Санкт-Петербург, Новосмоленская набережная, 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/13042014829.jpg",
- "trainings": 0
- },
- {
- "id": 2105,
- "name": "№2105 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.222631",
- "latitude": "59.941188",
- "address": "Россия, Санкт-Петербург, улица Нахимова д. 11",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/17042014834.jpg",
- "trainings": 4
- },
- {
- "id": 2106,
- "name": "№2106 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.211911",
- "latitude": "59.94092",
- "address": "Россия, Санкт-Петербург, Морская набережная, 15к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/19042014836.jpg",
- "trainings": 3
- },
- {
- "id": 2107,
- "name": "№2107 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.211537",
- "latitude": "59.952236",
- "address": "Россия, Санкт-Петербург, улица Кораблестроителей, 30к6",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/19042014846.jpg",
- "trainings": 0
- },
- {
- "id": 2108,
- "name": "№2108 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.216793999999936",
- "latitude": "59.956546",
- "address": "Россия, Санкт-Петербург, Капитанская улица, 5",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/19042014849.jpg",
- "trainings": 10
- },
- {
- "id": 2109,
- "name": "№2109 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.557882",
- "latitude": "55.664471",
- "address": "Новочеремушкинская улица, 62к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_3293.JPG",
- "trainings": 2
- },
- {
- "id": 2110,
- "name": "№2110 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.638099",
- "latitude": "55.734901",
- "address": "улица Бахрушина, 17с3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_3215.JPG",
- "trainings": 1
- },
- {
- "id": 2113,
- "name": "№2113 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "135.284722",
- "latitude": "43.744444",
- "address": "Россия, Приморский край, Ольгинский район, п.Ольга, ул.Арсеньева, 11",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_2887.JPG",
- "trainings": 1
- },
- {
- "id": 2114,
- "name": "№2114 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.11878",
- "latitude": "55.594209",
- "address": "Московская область, город Жуковский, улица Маяковского, д 15",
- "city_id": 41,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Красота1.jpg",
- "trainings": 2
- },
- {
- "id": 2115,
- "name": "№2115 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.093494",
- "latitude": "55.601157",
- "address": "Московская область, Жуковский, Дугина, 16",
- "city_id": 41,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1_Турники.jpg",
- "trainings": 2
- },
- {
- "id": 2116,
- "name": "№2116 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.8935787677765",
- "latitude": "43.2174075284481",
- "address": "Розыбакиева утепова",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20140420_110926.jpg",
- "trainings": 2
- },
- {
- "id": 2117,
- "name": "№2117 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.510369",
- "latitude": "55.80336",
- "address": "Ленинградский пр., 75",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/фотография94.JPG",
- "trainings": 1
- },
- {
- "id": 2118,
- "name": "№2118 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.691761",
- "latitude": "55.756951",
- "address": "1-й Краснокурсантский проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/19042014515.jpg",
- "trainings": 5
- },
- {
- "id": 2119,
- "name": "№2119 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.815646",
- "latitude": "64.566063",
- "address": "ул. Георгия Седова, д.3",
- "city_id": 7383,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_2993.JPG",
- "trainings": 1
- },
- {
- "id": 2120,
- "name": "№2120 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.788073",
- "latitude": "44.700305",
- "address": "г. Новороссийск, ул. Набережная им. Адмирала Серебрякова 55",
- "city_id": 88,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC01673.JPG",
- "trainings": 3
- },
- {
- "id": 2121,
- "name": "№2121 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "47.891239",
- "latitude": "56.63951",
- "address": "Йошкар-Ола, ул.Кремлевская, д.24",
- "city_id": 571,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/12326.jpg",
- "trainings": 1
- },
- {
- "id": 2122,
- "name": "№2122 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "47.906509",
- "latitude": "56.627602",
- "address": "Йошкар-Ола, Ленинский проспект",
- "city_id": 571,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/12327.jpg",
- "trainings": 0
- },
- {
- "id": 2123,
- "name": "№2123 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "76.954172",
- "latitude": "43.336559",
- "address": "Улица им. Рихарда Зорге",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20140421_155705.jpg",
- "trainings": 1
- },
- {
- "id": 2124,
- "name": "№2124 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.906481",
- "latitude": "55.721308",
- "address": "г. Москва, ул. Лухмановская, д. 26",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/192683-1.jpg",
- "trainings": 6
- },
- {
- "id": 2125,
- "name": "№2125 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.94192",
- "latitude": "55.070076",
- "address": "Богдана Хмельницкого 19",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140425_161431.jpg",
- "trainings": 1
- },
- {
- "id": 2126,
- "name": "№2126 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.162792",
- "latitude": "47.885816",
- "address": "г.Запорожье, ул.Историческая 20\\20а",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/25042014584.jpg",
- "trainings": 0
- },
- {
- "id": 2127,
- "name": "№2127 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.773163",
- "latitude": "55.689374",
- "address": "Москва, ул. Заречье",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140425_175559.jpg",
- "trainings": 4
- },
- {
- "id": 2128,
- "name": "№2128 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.032112",
- "latitude": "47.817037",
- "address": "ул. Жукова 14",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_2014042522683.jpg",
- "trainings": 1
- },
- {
- "id": 2129,
- "name": "№2129 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.033794",
- "latitude": "47.818862",
- "address": "Новгородская улица",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140425924727.jpg",
- "trainings": 1
- },
- {
- "id": 2130,
- "name": "№2130 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.62466",
- "latitude": "55.769835",
- "address": "Трубная 17",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/20140610_120010 (1024x768).jpg",
- "trainings": 5
- },
- {
- "id": 2134,
- "name": "№2134 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.328872",
- "latitude": "59.872421",
- "address": "город Санкт-Петербург, Санкт-Петербург, ул. Севастьянова д 15",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/27042014858.jpg",
- "trainings": 0
- },
- {
- "id": 2135,
- "name": "№2135 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.182426",
- "latitude": "47.784916",
- "address": "г.Запорожье, ул.Новокузнецкая 5",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/29042014590.jpg",
- "trainings": 0
- },
- {
- "id": 2136,
- "name": "№2136 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.293625",
- "latitude": "55.948944",
- "address": "мкр.Сходня, Вишнёвая 12",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/workout_ (20).jpg",
- "trainings": 4
- },
- {
- "id": 2137,
- "name": "№2137 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.94478000000003",
- "latitude": "55.056372",
- "address": "Кропоткина 132/2",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/25085.jpg",
- "trainings": 0
- },
- {
- "id": 2138,
- "name": "№2138 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.157487",
- "latitude": "55.585392",
- "address": "Жуковский / пгт Кратово, ул.Молодцова 5, Кратовское озеро",
- "city_id": 41,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC_0342.jpg",
- "trainings": 1
- },
- {
- "id": 2139,
- "name": "№2139 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.920707",
- "latitude": "47.399341",
- "address": "ул. Олега Кошевого, 12А",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2014-05-04 21.40.54.jpg",
- "trainings": 0
- },
- {
- "id": 2141,
- "name": "№2141 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.449385",
- "latitude": "59.914218",
- "address": "Улица Коллонтай 5/1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/image53.jpg",
- "trainings": 7
- },
- {
- "id": 2142,
- "name": "№2142 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "36.162334",
- "latitude": "49.948806",
- "address": "пр.Ильича 77",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/5rkNO_MyPYc.jpg",
- "trainings": 2
- },
- {
- "id": 2144,
- "name": "№2144 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.226997",
- "latitude": "59.946814",
- "address": "Россия, Санкт-Петербург, Наличная улица, 36к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/06052014867.jpg",
- "trainings": 0
- },
- {
- "id": 2145,
- "name": "№2145 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.231777",
- "latitude": "59.949829",
- "address": "Россия, Санкт-Петербург, Наличная улица, 40к1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/04052014863.jpg",
- "trainings": 2
- },
- {
- "id": 2146,
- "name": "№2146 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.254702",
- "latitude": "59.936199",
- "address": "Россия, Санкт-Петербург, сад Василеостровец",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/07052014868[1].jpg",
- "trainings": 5
- },
- {
- "id": 2147,
- "name": "№2147 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.259727",
- "latitude": "49.977252",
- "address": "м. Спортивная",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/CQvlNZ4mkCM.jpg",
- "trainings": 0
- },
- {
- "id": 2148,
- "name": "№2148 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.827894",
- "latitude": "55.423895",
- "address": "разъезд 409-й км, г. Арзамас, Нижегородская обл., Россия 607220",
- "city_id": 5,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Arzamas (65).JPG",
- "trainings": 1
- },
- {
- "id": 2156,
- "name": "№2156 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.705176",
- "latitude": "60.301063",
- "address": "Россия, Ленинградская область, Всеволожский район, садовое товарищество Балтиец",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/дачаворкаутплощадка017jpg.jpg",
- "trainings": 2
- },
- {
- "id": 2160,
- "name": "№2160 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.497133",
- "latitude": "55.681015",
- "address": "Москва, Удальцова 24",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_3477.JPG",
- "trainings": 0
- },
- {
- "id": 2162,
- "name": "№2162 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "48.389922",
- "latitude": "54.343519",
- "address": "Ульяновск Симбирская 45",
- "city_id": 575,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/KXWDnxx2GDg.jpg",
- "trainings": 2
- },
- {
- "id": 2165,
- "name": "№2165 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.496346472908044",
- "latitude": "55.78122626090386",
- "address": "3-я Хорошевская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 8,
- "preview": "https://workout.su/uploads/userfiles/image5136.jpg",
- "trainings": 7
- },
- {
- "id": 2166,
- "name": "№2166 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.157863",
- "latitude": "59.84843",
- "address": "Россия, Санкт-Петербург, Петергофское шоссе, 43",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/18052014883.jpg",
- "trainings": 3
- },
- {
- "id": 2167,
- "name": "№2167 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.178902",
- "latitude": "59.852162",
- "address": "Россия, Санкт-Петербург, улица Доблести, 28к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/18052014885.jpg",
- "trainings": 1
- },
- {
- "id": 2168,
- "name": "№2168 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.211411",
- "latitude": "47.789111",
- "address": "г.Запорожье, ул.Магара 1",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/08052014612.jpg",
- "trainings": 0
- },
- {
- "id": 2171,
- "name": "№2171 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.086924",
- "latitude": "59.730909",
- "address": "Россия, Санкт-Петербург, Красное Село, проспект Ленина, 112",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/22052014886.jpg",
- "trainings": 0
- },
- {
- "id": 2172,
- "name": "№2172 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.499447",
- "latitude": "55.68674",
- "address": "м. Проспект Вернадского, парк 50-летия Октября",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/2SUj_HEL0kI.jpg",
- "trainings": 20
- },
- {
- "id": 2174,
- "name": "№2174 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.680292",
- "latitude": "55.755074",
- "address": "Россия, Москва, Волочаевская улица, 18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140525_144752.jpg",
- "trainings": 3
- },
- {
- "id": 2175,
- "name": "№2175 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.690521",
- "latitude": "55.7674",
- "address": "головинская набережная парк ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 14,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140525_214927.jpg",
- "trainings": 15
- },
- {
- "id": 2179,
- "name": "№2179 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.775917",
- "latitude": "55.702833",
- "address": "волгоградский проспект д.110 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140526_175218 (1024x768)58.jpg",
- "trainings": 0
- },
- {
- "id": 2182,
- "name": "№2182 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "48.389275",
- "latitude": "54.351176",
- "address": "Северный Венец, 32 Ленинский район, Ульяновск",
- "city_id": 575,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140529_191029.jpg",
- "trainings": 3
- },
- {
- "id": 2183,
- "name": "№2183 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.215189",
- "latitude": "47.838586",
- "address": "г.Запорожье, ул.Цитрусовая 1",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/27052014663.jpg",
- "trainings": 0
- },
- {
- "id": 2184,
- "name": "№2184 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.579411",
- "latitude": "55.720122",
- "address": "3-я фрунзенская 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/31052014331.jpg",
- "trainings": 0
- },
- {
- "id": 2187,
- "name": "№2187 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "23.734412",
- "latitude": "52.103036",
- "address": "ул. Я.Купалы, 20",
- "city_id": 371,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/72608765.jpg",
- "trainings": 0
- },
- {
- "id": 2188,
- "name": "№2188 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.920339",
- "latitude": "55.021272",
- "address": "Советская 4",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140603_17073088.jpg",
- "trainings": 3
- },
- {
- "id": 2191,
- "name": "№2191 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.098438",
- "latitude": "47.863585",
- "address": "г.Запорожье, ул.40 лет Советской Украины 2",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/04062014679.jpg",
- "trainings": 0
- },
- {
- "id": 2192,
- "name": "№2192 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.68499803503801",
- "latitude": "55.86897610092898",
- "address": "Москва ул.Менжинского д.6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 17,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140605_17054134.jpg",
- "trainings": 18
- },
- {
- "id": 2193,
- "name": "№2193 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "35.893024999999966",
- "latitude": "56.867807",
- "address": "Тверь, Территория городского пляжа",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/IMG00057.jpg",
- "trainings": 5
- },
- {
- "id": 2194,
- "name": "№2194 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.592548",
- "latitude": "55.776971",
- "address": "Москва, Миусская площадь, Белорусская, Новослободская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_3587.JPG",
- "trainings": 5
- },
- {
- "id": 2196,
- "name": "№2196 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.978084",
- "latitude": "55.0363",
- "address": "Бориса Богаткова 230",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140608_132450.jpg",
- "trainings": 1
- },
- {
- "id": 2199,
- "name": "№2199 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "50.821331",
- "latitude": "61.658872",
- "address": "Город Сыктывкар, Мичуринский парк, около Северной Олимпии.",
- "city_id": 132,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/A3Cllu6D_6M.jpg",
- "trainings": 2
- },
- {
- "id": 2200,
- "name": "№2200 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "50.797335",
- "latitude": "61.653839",
- "address": "Город Сыктывкар, ул.Морозова д.100",
- "city_id": 132,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WGMuhe3Bo0I.jpg",
- "trainings": 1
- },
- {
- "id": 2202,
- "name": "№2202 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "50.807815",
- "latitude": "61.652082",
- "address": "Город Сыктывкар, ул.Димитрова д.5.",
- "city_id": 132,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Cmw8LFbCqXE.jpg",
- "trainings": 1
- },
- {
- "id": 2203,
- "name": "№2203 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "32.01924600000007",
- "latitude": "46.97239",
- "address": "николаев, улица котельная 1а",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMGP4333.jpg",
- "trainings": 1
- },
- {
- "id": 2204,
- "name": "№2204 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.896133",
- "latitude": "55.038587",
- "address": "Ленина 77",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140608_14155428.jpg",
- "trainings": 0
- },
- {
- "id": 2205,
- "name": "№2205 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.633943",
- "latitude": "53.055379",
- "address": "Карталы",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/DSCF7580.JPG",
- "trainings": 2
- },
- {
- "id": 2206,
- "name": "№2206 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.012065",
- "latitude": "56.506447",
- "address": "Россия, Томск, Ивана Черных, 1",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140607_201023.jpg",
- "trainings": 0
- },
- {
- "id": 2207,
- "name": "№2207 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "85.012872",
- "latitude": "56.506758",
- "address": "Россия, Томск, Ивана Черных, 3",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140607_201241.jpg",
- "trainings": 0
- },
- {
- "id": 2208,
- "name": "№2208 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.013738",
- "latitude": "56.507095",
- "address": "Россия, Томск, Ивана Черных, 5",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140607_201416.jpg",
- "trainings": 0
- },
- {
- "id": 2209,
- "name": "№2209 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "85.032061",
- "latitude": "56.510088",
- "address": "Россия, Томск, Иркутский тракт, 100",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140605_18352573.jpg",
- "trainings": 0
- },
- {
- "id": 2210,
- "name": "№2210 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "85.031768",
- "latitude": "56.510906",
- "address": "Россия, Томск, Иркутский тракт, 104",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140605_182927.jpg",
- "trainings": 0
- },
- {
- "id": 2211,
- "name": "№2211 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.033509",
- "latitude": "56.510414",
- "address": "Россия, Томск, Иркутский тракт 104a",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140605_183137.jpg",
- "trainings": 0
- },
- {
- "id": 2212,
- "name": "№2212 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "85.030826",
- "latitude": "56.510285",
- "address": "Россия, Томск, Иркутский тракт 98",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140605_183802.jpg",
- "trainings": 0
- },
- {
- "id": 2213,
- "name": "№2213 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.026014",
- "latitude": "56.509462",
- "address": "Россия, Томск, Карский пер, 33",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140605_18512385.jpg",
- "trainings": 0
- },
- {
- "id": 2214,
- "name": "№2214 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "85.013997",
- "latitude": "56.506801",
- "address": "Россия, Томск, Карский пер, 4",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140607_201731.jpg",
- "trainings": 0
- },
- {
- "id": 2215,
- "name": "№2215 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "85.011211",
- "latitude": "56.506579",
- "address": "Россия, Томск, Мичурина, 11",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140607_200723.jpg",
- "trainings": 0
- },
- {
- "id": 2216,
- "name": "№2216 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "85.015708",
- "latitude": "56.509517",
- "address": "Россия, Томск, Новосибирскя, 35",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140606_161444.jpg",
- "trainings": 1
- },
- {
- "id": 2217,
- "name": "№2217 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "85.018101",
- "latitude": "56.511172",
- "address": "Россия, Томск, Новосибирскя, 39",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20140606_152510.jpg",
- "trainings": 0
- },
- {
- "id": 2218,
- "name": "№2218 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "85.013327",
- "latitude": "56.510559",
- "address": "Россия, Томск, Новосибирскя, 8",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140606_162311.jpg",
- "trainings": 0
- },
- {
- "id": 2220,
- "name": "№2220 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.029695",
- "latitude": "56.510288",
- "address": "Россия, Томск, Суворова, 3",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140605_184243.jpg",
- "trainings": 0
- },
- {
- "id": 2221,
- "name": "№2221 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.026835",
- "latitude": "56.50966",
- "address": "Россия, Томск, Суворова, 6",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140605_18491799.jpg",
- "trainings": 0
- },
- {
- "id": 2222,
- "name": "№2222 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.185421",
- "latitude": "47.836645",
- "address": "г.Запорожье, ул. Криворожская 33",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/10062014691.jpg",
- "trainings": 0
- },
- {
- "id": 2223,
- "name": "№2223 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "36.335983",
- "latitude": "49.959629",
- "address": "Харьков, ул. Харьковских Дивизий, 7/3",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140614_065323.jpg",
- "trainings": 1
- },
- {
- "id": 2224,
- "name": "№2224 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.326081",
- "latitude": "49.960307",
- "address": "г. Харьков, ул. Харьковских Дивизий, 12/21",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140614_171925.jpg",
- "trainings": 0
- },
- {
- "id": 2225,
- "name": "№2225 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "32.007565",
- "latitude": "46.96744",
- "address": "николаев, ул.потемкинская 185",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140615_071217.jpg",
- "trainings": 0
- },
- {
- "id": 2226,
- "name": "№2226 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "32.006122",
- "latitude": "46.966913",
- "address": "ул. Потемкинская 119, возле Морского лицея",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140615_071333.jpg",
- "trainings": 0
- },
- {
- "id": 2227,
- "name": "№2227 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "31.999248",
- "latitude": "46.982852",
- "address": "Парк Победы, пляж Стрелка",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140615_073348.jpg",
- "trainings": 0
- },
- {
- "id": 2228,
- "name": "№2228 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "31.99418",
- "latitude": "46.97447",
- "address": "ул. Советская 1",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140615_075315.jpg",
- "trainings": 0
- },
- {
- "id": 2229,
- "name": "№2229 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.991984",
- "latitude": "46.976993",
- "address": "ул. Советская 1",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140615_075557.jpg",
- "trainings": 0
- },
- {
- "id": 2230,
- "name": "№2230 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "32.016803",
- "latitude": "46.966546",
- "address": "ул. Проспект Ленина 162",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140615_082444.jpg",
- "trainings": 0
- },
- {
- "id": 2231,
- "name": "№2231 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "32.018697",
- "latitude": "46.966476",
- "address": "ул. Терновская 13",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140615_082719.jpg",
- "trainings": 0
- },
- {
- "id": 2232,
- "name": "№2232 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "32.019643",
- "latitude": "46.967382",
- "address": "ул. Колодезная 35",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140615_083017.jpg",
- "trainings": 0
- },
- {
- "id": 2233,
- "name": "№2233 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "32.015071",
- "latitude": "46.966203",
- "address": "ул. Колодезная 5а",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140615_082221.jpg",
- "trainings": 0
- },
- {
- "id": 2234,
- "name": "№2234 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.257245",
- "latitude": "60.002598",
- "address": "Гаккелевская 25к1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140613_165734.jpg",
- "trainings": 2
- },
- {
- "id": 2236,
- "name": "№2236 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.315441",
- "latitude": "49.958881",
- "address": "просп. Маршала Жукова, 2, Харьков, Харківська, Украина",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140616_140905.jpg",
- "trainings": 1
- },
- {
- "id": 2237,
- "name": "№2237 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.573388",
- "latitude": "55.695869",
- "address": "Ферсмана д3к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0908.JPG",
- "trainings": 2
- },
- {
- "id": 2238,
- "name": "№2238 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.568577",
- "latitude": "55.694456",
- "address": "вавилова 39а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_0911.JPG",
- "trainings": 2
- },
- {
- "id": 2239,
- "name": "№2239 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.642199",
- "latitude": "55.777894",
- "address": "Грохольский пер. 27",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0912.JPG",
- "trainings": 0
- },
- {
- "id": 2240,
- "name": "№2240 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.635216000000014",
- "latitude": "55.761587",
- "address": "Кривоколенный пер.,10с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 13,
- "preview": "https://workout.su/uploads/userfiles/IMG_0913.JPG",
- "trainings": 6
- },
- {
- "id": 2241,
- "name": "№2241 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.74013",
- "latitude": "55.683105",
- "address": "Кубанская 10 корп.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20140616_143452 (1024x768).jpg",
- "trainings": 1
- },
- {
- "id": 2242,
- "name": "№2242 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.662806",
- "latitude": "55.742001",
- "address": "Большой факельный пер. 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20140617_092936 (1024x768).jpg",
- "trainings": 1
- },
- {
- "id": 2245,
- "name": "№2245 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.656938",
- "latitude": "55.652299",
- "address": "Москва, Коломенское",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/67Esoz9NZuU.jpg",
- "trainings": 5
- },
- {
- "id": 2247,
- "name": "№2247 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.574776",
- "latitude": "55.691443",
- "address": "Проспект 60летия октября 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image82.jpg",
- "trainings": 0
- },
- {
- "id": 2250,
- "name": "№2250 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.600999",
- "latitude": "55.091815",
- "address": "Обнинск, ул. Горького 60",
- "city_id": 796,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/ek_4jZkRy7w.jpg",
- "trainings": 4
- },
- {
- "id": 2252,
- "name": "№2252 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.488542",
- "latitude": "55.634033",
- "address": "Москва, Теплый стан, ул Академика Виноградова Парк Теплый стан",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_3732.JPG",
- "trainings": 1
- },
- {
- "id": 2253,
- "name": "№2253 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.52338199999997",
- "latitude": "55.623843",
- "address": "Москва, Теплый стан, Санаторная Аллея",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_3758.JPG",
- "trainings": 3
- },
- {
- "id": 2258,
- "name": "№2258 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.283746",
- "latitude": "60.001749",
- "address": "Серебристый бульвар, д.9.к.1/ Богатырский д.7, к.5",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140623_170411.jpg",
- "trainings": 2
- },
- {
- "id": 2259,
- "name": "№2259 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.682215",
- "latitude": "55.699006",
- "address": "2-й южнопортовый проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20140623_202459 (1024x768).jpg",
- "trainings": 11
- },
- {
- "id": 2261,
- "name": "№2261 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "34.297741",
- "latitude": "55.203178",
- "address": "Пер.загородный",
- "city_id": 7395,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/CBvIZa47nDI81.jpg",
- "trainings": 0
- },
- {
- "id": 2262,
- "name": "№2262 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.558586",
- "latitude": "55.669209",
- "address": "Москва, Гарибальди 36, Новые черемушки",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_3815.JPG",
- "trainings": 0
- },
- {
- "id": 2263,
- "name": "№2263 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.087894",
- "latitude": "68.905938",
- "address": "ул. Щербакова, 6",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2014-05-11 19.33.26.gif",
- "trainings": 0
- },
- {
- "id": 2264,
- "name": "№2264 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.772847",
- "latitude": "55.927623",
- "address": "141013, Московская область, г. Мытищи, ул. Силикатная, д. 12",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/vark_03.jpg",
- "trainings": 5
- },
- {
- "id": 2265,
- "name": "№2265 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.745923768539456",
- "latitude": "55.9092701701569",
- "address": "ул. Мира, дом 2а",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140705_174432.jpg",
- "trainings": 11
- },
- {
- "id": 2266,
- "name": "№2266 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.129699",
- "latitude": "55.580108",
- "address": "Парк культуры и отдыха, Жуковский, Московская область, Россия",
- "city_id": 41,
- "country_id": 17,
- "comments_count": 8,
- "preview": "https://workout.su/uploads/userfiles/image-12-05-16-18-295349.jpeg",
- "trainings": 6
- },
- {
- "id": 2268,
- "name": "№2268 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.195742",
- "latitude": "47.787893",
- "address": "г.Запорожье, ул.Калинина 90",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/01072014708.jpg",
- "trainings": 0
- },
- {
- "id": 2269,
- "name": "№2269 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.196252",
- "latitude": "47.788942",
- "address": "г.Запорожье, ул.Культурная 101",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/01072014707.jpg",
- "trainings": 0
- },
- {
- "id": 2270,
- "name": "№2270 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.210504",
- "latitude": "47.795154",
- "address": "г.Запорожье, ул.Сенная 1",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 9,
- "preview": "https://workout.su/uploads/userfiles/01072014716.jpg",
- "trainings": 1
- },
- {
- "id": 2271,
- "name": "№2271 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "48.003079",
- "latitude": "46.359729",
- "address": "Пушкина, 2",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2014-06-23 17.52.54.jpg",
- "trainings": 0
- },
- {
- "id": 2273,
- "name": "№2273 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.712586",
- "latitude": "54.609542",
- "address": "ул. Новаторов",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0189.jpg",
- "trainings": 3
- },
- {
- "id": 2274,
- "name": "№2274 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "87.11281099999997",
- "latitude": "53.760129",
- "address": "ул. Хитарова,22",
- "city_id": 568,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2014-07-05 15.19.49.jpg",
- "trainings": 1
- },
- {
- "id": 2275,
- "name": "№2275 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.530522",
- "latitude": "53.91574",
- "address": "Минск Гастело 11",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140703_10121816.jpg",
- "trainings": 1
- },
- {
- "id": 2276,
- "name": "№2276 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "86.12875699999995",
- "latitude": "55.343055",
- "address": "ПКиО Комсомольский, возле центральной площадки парка",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20140705_110117_BEST.jpg",
- "trainings": 2
- },
- {
- "id": 2277,
- "name": "№2277 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "85.037779",
- "latitude": "56.502859",
- "address": "Россия, Томск, Бирюкова, 22",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140702_11241746.jpg",
- "trainings": 1
- },
- {
- "id": 2278,
- "name": "№2278 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "84.946097",
- "latitude": "56.451782",
- "address": "Россия, Томск, Лагерный сад",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20140706_141802.jpg",
- "trainings": 3
- },
- {
- "id": 2282,
- "name": "№2282 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.578419",
- "latitude": "55.696494",
- "address": "Москва, проспект 50-летия октября",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_3837.JPG",
- "trainings": 0
- },
- {
- "id": 2284,
- "name": "№2284 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "131.922933",
- "latitude": "43.171022",
- "address": "ул.Русская, 43",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0490.JPG",
- "trainings": 1
- },
- {
- "id": 2286,
- "name": "№2286 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.137303",
- "latitude": "47.841512",
- "address": "г.Запорожье, Проспект Ленина 170",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/10072014732.jpg",
- "trainings": 0
- },
- {
- "id": 2287,
- "name": "№2287 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.6909394996408",
- "latitude": "55.800610094392916",
- "address": "Олений вал д.22к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140712_064513.jpg",
- "trainings": 5
- },
- {
- "id": 2288,
- "name": "№2288 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "28.581346",
- "latitude": "49.89592",
- "address": "Ул. Шевченко, 5",
- "city_id": 7379,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140705_175938.jpg",
- "trainings": 0
- },
- {
- "id": 2289,
- "name": "№2289 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "135.113748",
- "latitude": "48.451758",
- "address": "Россия, Хабаровск, ул.Путевая 2",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2014-07-06 11.35.22.jpg",
- "trainings": 0
- },
- {
- "id": 2290,
- "name": "№2290 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "135.106232",
- "latitude": "48.448323",
- "address": "Россия, Хабаровск, Радищева,8д",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2014-07-06 11.59.54.jpg",
- "trainings": 0
- },
- {
- "id": 2291,
- "name": "№2291 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "135.108641",
- "latitude": "48.453112",
- "address": "Россия, Хабаровск, ул.Королева 3",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2014-07-06 11.49.44.jpg",
- "trainings": 0
- },
- {
- "id": 2292,
- "name": "№2292 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "135.106953",
- "latitude": "48.446617",
- "address": "Россия, Хабаровск, пер. Шимановского, 2а",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2014-07-08 15.00.50.jpg",
- "trainings": 0
- },
- {
- "id": 2293,
- "name": "№2293 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "135.108186",
- "latitude": "48.440456",
- "address": "Россия, Хабаровск, пер. Балтийский 4",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2014-07-11 16.14.30.jpg",
- "trainings": 0
- },
- {
- "id": 2294,
- "name": "№2294 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "135.108127",
- "latitude": "48.441544",
- "address": "Россия, Хабаровск, пер. Балтийский 5",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2014-07-11 16.32.31.jpg",
- "trainings": 0
- },
- {
- "id": 2295,
- "name": "№2295 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "135.102285",
- "latitude": "48.444055",
- "address": "Россия, Хабаровск, ул. Пионерская 50",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2014-07-11 16.48.44.jpg",
- "trainings": 0
- },
- {
- "id": 2296,
- "name": "№2296 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "135.107649",
- "latitude": "48.420828",
- "address": "Россия, Хабаровск, ул. Ангарская 3",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2014-07-11 15.17.41.jpg",
- "trainings": 0
- },
- {
- "id": 2297,
- "name": "№2297 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "135.110396",
- "latitude": "48.430683",
- "address": "Россия, Хабаровск, ул. Краснореченская, 161",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2014-07-11 15.50.40.jpg",
- "trainings": 0
- },
- {
- "id": 2298,
- "name": "№2298 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "135.107911",
- "latitude": "48.444708",
- "address": "Россия, Хабаровск, ул. Кубяка 16",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2014-07-11 16.41.51.jpg",
- "trainings": 0
- },
- {
- "id": 2299,
- "name": "№2299 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "135.09937",
- "latitude": "48.457356",
- "address": "Россия, Хабаровск, ул. Волочаевская 1",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2014-07-08 15.30.08.jpg",
- "trainings": 0
- },
- {
- "id": 2300,
- "name": "№2300 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "135.103778",
- "latitude": "48.41358",
- "address": "Россия, Хабаровск, пер. Иртышский 6",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2014-07-13 15.35.32.jpg",
- "trainings": 0
- },
- {
- "id": 2301,
- "name": "№2301 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.567726",
- "latitude": "55.681401",
- "address": "Москва, профсоюзная ул. 11/11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_3920.JPG",
- "trainings": 1
- },
- {
- "id": 2302,
- "name": "№2302 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "135.112435",
- "latitude": "48.457938",
- "address": "Россия, Хабаровск, ул. Юности, 32",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2014-07-14 10.46.50.jpg",
- "trainings": 0
- },
- {
- "id": 2303,
- "name": "№2303 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "135.090537",
- "latitude": "48.485017",
- "address": "Россия, Хабаровск, ул. Ленина,85",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2014-07-14 12.16.04.jpg",
- "trainings": 0
- },
- {
- "id": 2304,
- "name": "№2304 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "135.086182",
- "latitude": "48.469578",
- "address": "Россия, Хабаровск, ул. Шеронова 8",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2014-07-14 11.15.32.jpg",
- "trainings": 0
- },
- {
- "id": 2305,
- "name": "№2305 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "135.08508",
- "latitude": "48.468849",
- "address": "Россия, Хабаровск, ул. Шеронова 10",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2014-07-14 11.27.31.jpg",
- "trainings": 0
- },
- {
- "id": 2308,
- "name": "№2308 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.346771",
- "latitude": "59.980352",
- "address": "ст.м.Лесная, Лесной проспект 37",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/GNNWuAJwHLA21.jpg",
- "trainings": 0
- },
- {
- "id": 2309,
- "name": "№2309 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.378525999999965",
- "latitude": "59.87376",
- "address": "ст.м.Международная, ул.Бухарестская 72к1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/LxjRLwQjd4g.jpg",
- "trainings": 10
- },
- {
- "id": 2310,
- "name": "№2310 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.37664",
- "latitude": "59.944853",
- "address": "ст.м.Чернышевская, Таврический сад",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/aO3L9i5D0_U.jpg",
- "trainings": 2
- },
- {
- "id": 2313,
- "name": "№2313 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.345857",
- "latitude": "59.972982",
- "address": "ст.м.Выборгская, Тобольская 36к1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/74C-UicnDmc.jpg",
- "trainings": 0
- },
- {
- "id": 2314,
- "name": "№2314 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.337392",
- "latitude": "59.974316",
- "address": "ст.м.Выборгская, Большой Сампсониевский проспект 62",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6AkxFlTlkEU.jpg",
- "trainings": 0
- },
- {
- "id": 2315,
- "name": "№2315 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.262444",
- "latitude": "59.983238",
- "address": "ст.м.Старая деревня, Елагин остров",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/fMq9P-IDS5M-1.jpg",
- "trainings": 4
- },
- {
- "id": 2316,
- "name": "№2316 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.8264622257484",
- "latitude": "55.917437788264294",
- "address": "Октябрьская улица, 12 стадион Вымпел у Четырёхзального корпуса и Хоккейного зала и Бассейна",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 10,
- "preview": "https://workout.su/uploads/userfiles/IMAG0714.jpg",
- "trainings": 10
- },
- {
- "id": 2317,
- "name": "№2317 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.338232",
- "latitude": "59.927787",
- "address": "ст.м.Владимирская, ул.Ломоносова 14",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/TJj3iVf95nU.jpg",
- "trainings": 5
- },
- {
- "id": 2319,
- "name": "№2319 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.354012",
- "latitude": "59.933364",
- "address": "невский проспект 92 / маяковского 8",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/aLnEpgdqjPY.jpg",
- "trainings": 2
- },
- {
- "id": 2320,
- "name": "№2320 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.348481",
- "latitude": "59.914432",
- "address": "ст.м.Обводный канал, Лиговский проспект 161",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9CYfogNHohA.jpg",
- "trainings": 0
- },
- {
- "id": 2321,
- "name": "№2321 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.352427",
- "latitude": "59.910847",
- "address": "ст.м.Обводный канал, ул.Тамбовская 39",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/TulIwdywOv8.jpg",
- "trainings": 0
- },
- {
- "id": 2322,
- "name": "№2322 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.357016",
- "latitude": "59.918193",
- "address": "ст.м.Лиговский проспект, ул.Черняховского 16",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/mnwDOqwCyak.jpg",
- "trainings": 0
- },
- {
- "id": 2323,
- "name": "№2323 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.357926",
- "latitude": "59.919569",
- "address": "ст.м.Лиговский проспект, ул.Черняховского 28",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ykDomsygn_I.jpg",
- "trainings": 1
- },
- {
- "id": 2324,
- "name": "№2324 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.360025",
- "latitude": "59.919451",
- "address": "ст.м.Лиговский проспект, ул.Черняховского 49а",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Y49Aw1uc1g0.jpg",
- "trainings": 3
- },
- {
- "id": 2325,
- "name": "№2325 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.352043",
- "latitude": "59.92295",
- "address": "ст.м.Владимирская, ул.Коломенская 31",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 13,
- "preview": "https://workout.su/uploads/userfiles/eszotTxvTAs.jpg",
- "trainings": 6
- },
- {
- "id": 2326,
- "name": "№2326 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.345581",
- "latitude": "59.916628",
- "address": "ст.м.Обводный канал, Набережная Обводного канала 85",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/TST3PeFTj4E.jpg",
- "trainings": 1
- },
- {
- "id": 2327,
- "name": "№2327 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.35088",
- "latitude": "59.919985",
- "address": "ст.м.Обводный канал, ул.Заслонова 6",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9Tbkj3O-PFQ.jpg",
- "trainings": 1
- },
- {
- "id": 2328,
- "name": "№2328 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.343518",
- "latitude": "59.918093",
- "address": "ст.м.Обводный канал, ул.Звенигородская 30а",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/CQWhWpwSHVs.jpg",
- "trainings": 1
- },
- {
- "id": 2329,
- "name": "№2329 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.701306",
- "latitude": "47.249588",
- "address": "г. Токмак, парк ",
- "city_id": 7398,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140710_08331073.jpg",
- "trainings": 0
- },
- {
- "id": 2331,
- "name": "№2331 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.107307",
- "latitude": "45.262331",
- "address": "ул. Отдельская Северный парк",
- "city_id": 7399,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/площадка1.jpg",
- "trainings": 4
- },
- {
- "id": 2332,
- "name": "№2332 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.703975",
- "latitude": "47.258478",
- "address": "г.Токмак, ул.Гоголя 49",
- "city_id": 7398,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/01052014596.jpg",
- "trainings": 0
- },
- {
- "id": 2335,
- "name": "№2335 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "69.277862",
- "latitude": "41.3793",
- "address": "Узбекистан, ташкент. Юнус-абадский район, 14 кв. между 64 домом и 30а.",
- "city_id": 470,
- "country_id": 21,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140716_00034176.jpeg",
- "trainings": 2
- },
- {
- "id": 2336,
- "name": "№2336 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.042527",
- "latitude": "52.903655",
- "address": "г.Жлобин, мкр.16, СШ №10",
- "city_id": 7400,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/22c8d3874df7fbc87b3089b2a0642397c4140a4292636c7017adc00529763025.jpg",
- "trainings": 2
- },
- {
- "id": 2337,
- "name": "№2337 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.698097",
- "latitude": "55.900726",
- "address": "около дома Благовещенская, 15",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140719_084728.jpg",
- "trainings": 1
- },
- {
- "id": 2338,
- "name": "№2338 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.231366",
- "latitude": "47.827495",
- "address": "г.Запорожье, ул.Николая Краснова д.4",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/16072014757.jpg",
- "trainings": 0
- },
- {
- "id": 2339,
- "name": "№2339 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.995948",
- "latitude": "45.806234",
- "address": "ст.Брюховецкая, улица ленина",
- "city_id": 7393,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/MCZWSjtEdWM66.jpg",
- "trainings": 0
- },
- {
- "id": 2341,
- "name": "№2341 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "69.31545729999993",
- "latitude": "41.3746555",
- "address": "Юнус-абад-19, 258 школа",
- "city_id": 470,
- "country_id": 21,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_001597.jpg",
- "trainings": 1
- },
- {
- "id": 2343,
- "name": "№2343 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.994368",
- "latitude": "45.811843",
- "address": "ст.Брюховецкая, улица Кошевого 61",
- "city_id": 7393,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/62_big.jpg",
- "trainings": 0
- },
- {
- "id": 2344,
- "name": "№2344 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "20.437489",
- "latitude": "54.731283",
- "address": "Калининград, Катина 67",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC0614037.JPG",
- "trainings": 3
- },
- {
- "id": 2345,
- "name": "№2345 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "65.260217",
- "latitude": "55.464608",
- "address": "г. Курган 3-й микрорайон, 33",
- "city_id": 601,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG00162.jpg",
- "trainings": 1
- },
- {
- "id": 2346,
- "name": "№2346 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.566807",
- "latitude": "55.682216",
- "address": "Профсоюзная улица, 20/9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Image00020small.jpg",
- "trainings": 0
- },
- {
- "id": 2347,
- "name": "№2347 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.536648",
- "latitude": "55.380425",
- "address": "Климовск, стадион Весна, Заводская улица, 26",
- "city_id": 57,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Image00010small.jpg",
- "trainings": 1
- },
- {
- "id": 2348,
- "name": "№2348 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.371094",
- "latitude": "59.997792",
- "address": "пр. Непокоренных, д.6",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20140721_095236.jpg",
- "trainings": 5
- },
- {
- "id": 2349,
- "name": "№2349 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.042257",
- "latitude": "55.592985",
- "address": "Рядом с новым озером",
- "city_id": 746,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/LeA19LY4ZZQ.jpg",
- "trainings": 3
- },
- {
- "id": 2350,
- "name": "№2350 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "29.787147",
- "latitude": "59.994204",
- "address": "г. Кронштадт, ул. восстания, д.5",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140721_19260129.jpg",
- "trainings": 0
- },
- {
- "id": 2351,
- "name": "№2351 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.768989",
- "latitude": "59.997455",
- "address": "г. Кронштадт, ул. Карла Маркса, д.14",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140721_194814.jpg",
- "trainings": 0
- },
- {
- "id": 2352,
- "name": "№2352 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "29.772291",
- "latitude": "59.998503",
- "address": "г. Кронштадт, ул. восстания, д.74",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140721_192139.jpg",
- "trainings": 0
- },
- {
- "id": 2353,
- "name": "№2353 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "29.798585",
- "latitude": "59.98557",
- "address": "г. Кронштадт, Туллонская аллея, д.11",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140721_193659.jpg",
- "trainings": 0
- },
- {
- "id": 2354,
- "name": "№2354 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.756954",
- "latitude": "60.00119",
- "address": "г. Кронштадт, Кронштадтское шоссе, д.10, корп. 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140721_212809.jpg",
- "trainings": 1
- },
- {
- "id": 2355,
- "name": "№2355 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.751547",
- "latitude": "59.993426",
- "address": "Кронштадт г., Цитадельское ш., 2",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Снимок.PNG",
- "trainings": 0
- },
- {
- "id": 2356,
- "name": "№2356 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.326036",
- "latitude": "49.95608",
- "address": "Харьков, Стадионный пр. 12-1",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140628_190820.jpg",
- "trainings": 0
- },
- {
- "id": 2358,
- "name": "№2358 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.9408249849803",
- "latitude": "55.025235058748",
- "address": "военная 9/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/119.JPG",
- "trainings": 2
- },
- {
- "id": 2359,
- "name": "№2359 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.103958",
- "latitude": "68.970157",
- "address": "Старостина 29",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/площадка Старастина 29 Мурманск.jpg",
- "trainings": 7
- },
- {
- "id": 2361,
- "name": "№2361 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "35.9172",
- "latitude": "56.8588",
- "address": "Тверь, Парк Победы",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/_FKBP3qDZ90.jpg",
- "trainings": 1
- },
- {
- "id": 2362,
- "name": "№2362 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "35.917954",
- "latitude": "56.858247",
- "address": "Тверь, Территория школы №1",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/796dbbd4f095658b0f7aec0165a2e44750.jpeg",
- "trainings": 0
- },
- {
- "id": 2363,
- "name": "№2363 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.571023",
- "latitude": "55.799664",
- "address": "Полтавская улица, 47с2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_3296.JPG",
- "trainings": 3
- },
- {
- "id": 2364,
- "name": "№2364 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "69.28770039999995",
- "latitude": "41.3295954",
- "address": "Юнус-абад-14, 250 школа",
- "city_id": 470,
- "country_id": 21,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_000187.jpg",
- "trainings": 1
- },
- {
- "id": 2365,
- "name": "№2365 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.681415",
- "latitude": "67.612097",
- "address": "50 лет Октября",
- "city_id": 56,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20130103_181318911.jpg",
- "trainings": 0
- },
- {
- "id": 2366,
- "name": "№2366 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.760887",
- "latitude": "56.340339",
- "address": "ул.Северный Переулок. Между домами 39в и 39б",
- "city_id": 58,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/x5WQ1ZdT1CQ.jpg",
- "trainings": 0
- },
- {
- "id": 2367,
- "name": "№2367 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.73404400000004",
- "latitude": "56.32277",
- "address": "Ул. Мира дом 46 Клин",
- "city_id": 58,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/62iyO3AoUME73.jpg",
- "trainings": 1
- },
- {
- "id": 2368,
- "name": "№2368 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.523585",
- "latitude": "56.350928",
- "address": "Дмитров, Маркова, 6",
- "city_id": 34,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/InmE1AsPRbg.jpg",
- "trainings": 3
- },
- {
- "id": 2370,
- "name": "№2370 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "28.749239",
- "latitude": "55.500809",
- "address": "ул. Хруцкого, 24",
- "city_id": 380,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2014-07-28 12.46.32.gif",
- "trainings": 0
- },
- {
- "id": 2371,
- "name": "№2371 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.645802",
- "latitude": "54.634707",
- "address": "Комсомольский парк, улица Новаторов",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/P1010138.JPG",
- "trainings": 2
- },
- {
- "id": 2372,
- "name": "№2372 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.467844",
- "latitude": "55.647887",
- "address": "ул. Академика Анохина 64 строение А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20140731_182534_Richtone(HDR).jpg",
- "trainings": 3
- },
- {
- "id": 2373,
- "name": "№2373 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.456261",
- "latitude": "55.667652",
- "address": "ул. Никулинская 5 корпус 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140730_185419_Richtone(HDR).jpg",
- "trainings": 1
- },
- {
- "id": 2374,
- "name": "№2374 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.453941",
- "latitude": "55.667693",
- "address": "ул. никулинская д 15 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140731_180849_Richtone(HDR).jpg",
- "trainings": 1
- },
- {
- "id": 2375,
- "name": "№2375 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.468549",
- "latitude": "55.651833",
- "address": "ул. Академика Анохина 54 строение А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20140731_182013_Richtone(HDR).jpg",
- "trainings": 4
- },
- {
- "id": 2376,
- "name": "№2376 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.118492",
- "latitude": "44.506611",
- "address": "Дивноморское, пляж ",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140801_10385448.jpg",
- "trainings": 1
- },
- {
- "id": 2378,
- "name": "№2378 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.46156599999995",
- "latitude": "55.834988",
- "address": "Улица Большая Набережная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140803_125437.jpg",
- "trainings": 2
- },
- {
- "id": 2379,
- "name": "№2379 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.477148",
- "latitude": "55.820847",
- "address": "Парк Покровское-Стрешнево",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140803_120626.jpg",
- "trainings": 3
- },
- {
- "id": 2380,
- "name": "№2380 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.570653",
- "latitude": "55.709033",
- "address": "ул. Косыгина 4 строение 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/20140801_080351_Richtone(HDR).jpg",
- "trainings": 0
- },
- {
- "id": 2383,
- "name": "№2383 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.998062",
- "latitude": "45.803129",
- "address": "Ул. Тимофеева 32",
- "city_id": 7393,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image-b5b09162fed32e7ef38ed50526aaa30ebab5d99cb23157627a279171a7fbde7e-V.jpg",
- "trainings": 1
- },
- {
- "id": 2384,
- "name": "№2384 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "27.671932",
- "latitude": "53.947046",
- "address": "Гинтовта 22",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140710_20334711.jpg",
- "trainings": 0
- },
- {
- "id": 2385,
- "name": "№2385 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "27.674503",
- "latitude": "53.947895",
- "address": "Городецкая 14",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140710_20534315.jpg",
- "trainings": 0
- },
- {
- "id": 2386,
- "name": "№2386 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.201225",
- "latitude": "47.801727",
- "address": "г.Запорожье, ул.Энгельса 20",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/08082014789.jpg",
- "trainings": 0
- },
- {
- "id": 2387,
- "name": "№2387 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.168148",
- "latitude": "47.887184",
- "address": "г.Запорожье, ул. Глазунова 4",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/05082014786.jpg",
- "trainings": 0
- },
- {
- "id": 2388,
- "name": "№2388 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.140287",
- "latitude": "47.835577",
- "address": "г.Запорожье, ул.Патриотическая 59",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/05082014785.jpg",
- "trainings": 0
- },
- {
- "id": 2389,
- "name": "№2389 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.036348",
- "latitude": "47.828704",
- "address": "г.Запорожье, ул.Воронежская д.1",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/21072014765.jpg",
- "trainings": 0
- },
- {
- "id": 2390,
- "name": "№2390 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.156804",
- "latitude": "47.824411",
- "address": "г.Запорожье, ул.Украинская д.8",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/21072014768.jpg",
- "trainings": 0
- },
- {
- "id": 2391,
- "name": "№2391 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "73.339508",
- "latitude": "55.00237",
- "address": "зеленый остров",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/b024eacd8bf890e945e5aea9db40892a.jpg",
- "trainings": 4
- },
- {
- "id": 2393,
- "name": "№2393 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.61939400000006",
- "latitude": "56.825843",
- "address": "город Екатеринбург, улица Красноармейская",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/DSC_145766.jpg",
- "trainings": 9
- },
- {
- "id": 2394,
- "name": "№2394 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.606142",
- "latitude": "55.654358",
- "address": "Москва, Симферопольский бульвар 15.к5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_4090small.jpg",
- "trainings": 0
- },
- {
- "id": 2395,
- "name": "№2395 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.389935",
- "latitude": "55.837727",
- "address": "Москва, Пятницкое ш. д.6к.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/IMG_4104small.jpg",
- "trainings": 1
- },
- {
- "id": 2396,
- "name": "№2396 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.75318",
- "latitude": "43.567296",
- "address": "Сочи,ул.Бытха,57 (гимназия №16)",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140813_180523.jpg",
- "trainings": 2
- },
- {
- "id": 2397,
- "name": "№2397 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.612803",
- "latitude": "53.836849",
- "address": "ул. Уборевича 170а",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_038952.jpg",
- "trainings": 1
- },
- {
- "id": 2398,
- "name": "№2398 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.274312",
- "latitude": "59.897796",
- "address": "ул. Гладкова, 2 Санкт-Петербург",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/спортплощадка 2.jpg",
- "trainings": 2
- },
- {
- "id": 2400,
- "name": "№2400 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.688167",
- "latitude": "55.743106",
- "address": "Международная 28к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/20140818_100152 (1024x768).jpg",
- "trainings": 6
- },
- {
- "id": 2401,
- "name": "№2401 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.74303899999995",
- "latitude": "55.688501",
- "address": "Усадьба Люблино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 8,
- "preview": "https://workout.su/uploads/userfiles/20140821_160539 (960x1280).jpg",
- "trainings": 8
- },
- {
- "id": 2403,
- "name": "№2403 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.588097",
- "latitude": "64.584567",
- "address": "Костомукша, ул. Октябрьская д.10а",
- "city_id": 799,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20140814_211651.jpg",
- "trainings": 4
- },
- {
- "id": 2404,
- "name": "№2404 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.669789",
- "latitude": "67.607317",
- "address": "Ул.Советской Конституции",
- "city_id": 56,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20210125_175908924.jpg",
- "trainings": 0
- },
- {
- "id": 2406,
- "name": "№2406 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.52495699999997",
- "latitude": "55.926022",
- "address": "Стадион МФТИ",
- "city_id": 35,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-19-15-07-24-1e2.jpg",
- "trainings": 22
- },
- {
- "id": 2407,
- "name": "№2407 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.703758",
- "latitude": "55.635373",
- "address": "Борисовские пруды",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/20140822_114318 (1280x960).jpg",
- "trainings": 3
- },
- {
- "id": 2408,
- "name": "№2408 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.718095",
- "latitude": "47.229374",
- "address": "Красноармейская 55",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/2014814182325.jpg",
- "trainings": 3
- },
- {
- "id": 2409,
- "name": "№2409 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.231126",
- "latitude": "55.569907",
- "address": "Раменское, Красноармейская 10",
- "city_id": 110,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/Площадка в Раменском 250.jpg",
- "trainings": 1
- },
- {
- "id": 2410,
- "name": "№2410 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.910413",
- "latitude": "55.053971",
- "address": "Красный проспект 87/2",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/7a6I9_GpbqY62.jpg",
- "trainings": 1
- },
- {
- "id": 2412,
- "name": "№2412 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.191498000000024",
- "latitude": "55.489337",
- "address": "д. Василенцево, дом 53",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSCF921697.JPG",
- "trainings": 3
- },
- {
- "id": 2414,
- "name": "№2414 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.924529",
- "latitude": "55.081945",
- "address": "Лебедевского 2/2",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/114.JPG",
- "trainings": 0
- },
- {
- "id": 2416,
- "name": "№2416 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.663203",
- "latitude": "54.652267",
- "address": "Рязань, ул Шабулина 25",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140823_180243.jpg",
- "trainings": 0
- },
- {
- "id": 2417,
- "name": "№2417 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "39.665211",
- "latitude": "54.649833",
- "address": "Рязань, ул.Октябрьская д.63",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140823_162237.jpg",
- "trainings": 13
- },
- {
- "id": 2418,
- "name": "№2418 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.66967",
- "latitude": "67.612466",
- "address": "г.Кировск ул.Мира 11",
- "city_id": 56,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20210126_163546285[1].jpg",
- "trainings": 1
- },
- {
- "id": 2419,
- "name": "№2419 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.649757",
- "latitude": "55.633922",
- "address": "ул. Бехтерева д11к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/20140716_170159~01.jpg",
- "trainings": 4
- },
- {
- "id": 2420,
- "name": "№2420 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.073744",
- "latitude": "47.891511",
- "address": "г.Запорожье, ул.Маршала Чуйкова д. 24",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20082014796.jpg",
- "trainings": 0
- },
- {
- "id": 2421,
- "name": "№2421 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "75.452175",
- "latitude": "63.203192",
- "address": "Ноябрьск",
- "city_id": 719,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC_000012414.jpg",
- "trainings": 1
- },
- {
- "id": 2422,
- "name": "№2422 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.400154",
- "latitude": "56.229341",
- "address": "проспект Циолковского, 78а",
- "city_id": 31,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/DSC_010921.jpg",
- "trainings": 1
- },
- {
- "id": 2424,
- "name": "№2424 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.542426",
- "latitude": "55.925623",
- "address": "Дмитровское шоссе 165Ек5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20140824_113926.jpg",
- "trainings": 3
- },
- {
- "id": 2425,
- "name": "№2425 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "43.087793",
- "latitude": "44.075899",
- "address": "г. Пятигорск, пос. Энергетик, ул. Подстанционная 23",
- "city_id": 735,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20140825_002.jpg",
- "trainings": 2
- },
- {
- "id": 2426,
- "name": "№2426 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.707588",
- "latitude": "55.920064",
- "address": "Улица мира. Круг возле ТРЦ ",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2014-09-19 10.28.01.png_492x1366.jpg",
- "trainings": 4
- },
- {
- "id": 2427,
- "name": "№2427 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.727967",
- "latitude": "55.92131",
- "address": "ул. Колпакова за домом 32к2",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_7473.JPG",
- "trainings": 2
- },
- {
- "id": 2428,
- "name": "№2428 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "36.14473",
- "latitude": "53.023109",
- "address": "ул.Раздольная ПТУ№7",
- "city_id": 93,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0448[1].jpg",
- "trainings": 2
- },
- {
- "id": 2429,
- "name": "№2429 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "43.068721",
- "latitude": "44.0358",
- "address": "г. Пятигорск, ул.Кирова 55",
- "city_id": 735,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20140828_001.jpg",
- "trainings": 0
- },
- {
- "id": 2430,
- "name": "№2430 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "113.529013",
- "latitude": "52.040811",
- "address": "Стадион СибВО",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_0328.JPG",
- "trainings": 19
- },
- {
- "id": 2431,
- "name": "№2431 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.904596",
- "latitude": "55.065514",
- "address": "Дмитрия Донского 23",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140831_152912.jpg",
- "trainings": 0
- },
- {
- "id": 2432,
- "name": "№2432 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.367991",
- "latitude": "52.869386",
- "address": "стаево. красноармейская",
- "city_id": 631,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/фото0293.jpg",
- "trainings": 0
- },
- {
- "id": 2433,
- "name": "№2433 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.62816",
- "latitude": "55.739246",
- "address": "Москва, ул. Пятницкая д.32",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_4200s.jpg",
- "trainings": 5
- },
- {
- "id": 2438,
- "name": "№2438 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.907999",
- "latitude": "55.06769",
- "address": "Красный проспект 173",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140831_152412.jpg",
- "trainings": 0
- },
- {
- "id": 2439,
- "name": "№2439 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.755401000000006",
- "latitude": "55.712373",
- "address": "Окская 3к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/20140901_140341 (1280x960).jpg",
- "trainings": 7
- },
- {
- "id": 2440,
- "name": "№2440 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.757871",
- "latitude": "55.69945",
- "address": "Юных Ленинцев 40к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20140901_155323 (1280x960).jpg",
- "trainings": 1
- },
- {
- "id": 2441,
- "name": "№2441 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "92.898286",
- "latitude": "55.996736",
- "address": "г. Красноярск, Навигационная, д.7",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140922_190335.jpg",
- "trainings": 1
- },
- {
- "id": 2442,
- "name": "№2442 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.53043",
- "latitude": "55.864472",
- "address": "дегунинская 13 к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140901_183242.jpg",
- "trainings": 2
- },
- {
- "id": 2443,
- "name": "№2443 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.160679",
- "latitude": "47.825886",
- "address": "г.Запорожье, ул. Героев Сталинграда 11",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/01092014815.jpg",
- "trainings": 0
- },
- {
- "id": 2446,
- "name": "№2446 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.156278",
- "latitude": "56.737022",
- "address": "Дубна, ул. Станционная, позади крытого ледового катка",
- "city_id": 37,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/mIMG_0770.JPG",
- "trainings": 4
- },
- {
- "id": 2447,
- "name": "№2447 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.224446",
- "latitude": "56.74149",
- "address": "Дубна, ул. Университетская, 19к5",
- "city_id": 37,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/mIMG_0786.JPG",
- "trainings": 0
- },
- {
- "id": 2448,
- "name": "№2448 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "41.95260099999996",
- "latitude": "45.050282",
- "address": "Комсомольский пруд",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/площадка41.jpg",
- "trainings": 8
- },
- {
- "id": 2450,
- "name": "№2450 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.426204",
- "latitude": "52.841454",
- "address": "мичуринск, стаево",
- "city_id": 7408,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Площадка.jpg",
- "trainings": 0
- },
- {
- "id": 2452,
- "name": "№2452 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.213738000000035",
- "latitude": "54.492027",
- "address": "г. Калуга, ул. Генерала Попова",
- "city_id": 50,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC00075.JPG",
- "trainings": 6
- },
- {
- "id": 2453,
- "name": "№2453 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.610369",
- "latitude": "55.652889",
- "address": "Чонгарский б-р, 11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/20140911_172558 (1280x960).jpg",
- "trainings": 2
- },
- {
- "id": 2454,
- "name": "№2454 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.971936",
- "latitude": "55.137891",
- "address": "Новосибирск, Садовый, ул. Совхозная 3а",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/100_3160.JPG",
- "trainings": 0
- },
- {
- "id": 2455,
- "name": "№2455 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.352056",
- "latitude": "49.956986",
- "address": "г. Харьков, Московский проспект 246А",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/S8300033.JPG",
- "trainings": 0
- },
- {
- "id": 2456,
- "name": "№2456 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.84732089416502",
- "latitude": "55.62836113920113",
- "address": "Спортивная 3а",
- "city_id": 32,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140913_113647.jpg",
- "trainings": 5
- },
- {
- "id": 2457,
- "name": "№2457 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.323389",
- "latitude": "55.82718",
- "address": "ул. Советская 15",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/Gb-Ia6r5aaU.jpg",
- "trainings": 7
- },
- {
- "id": 2458,
- "name": "№2458 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.32932",
- "latitude": "55.823352",
- "address": "ул. Школьная 20А",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/VbPqp8buzDw19.jpg",
- "trainings": 3
- },
- {
- "id": 2459,
- "name": "№2459 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "49.274343",
- "latitude": "53.508526",
- "address": "Тольятти, парк победы",
- "city_id": 136,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/WP_20140830_01465.jpg",
- "trainings": 5
- },
- {
- "id": 2463,
- "name": "№2463 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "65.305351",
- "latitude": "55.464911",
- "address": "Курганская обл., г. Курган, ул. Правды, 53",
- "city_id": 601,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG00190.jpg",
- "trainings": 0
- },
- {
- "id": 2464,
- "name": "№2464 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.450909000000024",
- "latitude": "55.802399",
- "address": "Живописная, 52",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140924_110228.jpg",
- "trainings": 3
- },
- {
- "id": 2465,
- "name": "№2465 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "50.167757",
- "latitude": "53.383418",
- "address": "г. Самара, пос. Красная Глинка, 3 квартал, 1",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/tur01.JPG",
- "trainings": 1
- },
- {
- "id": 2466,
- "name": "№2466 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "42.520337",
- "latitude": "45.825526",
- "address": "Ставропольский край, Ипатовский район, пос. Красочный",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b2lvxlEVCtg.jpg",
- "trainings": 2
- },
- {
- "id": 2468,
- "name": "№2468 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.922106",
- "latitude": "45.003147",
- "address": "Во дворе дома 52/1 рядом с 24 школой",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/Фото0048.jpg",
- "trainings": 1
- },
- {
- "id": 2471,
- "name": "№2471 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.655694",
- "latitude": "55.576993",
- "address": "Булатниковская ул.1А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/IMG_9497.jpg",
- "trainings": 5
- },
- {
- "id": 2472,
- "name": "№2472 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.712878",
- "latitude": "55.789374",
- "address": "Преображенский вал, 24с8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image19.jpg",
- "trainings": 2
- },
- {
- "id": 2476,
- "name": "№2476 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.589583",
- "latitude": "55.856243",
- "address": "ул. Хачатуряна д.6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/20140924_155153 (1280x960).jpg",
- "trainings": 6
- },
- {
- "id": 2477,
- "name": "№2477 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.579872",
- "latitude": "55.754192",
- "address": "Новинский бульвар д.13с4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20140922_112415 (1280x960).jpg",
- "trainings": 1
- },
- {
- "id": 2478,
- "name": "№2478 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.75966",
- "latitude": "55.702351",
- "address": "Юных Ленинцев д.57к4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140924_175839 (1280x960).jpg",
- "trainings": 0
- },
- {
- "id": 2479,
- "name": "№2479 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.857019",
- "latitude": "55.626825",
- "address": "Спортивная 21",
- "city_id": 32,
- "country_id": 17,
- "comments_count": 19,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140925_115118.jpg",
- "trainings": 1
- },
- {
- "id": 2483,
- "name": "№2483 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.280102",
- "latitude": "59.89751",
- "address": "Санкт-Петербург, улица Балтийская, дом 3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/169.JPG",
- "trainings": 2
- },
- {
- "id": 2485,
- "name": "№2485 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "83.762442",
- "latitude": "53.345537",
- "address": "Барнаул, пр.Красноармейский, 133",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/small_20140927_080445.jpg",
- "trainings": 2
- },
- {
- "id": 2486,
- "name": "№2486 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "49.421929",
- "latitude": "53.521363",
- "address": "ул. Горького 47",
- "city_id": 136,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1556.jpg",
- "trainings": 1
- },
- {
- "id": 2488,
- "name": "№2488 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.496748000000025",
- "latitude": "55.748168",
- "address": "возле бассейна ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-23-00-10-51-pcp.jpg",
- "trainings": 16
- },
- {
- "id": 2489,
- "name": "№2489 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.502261",
- "latitude": "55.748298",
- "address": "посреди дет. парка Фили",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC_0196a.jpg",
- "trainings": 4
- },
- {
- "id": 2490,
- "name": "№2490 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "92.7298776155518",
- "latitude": "55.91758847410347",
- "address": "ул. Энтузиастов",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/100_370226.JPG",
- "trainings": 1
- },
- {
- "id": 2491,
- "name": "№2491 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.91091343209791",
- "latitude": "56.01441188486312",
- "address": "остров Татышев",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/100_377196.JPG",
- "trainings": 0
- },
- {
- "id": 2492,
- "name": "№2492 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.91825647514542",
- "latitude": "56.016359274240514",
- "address": "остров Татышев",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/100_3775.JPG",
- "trainings": 0
- },
- {
- "id": 2493,
- "name": "№2493 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.92244632266374",
- "latitude": "56.023020390413144",
- "address": "остров Татышев",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/100_3780.JPG",
- "trainings": 0
- },
- {
- "id": 2494,
- "name": "№2494 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.92364379458377",
- "latitude": "56.0222076506389",
- "address": "остров Татышев",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/100_3795.JPG",
- "trainings": 0
- },
- {
- "id": 2495,
- "name": "№2495 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.93864922547072",
- "latitude": "56.02641683683109",
- "address": "остров Татышев",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/100_3800.JPG",
- "trainings": 6
- },
- {
- "id": 2497,
- "name": "№2497 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.831196",
- "latitude": "54.993184",
- "address": "Новосибирск Невельского 9",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140927_13475746.jpg",
- "trainings": 0
- },
- {
- "id": 2498,
- "name": "№2498 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "92.9284390216344",
- "latitude": "56.026450680986684",
- "address": "остров Татышев",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/165.JPG",
- "trainings": 7
- },
- {
- "id": 2499,
- "name": "№2499 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.377058",
- "latitude": "60.034238",
- "address": "напротив пр. Луначарского, д. 82к1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/140927_16031627.jpg",
- "trainings": 4
- },
- {
- "id": 2500,
- "name": "№2500 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.690433",
- "latitude": "55.8808",
- "address": "Москва, улица Оборонная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2014-09-29 14_opt (1).jpg",
- "trainings": 3
- },
- {
- "id": 2501,
- "name": "№2501 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.71352",
- "latitude": "55.758841",
- "address": "г.Москва, ул.Авиамоторная, д.4, корп.1 (между дет.садом и футбольной площадкой)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/Фото0045.jpg",
- "trainings": 4
- },
- {
- "id": 2502,
- "name": "№2502 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.887125",
- "latitude": "55.987168",
- "address": "г. красноярск, Матросова, д.9",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/pic.jpg",
- "trainings": 0
- },
- {
- "id": 2503,
- "name": "№2503 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.892949",
- "latitude": "55.989629",
- "address": "г. Красноярск, ул. Кольцевая, 3а",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/pic-1.jpg",
- "trainings": 1
- },
- {
- "id": 2505,
- "name": "№2505 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "32.904095",
- "latitude": "67.942914",
- "address": "г. Мончегорск, ул. Царевского 4а",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/_tyQPoskl-0.jpg",
- "trainings": 3
- },
- {
- "id": 2507,
- "name": "№2507 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.648533",
- "latitude": "55.627093",
- "address": "Бехтерева 25/49",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140930_123335 (1280x960).jpg",
- "trainings": 0
- },
- {
- "id": 2508,
- "name": "№2508 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.650643",
- "latitude": "55.624649",
- "address": "Севанская 54к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20140930_122655 (960x1280).jpg",
- "trainings": 1
- },
- {
- "id": 2510,
- "name": "№2510 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.579213204229745",
- "latitude": "56.969564911286064",
- "address": "ул. Кривоусова, д. 13",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140904_193511.jpg",
- "trainings": 3
- },
- {
- "id": 2511,
- "name": "№2511 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "55.972076",
- "latitude": "54.739638",
- "address": "г.Уфа, ул. Нежинская 51",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/144.jpg",
- "trainings": 1
- },
- {
- "id": 2512,
- "name": "№2512 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.755819",
- "latitude": "55.71113",
- "address": "Окская, 14 с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20141005_090453.jpg",
- "trainings": 2
- },
- {
- "id": 2514,
- "name": "№2514 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.563014",
- "latitude": "55.889907",
- "address": "Москва, Керамический пр-зд 71 стр 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/198.gif",
- "trainings": 12
- },
- {
- "id": 2515,
- "name": "№2515 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.702251",
- "latitude": "55.744613",
- "address": "Москва, Перовский проезд, дом 7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20141003_075933.jpg",
- "trainings": 0
- },
- {
- "id": 2517,
- "name": "№2517 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "66.67191",
- "latitude": "63.717057",
- "address": "г. Белоярский ХМАО-Югры",
- "city_id": 7416,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140917_19432436.jpg",
- "trainings": 1
- },
- {
- "id": 2518,
- "name": "№2518 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "66.657281",
- "latitude": "63.72693",
- "address": "г. Белоярский ХМАО-Югры",
- "city_id": 7416,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20140930_174231.jpg",
- "trainings": 0
- },
- {
- "id": 2519,
- "name": "№2519 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.701583",
- "latitude": "56.750554",
- "address": "Косарева, 9 Екатеринбург",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2014-10-03-056.jpg",
- "trainings": 1
- },
- {
- "id": 2520,
- "name": "№2520 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.701483",
- "latitude": "56.749817",
- "address": "Бородина, 1 Екатеринбург",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2014-10-03-057.jpg",
- "trainings": 1
- },
- {
- "id": 2521,
- "name": "№2521 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.703672",
- "latitude": "56.761713",
- "address": "Дагестанская 1а",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20141004_111328.jpg",
- "trainings": 2
- },
- {
- "id": 2522,
- "name": "№2522 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "60.695367",
- "latitude": "56.756438",
- "address": "Дагестанская 1а",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20141004_111936.jpg",
- "trainings": 0
- },
- {
- "id": 2523,
- "name": "№2523 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.581371",
- "latitude": "55.731631",
- "address": "Оболенский пер. Д. 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/image3625.jpg",
- "trainings": 1
- },
- {
- "id": 2524,
- "name": "№2524 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.439747",
- "latitude": "55.776402",
- "address": "Электросталь, ул. Тевосяна, 16б",
- "city_id": 153,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/det_pl_1.jpg",
- "trainings": 0
- },
- {
- "id": 2528,
- "name": "№2528 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "83.736677",
- "latitude": "53.378548",
- "address": "Петра Сухова, 11",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_0002.JPG",
- "trainings": 2
- },
- {
- "id": 2529,
- "name": "№2529 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.733374",
- "latitude": "55.803486",
- "address": "Большая черкизовская д.15",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 22,
- "preview": "https://workout.su/uploads/userfiles/20141008_131614.jpg",
- "trainings": 5
- },
- {
- "id": 2530,
- "name": "№2530 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "27.56356000900269",
- "latitude": "53.90752700634813",
- "address": "см.Октябрьска парк ",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2014-10-09-018.jpg",
- "trainings": 11
- },
- {
- "id": 2534,
- "name": "№2534 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.616117",
- "latitude": "55.900314",
- "address": "ул. Корнейчука, дом 24",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/фото 2.JPG",
- "trainings": 2
- },
- {
- "id": 2535,
- "name": "№2535 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.613557",
- "latitude": "55.90093",
- "address": "ул. Корнейчука, дом 20",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/фото 1.JPG",
- "trainings": 4
- },
- {
- "id": 2541,
- "name": "№2541 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.383639",
- "latitude": "60.034453",
- "address": "ул. Д.Бедного, д.1 к.2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_0059[1].JPG",
- "trainings": 1
- },
- {
- "id": 2542,
- "name": "№2542 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.378342",
- "latitude": "60.035502",
- "address": "ул. Д.Бедного, д.6, к.2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_0061[1].JPG",
- "trainings": 2
- },
- {
- "id": 2544,
- "name": "№2544 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.755617",
- "latitude": "55.695866",
- "address": "Волжский Бульвар квартал 113А, к8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20141009_082143 (1280x960).jpg",
- "trainings": 0
- },
- {
- "id": 2545,
- "name": "№2545 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.743383",
- "latitude": "55.695356",
- "address": "Малышева 26к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20141004_122745 (1280x960).jpg",
- "trainings": 1
- },
- {
- "id": 2546,
- "name": "№2546 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.390128",
- "latitude": "60.033259",
- "address": "Учительская, ул, д.9, к.3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_0057.JPG",
- "trainings": 0
- },
- {
- "id": 2548,
- "name": "№2548 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "77.581748",
- "latitude": "60.723557",
- "address": "636785, Томская область, г. Стрежевой, мкр 4-й, д 458",
- "city_id": 7409,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_038961.jpg",
- "trainings": 1
- },
- {
- "id": 2552,
- "name": "№2552 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "32.448033",
- "latitude": "69.402186",
- "address": "г. Заозёрск, ул. Ленкома",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20141016_180204.jpg",
- "trainings": 1
- },
- {
- "id": 2553,
- "name": "№2553 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.123017",
- "latitude": "55.997277",
- "address": "г.зеленоград,военный городок",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/cvdA3-JGF5A.jpg",
- "trainings": 1
- },
- {
- "id": 2554,
- "name": "№2554 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "14.498681",
- "latitude": "50.079799",
- "address": "V Uzlabine, Prague 8, Czech Republice",
- "city_id": 806,
- "country_id": 30,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/image2775.jpg",
- "trainings": 0
- },
- {
- "id": 2555,
- "name": "№2555 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.101383",
- "latitude": "54.84403",
- "address": "Академика Коптюга 9",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20141009_112829.jpg",
- "trainings": 2
- },
- {
- "id": 2556,
- "name": "№2556 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "49.054123",
- "latitude": "55.814924",
- "address": "Казань, Степана Халтурина 3",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/БАСКО51.jpg",
- "trainings": 1
- },
- {
- "id": 2557,
- "name": "№2557 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.453212",
- "latitude": "55.801761",
- "address": "Академика Бочвара 18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 8,
- "preview": "https://workout.su/uploads/userfiles/20141021_123608.jpg",
- "trainings": 1
- },
- {
- "id": 2558,
- "name": "№2558 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.498261",
- "latitude": "50.501468",
- "address": "ул.Героев Сталинграда, м.Минская, стадион \"Юность\"",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6267520.jpg",
- "trainings": 0
- },
- {
- "id": 2559,
- "name": "№2559 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "47.844214",
- "latitude": "56.638774",
- "address": "йошкар-ола Баумана 20",
- "city_id": 571,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2-23-1.jpg",
- "trainings": 0
- },
- {
- "id": 2560,
- "name": "№2560 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.13409",
- "latitude": "47.839884",
- "address": "г.Запорожье, ул.Правды 55",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/19092014839.jpg",
- "trainings": 0
- },
- {
- "id": 2561,
- "name": "№2561 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.160983",
- "latitude": "47.824796",
- "address": "г.Запорожье, ул.Героев Сталинграда, 11",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0109201481565.jpg",
- "trainings": 0
- },
- {
- "id": 2562,
- "name": "№2562 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.660848",
- "latitude": "55.673392",
- "address": "пр-т Андропова 38",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20141020_135007 (800x600).jpg",
- "trainings": 1
- },
- {
- "id": 2563,
- "name": "№2563 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.62824899999998",
- "latitude": "55.869556",
- "address": "Проезд Дежнева",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/фото 3.JPG",
- "trainings": 8
- },
- {
- "id": 2564,
- "name": "№2564 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.842978",
- "latitude": "56.237173",
- "address": "Нижний Новгород, ул. Янки Купалы, д. 38",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Площадка16.jpg",
- "trainings": 1
- },
- {
- "id": 2565,
- "name": "№2565 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "60.79610600000001",
- "latitude": "56.912291",
- "address": "город Березовский, ул. Ленина 63/б",
- "city_id": 10,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/aVaBn2NhArM.jpg",
- "trainings": 2
- },
- {
- "id": 2566,
- "name": "№2566 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.416773",
- "latitude": "55.811579",
- "address": "Аллея жизни",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0775-1.jpg",
- "trainings": 2
- },
- {
- "id": 2567,
- "name": "№2567 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.42369299999996",
- "latitude": "55.802957",
- "address": "ул.Маршала Катукова, в начале пляжа",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_0639-1.jpg",
- "trainings": 5
- },
- {
- "id": 2568,
- "name": "№2568 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.39465",
- "latitude": "55.798302",
- "address": "ул.Таллинская д.6-8к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_0778-1.jpg",
- "trainings": 5
- },
- {
- "id": 2569,
- "name": "№2569 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.412589000000025",
- "latitude": "55.801649",
- "address": "Cтадион \"Янтарь\"",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/3-149.jpg",
- "trainings": 9
- },
- {
- "id": 2570,
- "name": "№2570 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.407982",
- "latitude": "50.483661",
- "address": "Маршала Гречка 8",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20141026_170042.jpg",
- "trainings": 1
- },
- {
- "id": 2571,
- "name": "№2571 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.409955",
- "latitude": "50.470349",
- "address": "Ул. Вильгельма Пика 16, Парк Вильгельма Пика",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20141027_152105.jpg",
- "trainings": 2
- },
- {
- "id": 2572,
- "name": "№2572 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "27.622719",
- "latitude": "53.951717",
- "address": "ул. Седых, 10",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2014-11-08 13.11.29.jpg",
- "trainings": 1
- },
- {
- "id": 2573,
- "name": "№2573 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.565871000000016",
- "latitude": "55.818385",
- "address": "парк Дубки",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_0807-1.jpg",
- "trainings": 5
- },
- {
- "id": 2574,
- "name": "№2574 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.578199",
- "latitude": "55.7999",
- "address": "рынок Автомобилист (стадион Автомобилист)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_0810-1.jpg",
- "trainings": 10
- },
- {
- "id": 2575,
- "name": "№2575 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "91.333669",
- "latitude": "53.823836",
- "address": "Черногорск, Космонавтов 4д",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2014-11-03 13.07.1674.jpg",
- "trainings": 1
- },
- {
- "id": 2576,
- "name": "№2576 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "50.195677",
- "latitude": "53.189848",
- "address": "Школа №66 (Аэродромная, 65)",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/PB030328_crop.JPG",
- "trainings": 0
- },
- {
- "id": 2577,
- "name": "№2577 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "50.200793",
- "latitude": "53.192851",
- "address": "Парк победы (ул. Аэродромная/Энтузиастов)",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/PB030319_crop.JPG",
- "trainings": 3
- },
- {
- "id": 2578,
- "name": "№2578 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.922522",
- "latitude": "45.0043",
- "address": "Во дворе дома 44/2",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Фото0056[1].jpg",
- "trainings": 1
- },
- {
- "id": 2579,
- "name": "№2579 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "65.577735",
- "latitude": "57.141043",
- "address": "Тюмень, Котовского 52Б",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/Тюмень, Котовского 52Б.JPG",
- "trainings": 0
- },
- {
- "id": 2580,
- "name": "№2580 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.715093",
- "latitude": "55.789713",
- "address": "Преображенский вал 24с8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/image4123.jpg",
- "trainings": 0
- },
- {
- "id": 2581,
- "name": "№2581 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "40.336442",
- "latitude": "56.108929",
- "address": "Парк \"Дружба\" (ул. Верхняя Дуброва, 22б)",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0994_resize.JPG",
- "trainings": 1
- },
- {
- "id": 2582,
- "name": "№2582 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "61.898829",
- "latitude": "56.435748",
- "address": "Карла Маркса 62",
- "city_id": 7376,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/311020142141.jpg",
- "trainings": 0
- },
- {
- "id": 2583,
- "name": "№2583 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.516672",
- "latitude": "55.795986",
- "address": "2-ая песчаная улица, д.3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/фото63.JPG",
- "trainings": 10
- },
- {
- "id": 2584,
- "name": "№2584 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.513022",
- "latitude": "55.800512",
- "address": "Новопесчаная улица, д.8, к.3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/image24.jpg",
- "trainings": 7
- },
- {
- "id": 2585,
- "name": "№2585 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "73.425938",
- "latitude": "55.021079",
- "address": "Омск, Барнаульская",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/OigU1OlCKVU (1).jpg",
- "trainings": 2
- },
- {
- "id": 2588,
- "name": "№2588 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.35408849206544",
- "latitude": "55.64430444699734",
- "address": "Чоботовская 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/CYMERA_20141108_095814.jpg",
- "trainings": 2
- },
- {
- "id": 2589,
- "name": "№2589 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.354033",
- "latitude": "55.644628",
- "address": "Чоботовская 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/CYMERA_20141108_09333019.jpg",
- "trainings": 3
- },
- {
- "id": 2590,
- "name": "№2590 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "52.107228",
- "latitude": "58.248176",
- "address": "яр, УР",
- "city_id": 7420,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/SDC15699.JPG",
- "trainings": 1
- },
- {
- "id": 2591,
- "name": "№2591 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "50.268773",
- "latitude": "53.236076",
- "address": "г. Самара ул. Строителей 1А",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/NcLBVPRIh3M81.jpg",
- "trainings": 2
- },
- {
- "id": 2592,
- "name": "№2592 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "75.322641",
- "latitude": "51.725633",
- "address": "Школа №26",
- "city_id": 7421,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20141109_09482582.jpg",
- "trainings": 1
- },
- {
- "id": 2593,
- "name": "№2593 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "24.210742",
- "latitude": "56.936328",
- "address": "Jasmuizhas 10",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/1016476_375301139302329_7591336077269899139_n.jpg",
- "trainings": 1
- },
- {
- "id": 2594,
- "name": "№2594 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.313994",
- "latitude": "59.914023",
- "address": "северодонецк",
- "city_id": 536,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/YVO0vRtGw54.jpg",
- "trainings": 1
- },
- {
- "id": 2595,
- "name": "№2595 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.586778",
- "latitude": "55.72363",
- "address": "френзенская набережная 32",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/15112014352.jpg",
- "trainings": 0
- },
- {
- "id": 2596,
- "name": "№2596 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.35065",
- "latitude": "55.641552",
- "address": "ул. Шолохова, 20",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/CYMERA_20141116_151651.jpg",
- "trainings": 2
- },
- {
- "id": 2598,
- "name": "№2598 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.596608",
- "latitude": "55.710287",
- "address": "г.Москва, ул.Орджоникидзе, д.9 (через дорогу от ТЦ Гагаринский и \"Главclub\")",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/Фото006339.jpg",
- "trainings": 4
- },
- {
- "id": 2599,
- "name": "№2599 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.180058",
- "latitude": "47.778821",
- "address": "г.Запорожье, ул.Гаврилова д.10",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/25112014927.jpg",
- "trainings": 0
- },
- {
- "id": 2600,
- "name": "№2600 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.227758",
- "latitude": "47.756928",
- "address": "Тепличный комбинат д.82",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/06102014870.jpg",
- "trainings": 0
- },
- {
- "id": 2601,
- "name": "№2601 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "35.098647",
- "latitude": "47.83831",
- "address": "г.Запорожье, бульвар Шевченко, 49. Ждановский пляж",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/скачанные файлы (2).jpg",
- "trainings": 1
- },
- {
- "id": 2602,
- "name": "№2602 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.903939",
- "latitude": "57.200396",
- "address": "Пермская обл., с.Орда, школьный стадион",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/347.jpg",
- "trainings": 2
- },
- {
- "id": 2603,
- "name": "№2603 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "32.510129",
- "latitude": "51.523048",
- "address": "Сосница, ул. Грушевского, 23",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0116.JPG",
- "trainings": 1
- },
- {
- "id": 2604,
- "name": "№2604 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "44.006435",
- "latitude": "56.315213",
- "address": "ул. Белинского Парк Культуры и Отдыха имени Кулибина",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/321.jpg",
- "trainings": 6
- },
- {
- "id": 2605,
- "name": "№2605 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.374021",
- "latitude": "59.869497",
- "address": "М.Международная ул.Белы Куна д.2 к.1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image17.jpg",
- "trainings": 7
- },
- {
- "id": 2607,
- "name": "№2607 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "50.214545",
- "latitude": "53.19834",
- "address": "ул. Советской Армии, 23",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMAG0256_1.jpg",
- "trainings": 0
- },
- {
- "id": 2608,
- "name": "№2608 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "50.252178",
- "latitude": "53.215394",
- "address": "ул. Победы, 96",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMAG0257_1.jpg",
- "trainings": 1
- },
- {
- "id": 2609,
- "name": "№2609 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.665467",
- "latitude": "55.868882",
- "address": "Двор ул.Енисейская д.21к1, 22к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0815-1.jpg",
- "trainings": 2
- },
- {
- "id": 2610,
- "name": "№2610 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.356606",
- "latitude": "45.181282",
- "address": "ул.Шевченко",
- "city_id": 493,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSCN105085.JPG",
- "trainings": 2
- },
- {
- "id": 2611,
- "name": "№2611 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.162215",
- "latitude": "47.884054",
- "address": "Історична вул., 27 Запоріжжя Запорізька область Украина",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/102_2644.JPG",
- "trainings": 0
- },
- {
- "id": 2612,
- "name": "№2612 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.159709",
- "latitude": "47.88856",
- "address": "Історична вул., 37А Запоріжжя Запорізька область Украина",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/102_2646.JPG",
- "trainings": 0
- },
- {
- "id": 2613,
- "name": "№2613 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.159178",
- "latitude": "47.890286",
- "address": "Історична вул., 39 Запоріжжя Запорізька область Украина",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/102_2649.JPG",
- "trainings": 0
- },
- {
- "id": 2614,
- "name": "№2614 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.159551",
- "latitude": "47.892133",
- "address": "Історична вул., 42 Запоріжжя Запорізька область Украина",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/102_2650.JPG",
- "trainings": 1
- },
- {
- "id": 2615,
- "name": "№2615 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "43.82012844085693",
- "latitude": "55.40196128970493",
- "address": "улица Жуковского",
- "city_id": 5,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Экстрим.jpg",
- "trainings": 2
- },
- {
- "id": 2616,
- "name": "№2616 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "25.093008999999938",
- "latitude": "60.354576",
- "address": "Villisiantie 18, Vantaa, Finland",
- "city_id": 699,
- "country_id": 23,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20141226151609.jpg",
- "trainings": 1
- },
- {
- "id": 2618,
- "name": "№2618 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-3.769554",
- "latitude": "40.331599",
- "address": "calle rio duero leganes",
- "city_id": 777,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/10559741_440122536130520_7807061454169347037_n.jpg",
- "trainings": 0
- },
- {
- "id": 2620,
- "name": "№2620 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "57.191409",
- "latitude": "50.282293",
- "address": "Республика Казахстан, г. Актобе, 12-й микрорайон Набережная",
- "city_id": 403,
- "country_id": 11,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC_0155.JPG",
- "trainings": 0
- },
- {
- "id": 2621,
- "name": "№2621 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "52.103355",
- "latitude": "58.239419",
- "address": "УР, Ярский район, с. Яр",
- "city_id": 7420,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/площадка56.jpg",
- "trainings": 1
- },
- {
- "id": 2623,
- "name": "№2623 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "30.756311",
- "latitude": "51.523527",
- "address": "Украина, Киевская область, г.Славутич",
- "city_id": 7428,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/fCapWNcM0vk55.jpg",
- "trainings": 1
- },
- {
- "id": 2624,
- "name": "№2624 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.745107",
- "latitude": "55.444601",
- "address": "город домодедово",
- "city_id": 36,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20141117_163433.jpg",
- "trainings": 0
- },
- {
- "id": 2625,
- "name": "№2625 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "44.433521",
- "latitude": "48.665554",
- "address": "Тормосиновская улица, 23",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150111-002.jpeg",
- "trainings": 1
- },
- {
- "id": 2627,
- "name": "№2627 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.808964999999944",
- "latitude": "55.831523",
- "address": "Бабаевский пруд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/Фото0296.jpg",
- "trainings": 2
- },
- {
- "id": 2628,
- "name": "№2628 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.757831",
- "latitude": "55.792746",
- "address": "Измайлово царская усадьба",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-03-17-06-24-rfq.jpg",
- "trainings": 2
- },
- {
- "id": 2629,
- "name": "№2629 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.773512",
- "latitude": "55.774368",
- "address": "Измайловский парк, красный пруд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Фото0330.jpg",
- "trainings": 4
- },
- {
- "id": 2630,
- "name": "№2630 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.597506",
- "latitude": "45.127123",
- "address": "Г. Саки Курортный Парк",
- "city_id": 7429,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8_ZlcqKrjZM.jpg",
- "trainings": 0
- },
- {
- "id": 2631,
- "name": "№2631 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.745086",
- "latitude": "55.444513",
- "address": "во дворе д. 58 по улице Советская",
- "city_id": 36,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20141117_16351169.jpg",
- "trainings": 2
- },
- {
- "id": 2632,
- "name": "№2632 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.577598",
- "latitude": "55.634128",
- "address": "г. Москва Балаклавский проспект, 33с10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20150125_13172777.jpg",
- "trainings": 5
- },
- {
- "id": 2633,
- "name": "№2633 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.539326000000074",
- "latitude": "55.806662",
- "address": "Москва, ул. Планетная, д. 42",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/x2IgTq96qes.jpg",
- "trainings": 11
- },
- {
- "id": 2634,
- "name": "№2634 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.746695",
- "latitude": "55.44897",
- "address": "с левой стороны от главного входа на стадион \"Авангард\"",
- "city_id": 36,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150128_083120.jpg",
- "trainings": 1
- },
- {
- "id": 2635,
- "name": "№2635 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.747307",
- "latitude": "55.448453",
- "address": "с левой стороны от главного входа на стадион \"Авангард\"",
- "city_id": 36,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150128_083219.jpg",
- "trainings": 0
- },
- {
- "id": 2636,
- "name": "№2636 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.7553",
- "latitude": "55.452431",
- "address": "на территории четвертой школы",
- "city_id": 36,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150130_170759.jpg",
- "trainings": 3
- },
- {
- "id": 2637,
- "name": "№2637 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.828967",
- "latitude": "55.800473",
- "address": "16-ая Парковая улица, д. 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/w6zS1xze2m8.jpg",
- "trainings": 1
- },
- {
- "id": 2644,
- "name": "№2644 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.805572",
- "latitude": "55.784612",
- "address": "Пересечение 11-й парковой и Измайловского пр.",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 12,
- "preview": "https://workout.su/uploads/userfiles/WP_20150506_01764.jpg",
- "trainings": 1
- },
- {
- "id": 2646,
- "name": "№2646 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.962842",
- "latitude": "56.007194",
- "address": "Красноярск Мичурина 9",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/15174353.jpg",
- "trainings": 1
- },
- {
- "id": 2647,
- "name": "№2647 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "35.212474",
- "latitude": "47.786251",
- "address": "г.Запорожье, ул. Магара д.8",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/11967.jpg",
- "trainings": 0
- },
- {
- "id": 2659,
- "name": "№2659 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.001456",
- "latitude": "56.1795",
- "address": "Город Солнечногорск, микрорайон Рекинцо, дом 25",
- "city_id": 126,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1255.JPG",
- "trainings": 0
- },
- {
- "id": 2660,
- "name": "№2660 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.999253",
- "latitude": "56.177515",
- "address": "Солнечногорск, Рекинцо, дом 14",
- "city_id": 126,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/02.JPG",
- "trainings": 1
- },
- {
- "id": 2670,
- "name": "№2670 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.150885",
- "latitude": "55.894819",
- "address": "пгт Свердловский, ул Заводская, д 19 - 20",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2015-03-21-23-29-44_deco14.jpg",
- "trainings": 3
- },
- {
- "id": 2676,
- "name": "№2676 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "27.471432",
- "latitude": "53.910562",
- "address": "ул. Глебки",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/0124.jpg",
- "trainings": 10
- },
- {
- "id": 2681,
- "name": "№2681 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "47.631032000000005",
- "latitude": "42.878166",
- "address": "Россия г. Каспийск ул. Октябрьская 15",
- "city_id": 616,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/image-8a7ba4737233c6384a04fc6e3c3fda963e86cc3e16990178c47ae989c56e86e9-V~2.jpg",
- "trainings": 2
- },
- {
- "id": 2682,
- "name": "№2682 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.227754",
- "latitude": "54.510398",
- "address": "Россия, Калуга, сквер имени Волкова ",
- "city_id": 50,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_689248.JPG",
- "trainings": 4
- },
- {
- "id": 2683,
- "name": "№2683 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "36.27377",
- "latitude": "54.516371",
- "address": "г. Калуга, ул. Ф. Энгельса, д. 12",
- "city_id": 50,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_66197051.jpg",
- "trainings": 3
- },
- {
- "id": 2684,
- "name": "№2684 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.934544",
- "latitude": "43.113151",
- "address": "Светланская 207",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150310_132336.jpg",
- "trainings": 1
- },
- {
- "id": 2685,
- "name": "№2685 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.503738",
- "latitude": "55.754798",
- "address": "г. Москва, ул. Горбунова, д.10с2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150310_181958.jpg",
- "trainings": 2
- },
- {
- "id": 2692,
- "name": "№2692 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.59284500000001",
- "latitude": "55.887863",
- "address": "Москва, улица Костромская, д. 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/1168.jpg",
- "trainings": 6
- },
- {
- "id": 2695,
- "name": "№2695 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.20430699999997",
- "latitude": "55.570283",
- "address": "красный октябрь 36",
- "city_id": 110,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/15aKyLis62c.jpg",
- "trainings": 1
- },
- {
- "id": 2696,
- "name": "№2696 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.756699",
- "latitude": "55.592419",
- "address": "МО, Ленинский район, п.Развилка",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20150305_192231.jpg",
- "trainings": 1
- },
- {
- "id": 2700,
- "name": "№2700 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.614614",
- "latitude": "55.790429",
- "address": "Москва ул. Октябрьская 38",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/22538.JPG",
- "trainings": 0
- },
- {
- "id": 2701,
- "name": "№2701 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.706194",
- "latitude": "55.868401",
- "address": "Федоскинская 107",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/368.JPG",
- "trainings": 2
- },
- {
- "id": 2710,
- "name": "№2710 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.015084",
- "latitude": "47.883895",
- "address": "г.Запорожье, ул. Рустави д.1",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150314_093348.jpg",
- "trainings": 0
- },
- {
- "id": 2711,
- "name": "№2711 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.908131",
- "latitude": "43.17108",
- "address": "Кирова 15",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150316_08231556.jpg",
- "trainings": 0
- },
- {
- "id": 2712,
- "name": "№2712 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.41967",
- "latitude": "55.801788",
- "address": "Пляж Строгино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0818-1.jpg",
- "trainings": 0
- },
- {
- "id": 2713,
- "name": "№2713 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.930468",
- "latitude": "43.113795",
- "address": "свеланская 197",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150317_133503.jpg",
- "trainings": 1
- },
- {
- "id": 2714,
- "name": "№2714 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.212762",
- "latitude": "55.59015",
- "address": "коммунистическая 23",
- "city_id": 110,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/OV3KmiHNrE8.jpg",
- "trainings": 0
- },
- {
- "id": 2715,
- "name": "№2715 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.93118",
- "latitude": "43.109619",
- "address": "ивановская 4/10",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150318_131530.jpg",
- "trainings": 1
- },
- {
- "id": 2716,
- "name": "№2716 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.936662",
- "latitude": "43.120307",
- "address": "луговая 55",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150318_133414.jpg",
- "trainings": 0
- },
- {
- "id": 2717,
- "name": "№2717 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.936645",
- "latitude": "43.122051",
- "address": "Луговая 59Б",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150318_133829.jpg",
- "trainings": 0
- },
- {
- "id": 2718,
- "name": "№2718 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.914339",
- "latitude": "43.11347",
- "address": "пушкинская 52",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150318_190340.jpg",
- "trainings": 0
- },
- {
- "id": 2719,
- "name": "№2719 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.60210299999994",
- "latitude": "55.827817",
- "address": "Останкинский парк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150906_15152168.jpg",
- "trainings": 10
- },
- {
- "id": 2720,
- "name": "№2720 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.925631",
- "latitude": "43.127668",
- "address": "Аллилуева 3",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150319_092820.jpg",
- "trainings": 0
- },
- {
- "id": 2721,
- "name": "№2721 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.92607",
- "latitude": "43.128687",
- "address": "Жигура 26",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150319_093337.jpg",
- "trainings": 0
- },
- {
- "id": 2723,
- "name": "№2723 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "131.932181",
- "latitude": "43.131387",
- "address": "Баляева 38",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150319_094509.jpg",
- "trainings": 1
- },
- {
- "id": 2724,
- "name": "№2724 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.93409",
- "latitude": "43.131636",
- "address": "Баляева 46",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150319_095312.jpg",
- "trainings": 0
- },
- {
- "id": 2725,
- "name": "№2725 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.24174",
- "latitude": "55.583013",
- "address": "Раменское,стадион рпкб",
- "city_id": 110,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/SAM_2153.JPG",
- "trainings": 1
- },
- {
- "id": 2726,
- "name": "№2726 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.58781",
- "latitude": "55.880736",
- "address": "Алтуфьевское шоссе, 56",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/182.JPG",
- "trainings": 0
- },
- {
- "id": 2727,
- "name": "№2727 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.217551",
- "latitude": "47.777809",
- "address": "г.Запорожье, ул. Малиновского д.9",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150319_134536[2].jpg",
- "trainings": 0
- },
- {
- "id": 2729,
- "name": "№2729 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.83331",
- "latitude": "55.41622",
- "address": "мкрн Авиационная, проспект Туполева, 8а",
- "city_id": 36,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2-141.jpg",
- "trainings": 1
- },
- {
- "id": 2732,
- "name": "№2732 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.835689",
- "latitude": "55.412178",
- "address": "мкрн Авиационная, улица Жуковского, 3",
- "city_id": 36,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/1-393.jpg",
- "trainings": 1
- },
- {
- "id": 2736,
- "name": "№2736 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.164138",
- "latitude": "47.828388",
- "address": "г.Запорожье, Пр.Ленина 146",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150320_100048.jpg",
- "trainings": 0
- },
- {
- "id": 2737,
- "name": "№2737 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.899213",
- "latitude": "43.12942",
- "address": "Красного знамени 29",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150321_142800.jpg",
- "trainings": 1
- },
- {
- "id": 2739,
- "name": "№2739 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.895258",
- "latitude": "43.125802",
- "address": "Партизанский 9",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150321_144840.jpg",
- "trainings": 1
- },
- {
- "id": 2740,
- "name": "№2740 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.697943",
- "latitude": "55.632829",
- "address": "Каширское шоссе, 80E",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_1027-1.jpg",
- "trainings": 9
- },
- {
- "id": 2741,
- "name": "№2741 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.375749",
- "latitude": "55.82729",
- "address": "Красногорский бульвар 48",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/PKMZ6cB6cOk10.jpg",
- "trainings": 3
- },
- {
- "id": 2742,
- "name": "№2742 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.910253",
- "latitude": "43.169031",
- "address": "Русская 17А",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150322_172935.jpg",
- "trainings": 0
- },
- {
- "id": 2743,
- "name": "№2743 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.913876",
- "latitude": "43.172936",
- "address": " 100-летия Владивостока проспект, 133в",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150322_175149.jpg",
- "trainings": 3
- },
- {
- "id": 2748,
- "name": "№2748 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.425982",
- "latitude": "59.890513",
- "address": "Санкт-Петербург улица Ткачей дом 42",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/132311.jpg",
- "trainings": 2
- },
- {
- "id": 2749,
- "name": "№2749 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.127059",
- "latitude": "55.600796",
- "address": "ул.жуковского 20",
- "city_id": 41,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0-K6F4IO7pM.jpg",
- "trainings": 1
- },
- {
- "id": 2750,
- "name": "№2750 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.676935",
- "latitude": "55.686575",
- "address": "г. Москва, м. Коломенская, Нагатинская наб. д.46",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20150328_133856.jpg",
- "trainings": 4
- },
- {
- "id": 2751,
- "name": "№2751 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.453079",
- "latitude": "55.862982",
- "address": "Набережная парка Северное Тушино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2015-03-28_08324033.jpg",
- "trainings": 0
- },
- {
- "id": 2753,
- "name": "№2753 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.447628",
- "latitude": "55.871334",
- "address": "На берегу Бутаковского залива в парке Северное Тушино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2015-03-28_090418.jpg",
- "trainings": 2
- },
- {
- "id": 2754,
- "name": "№2754 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.452666",
- "latitude": "55.868198",
- "address": "Набережная парка Северное Тушино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2015-03-28_091821.jpg",
- "trainings": 1
- },
- {
- "id": 2755,
- "name": "№2755 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.765215",
- "latitude": "47.231546",
- "address": "площадь Толстого",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/14633.jpg",
- "trainings": 4
- },
- {
- "id": 2756,
- "name": "№2756 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.719041999999945",
- "latitude": "55.750321",
- "address": "шоссе Энтузиастов, д. 26",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_2043 копия.JPG",
- "trainings": 2
- },
- {
- "id": 2757,
- "name": "№2757 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.268683",
- "latitude": "54.527185",
- "address": "г. Калуга, Московская улица, д. 165",
- "city_id": 50,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_6939.JPG",
- "trainings": 0
- },
- {
- "id": 2758,
- "name": "№2758 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.47612",
- "latitude": "56.235604",
- "address": "Октябрьская, 39в",
- "city_id": 31,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image25.jpg",
- "trainings": 0
- },
- {
- "id": 2759,
- "name": "№2759 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.465905",
- "latitude": "56.242432",
- "address": "Маяковского, 7а",
- "city_id": 31,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image6078.jpg",
- "trainings": 0
- },
- {
- "id": 2764,
- "name": "№2764 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "24.988728",
- "latitude": "52.545244",
- "address": "ул. Ленина, стадион",
- "city_id": 742,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_053525.jpg",
- "trainings": 2
- },
- {
- "id": 2765,
- "name": "№2765 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.72166100000004",
- "latitude": "55.74947",
- "address": "улица Пруд Ключики 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_204838.JPG",
- "trainings": 2
- },
- {
- "id": 2766,
- "name": "№2766 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.75573399999996",
- "latitude": "55.771894",
- "address": "Измайловский парк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_2052.JPG",
- "trainings": 4
- },
- {
- "id": 2767,
- "name": "№2767 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.346234",
- "latitude": "59.986468",
- "address": "Парголовская 11/2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/l5VKcccMAo4.jpg",
- "trainings": 4
- },
- {
- "id": 2769,
- "name": "№2769 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "23.78031299999998",
- "latitude": "53.656716",
- "address": "ул. Ольги соломовой 155",
- "city_id": 375,
- "country_id": 5,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/15790.jpg",
- "trainings": 5
- },
- {
- "id": 2770,
- "name": "№2770 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.895807",
- "latitude": "43.495593",
- "address": "г.Сочи,Кудепста,ул.Апшеронская 1,(СОШ №18)",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/gKv0Wxl6KjU.jpg",
- "trainings": 3
- },
- {
- "id": 2771,
- "name": "№2771 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.442446",
- "latitude": "53.260775",
- "address": "ул. Есенина, 6, Брянск, Брянская область, Россия",
- "city_id": 13,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150407_111644.jpg",
- "trainings": 2
- },
- {
- "id": 2772,
- "name": "№2772 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.355552",
- "latitude": "53.233052",
- "address": "ул. Репина, 13, Брянск, Брянская область, Россия",
- "city_id": 13,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150407_182230.jpg",
- "trainings": 0
- },
- {
- "id": 2774,
- "name": "№2774 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.532285",
- "latitude": "55.684195",
- "address": "Строителей 5 к.3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2764.jpg",
- "trainings": 1
- },
- {
- "id": 2775,
- "name": "№2775 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.565784",
- "latitude": "55.903541",
- "address": "ул. Угличская, д. 17, ЛПКиО",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/.PNG",
- "trainings": 1
- },
- {
- "id": 2787,
- "name": "№2787 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.761398",
- "latitude": "55.704617",
- "address": "Волгоградский пр-т, 74",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150411_103902.jpg",
- "trainings": 0
- },
- {
- "id": 2788,
- "name": "№2788 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.570152",
- "latitude": "55.550803",
- "address": "Москва, Изюмская улица, 37к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b46nyc_0e1074.jpg",
- "trainings": 3
- },
- {
- "id": 2789,
- "name": "№2789 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.569876",
- "latitude": "55.548128",
- "address": "Москва, Изюмская улица, 45к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4QwGd2xOMP4.jpg",
- "trainings": 2
- },
- {
- "id": 2790,
- "name": "№2790 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.569544",
- "latitude": "55.548768",
- "address": "Москва, Изюмская улица, 43",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/pcGjl1a0kXQ39.jpg",
- "trainings": 2
- },
- {
- "id": 2791,
- "name": "№2791 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.567218",
- "latitude": "55.545557",
- "address": "Москва, Изюмская улица, 49к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/_Xph03pvWdo.jpg",
- "trainings": 2
- },
- {
- "id": 2792,
- "name": "№2792 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.567738",
- "latitude": "55.54509",
- "address": "Москва, Изюмская улица, 49к4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/h1SAIg4QMJE.jpg",
- "trainings": 2
- },
- {
- "id": 2793,
- "name": "№2793 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.655027291015585",
- "latitude": "55.66497245470321",
- "address": "коломенский проезд 16",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150411_13243641.jpg",
- "trainings": 9
- },
- {
- "id": 2808,
- "name": "№2808 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.60204103589058",
- "latitude": "56.84524365693224",
- "address": "еремина 12",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150415_093659.jpg",
- "trainings": 4
- },
- {
- "id": 2813,
- "name": "№2813 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "23.792405",
- "latitude": "53.666364",
- "address": " Гродненская область, Гродненский район, г. Гродно, ул. О.Соломовой, 76",
- "city_id": 375,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150413_18_26_28_Pro.jpg",
- "trainings": 1
- },
- {
- "id": 2819,
- "name": "№2819 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.712223",
- "latitude": "55.618858",
- "address": "Шипиловская ул., 26/88",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/IMG_1429-1.jpg",
- "trainings": 5
- },
- {
- "id": 2820,
- "name": "№2820 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "142.747294",
- "latitude": "46.921048",
- "address": "Проспект Мира 452А",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0034.jpg",
- "trainings": 0
- },
- {
- "id": 2821,
- "name": "№2821 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.464981999999964",
- "latitude": "55.876326",
- "address": "г. Ногинск, площадь Революции, д. 10",
- "city_id": 90,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/pic5.jpg",
- "trainings": 2
- },
- {
- "id": 2823,
- "name": "№2823 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.814346",
- "latitude": "55.805301",
- "address": "13-я Парковая улица, 28к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_258817.jpg",
- "trainings": 2
- },
- {
- "id": 2824,
- "name": "№2824 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "45.97775738686323",
- "latitude": "51.527533872518454",
- "address": "Саратов, Политехническая 77",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0_ae355_e593fcc7_XL.jpg",
- "trainings": 0
- },
- {
- "id": 2825,
- "name": "№2825 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "46.04271747171879",
- "latitude": "51.5240438499445",
- "address": "Саратов, Политехническая 77",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/09 (1).jpg",
- "trainings": 1
- },
- {
- "id": 2826,
- "name": "№2826 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.270243",
- "latitude": "59.879825",
- "address": "Россия, Санкт-Петербург, улица Васи Алексеева, 14",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150423_020750.JPG",
- "trainings": 3
- },
- {
- "id": 2827,
- "name": "№2827 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.504234",
- "latitude": "55.663741",
- "address": "ул. Лобачевского, д.3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/gk_4.jpg",
- "trainings": 2
- },
- {
- "id": 2828,
- "name": "№2828 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "23.789254",
- "latitude": "53.659377",
- "address": "ул. Репина, 17",
- "city_id": 375,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150422_005.jpg",
- "trainings": 1
- },
- {
- "id": 2842,
- "name": "№2842 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.802943",
- "latitude": "55.7905",
- "address": "нижняя первомайская 24",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150429_001.jpg",
- "trainings": 2
- },
- {
- "id": 2862,
- "name": "№2862 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.606043",
- "latitude": "55.821058",
- "address": "Академика Королева 19",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 11,
- "preview": "https://workout.su/uploads/userfiles/20150430_141213 (1280x960).jpg",
- "trainings": 16
- },
- {
- "id": 2863,
- "name": "№2863 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.099127",
- "latitude": "44.555976",
- "address": "Переулок сосновый 3/1а",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image1337.jpg",
- "trainings": 2
- },
- {
- "id": 2864,
- "name": "№2864 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "41.484944",
- "latitude": "52.712132",
- "address": "Парк дружбы",
- "city_id": 631,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/WP_20150405_18_00_35_Pro72.jpg",
- "trainings": 4
- },
- {
- "id": 2865,
- "name": "№2865 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "75.33263",
- "latitude": "51.727002",
- "address": "ул. Строительная 48А",
- "city_id": 7421,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150430_064053[2].jpg",
- "trainings": 2
- },
- {
- "id": 2867,
- "name": "№2867 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.318543389439583",
- "latitude": "60.00415633579297",
- "address": "Удельный парк",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150504_190422.jpg",
- "trainings": 2
- },
- {
- "id": 2871,
- "name": "№2871 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.761344",
- "latitude": "55.702004",
- "address": "Маршала Чуйкова 12",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20150503_185821 (1280x960).jpg",
- "trainings": 3
- },
- {
- "id": 2876,
- "name": "№2876 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.65575200000001",
- "latitude": "55.648116",
- "address": "Пролетарский проспект 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/p.jpg",
- "trainings": 1
- },
- {
- "id": 2878,
- "name": "№2878 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.804281",
- "latitude": "55.789631",
- "address": "11-я парковая 3к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/WP_20150506_026.jpg",
- "trainings": 0
- },
- {
- "id": 2879,
- "name": "№2879 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.799436",
- "latitude": "55.788296",
- "address": "9-я парковая 1к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150506_019.jpg",
- "trainings": 0
- },
- {
- "id": 2880,
- "name": "№2880 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.803979",
- "latitude": "55.788413",
- "address": "измайловский проспект, 87",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150506_021.jpg",
- "trainings": 0
- },
- {
- "id": 2881,
- "name": "№2881 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.96196",
- "latitude": "55.102657",
- "address": "ул. Столетова, 22, Новосибирск, Новосибирская область, Россия",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150507_200307.jpg",
- "trainings": 1
- },
- {
- "id": 2882,
- "name": "№2882 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "69.378849",
- "latitude": "53.285763",
- "address": "Городской парк",
- "city_id": 414,
- "country_id": 11,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/BBTeuJVNU18.jpg",
- "trainings": 1
- },
- {
- "id": 2883,
- "name": "№2883 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.61475999999993",
- "latitude": "55.719044",
- "address": "Хавская улица д.1 корп. 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2015-04-28 21.14.48.jpg",
- "trainings": 5
- },
- {
- "id": 2884,
- "name": "№2884 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.512622",
- "latitude": "55.874738",
- "address": "Улица Весенняя, дом 18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_0698[1]37.JPG",
- "trainings": 2
- },
- {
- "id": 2885,
- "name": "№2885 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.260234999999966",
- "latitude": "59.87602",
- "address": "Краснопутиловская ул., 2, Санкт-Петербург",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150515_010153.JPG",
- "trainings": 1
- },
- {
- "id": 2892,
- "name": "№2892 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.465011",
- "latitude": "44.588398",
- "address": "Севастополь Проспект октябрьской революции 89",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/vQqK0Unn-gs.jpg",
- "trainings": 1
- },
- {
- "id": 2893,
- "name": "№2893 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "33.439304",
- "latitude": "44.586165",
- "address": "Севастополь ул. Героев Сталинграда, 31",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/23636.jpg",
- "trainings": 4
- },
- {
- "id": 2894,
- "name": "№2894 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.440604",
- "latitude": "44.580833",
- "address": "Севастополь, улица Бориса Михайлова, 10",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2123.jpg",
- "trainings": 0
- },
- {
- "id": 2895,
- "name": "№2895 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.134613",
- "latitude": "44.974267",
- "address": "Проспект победы 218",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/aDrBxLY2luo.jpg",
- "trainings": 1
- },
- {
- "id": 2897,
- "name": "№2897 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.519661",
- "latitude": "57.865068",
- "address": "Ярославская обл., Тутаевский р-н, Тутаев г., просп. 50-летия Победы, 23",
- "city_id": 801,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ школа.jpg",
- "trainings": 1
- },
- {
- "id": 2898,
- "name": "№2898 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.259773",
- "latitude": "59.871767",
- "address": "город Санкт-Петербург, проспект Стачек 82",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150518_010136.JPG",
- "trainings": 2
- },
- {
- "id": 2902,
- "name": "№2902 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.29787493497133",
- "latitude": "50.02928831088039",
- "address": "Саперная 30",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150520_104137a99.jpg",
- "trainings": 1
- },
- {
- "id": 2903,
- "name": "№2903 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.2586",
- "latitude": "50.032106",
- "address": "макаренка 17",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1432927699429_tmp.png",
- "trainings": 1
- },
- {
- "id": 2904,
- "name": "№2904 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.245822",
- "latitude": "50.020455",
- "address": "парк Горького",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150519_100026a.jpg",
- "trainings": 1
- },
- {
- "id": 2905,
- "name": "№2905 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "137.02410099999997",
- "latitude": "50.542658",
- "address": "аллея Труда 22",
- "city_id": 751,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/006377.jpg",
- "trainings": 2
- },
- {
- "id": 2906,
- "name": "№2906 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.590637",
- "latitude": "64.593993",
- "address": "Пионерская д.2-4 ",
- "city_id": 799,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150520_210036.jpg",
- "trainings": 1
- },
- {
- "id": 2908,
- "name": "№2908 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.604102",
- "latitude": "56.817789",
- "address": "г. Екатеринбург, ул. 8 Марта, 84а",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_1563.jpg",
- "trainings": 4
- },
- {
- "id": 2909,
- "name": "№2909 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.603429",
- "latitude": "56.817981",
- "address": "г. Екатеринбург, ул. 8 Марта, 84а",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC_1556.jpg",
- "trainings": 2
- },
- {
- "id": 2911,
- "name": "№2911 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "61.91277",
- "latitude": "56.414098",
- "address": "Свердловская область, г. Каменск-Уральский, ул.Кадочникова",
- "city_id": 7376,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/_SH_640947.jpg",
- "trainings": 0
- },
- {
- "id": 2919,
- "name": "№2919 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "75.31129",
- "latitude": "51.728057",
- "address": "10-й микрорайон, Экибастуз 140000",
- "city_id": 7421,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1432514463286_tmp.png",
- "trainings": 1
- },
- {
- "id": 2920,
- "name": "№2920 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "28.59614",
- "latitude": "49.887819",
- "address": "Фрунзе, 18",
- "city_id": 7379,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20141102_102759.jpg",
- "trainings": 0
- },
- {
- "id": 2921,
- "name": "№2921 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.48682800000006",
- "latitude": "55.936986",
- "address": "Долгопрудный, д. 2",
- "city_id": 35,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/20150527_210824.jpg",
- "trainings": 12
- },
- {
- "id": 2922,
- "name": "№2922 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.341576",
- "latitude": "55.698474",
- "address": " ЗЯБ,ул Комарова, д.27/34",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150526_200510.jpg",
- "trainings": 1
- },
- {
- "id": 2923,
- "name": "№2923 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.328948",
- "latitude": "55.6762",
- "address": "Замелекесье,ул Авангардная,21/32а",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150526_192317.jpg",
- "trainings": 1
- },
- {
- "id": 2924,
- "name": "№2924 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.308531",
- "latitude": "55.68956",
- "address": "ГЭС,пр Мусы Джалиля,10/3",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/drRLIw_WoyE.jpg",
- "trainings": 1
- },
- {
- "id": 2925,
- "name": "№2925 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.339473",
- "latitude": "55.697107",
- "address": "ЗЯБ,ул Жукова,17/24",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/kW66pqH0mtY.jpg",
- "trainings": 0
- },
- {
- "id": 2926,
- "name": "№2926 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.315017",
- "latitude": "55.69562",
- "address": "ГЭС,пр Мусы Джалиля,школа №1",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/hBmjdGsElRE.jpg",
- "trainings": 0
- },
- {
- "id": 2927,
- "name": "№2927 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.385167",
- "latitude": "55.741118",
- "address": " проспект Раиса Беляева,школа № 60,",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7-dTYJS6Qzo.jpg",
- "trainings": 1
- },
- {
- "id": 2928,
- "name": "№2928 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.381111",
- "latitude": "55.730462",
- "address": " проспект Дружбы Народов,31/13 ,школа № 50.",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/526d6mgFNFY.jpg",
- "trainings": 2
- },
- {
- "id": 2929,
- "name": "№2929 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.304808",
- "latitude": "55.685164",
- "address": "ГЭС,пер.Гафиатуллина,8/10",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/g9iNi05pJS0.jpg",
- "trainings": 1
- },
- {
- "id": 2930,
- "name": "№2930 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.426495",
- "latitude": "55.74621",
- "address": "пр.Вахитова,30/5а",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150529_190419.jpg",
- "trainings": 0
- },
- {
- "id": 2931,
- "name": "№2931 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.430019",
- "latitude": "55.745685",
- "address": "пр.Вахитова,30/17",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150529_190743.jpg",
- "trainings": 0
- },
- {
- "id": 2932,
- "name": "№2932 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "52.432503",
- "latitude": "55.747085",
- "address": "Шишкинский бульвар,29/23",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150529_191117.jpg",
- "trainings": 0
- },
- {
- "id": 2933,
- "name": "№2933 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.435164",
- "latitude": "55.748667",
- "address": "Автозаводский проспект,29/9",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150529_191610.jpg",
- "trainings": 0
- },
- {
- "id": 2934,
- "name": "№2934 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.447003",
- "latitude": "55.754892",
- "address": "пр.Московский,27/16",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150529_193029.jpg",
- "trainings": 0
- },
- {
- "id": 2935,
- "name": "№2935 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "52.442712",
- "latitude": "55.76064",
- "address": "пр.Мира,26/6",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150529_193854.jpg",
- "trainings": 0
- },
- {
- "id": 2936,
- "name": "№2936 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.441725",
- "latitude": "55.759396",
- "address": "пр.Мира,26/5",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150529_194206.jpg",
- "trainings": 0
- },
- {
- "id": 2937,
- "name": "№2937 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.435022",
- "latitude": "55.756604",
- "address": "Камала бульвар,27/04",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0BTiEsbUUu0.jpg",
- "trainings": 0
- },
- {
- "id": 2938,
- "name": "№2938 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "52.43537",
- "latitude": "55.757051",
- "address": "Камала бульвар,27/01",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DKGC8SYSWwQ.jpg",
- "trainings": 0
- },
- {
- "id": 2939,
- "name": "№2939 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "52.427579",
- "latitude": "55.752495",
- "address": " шишкинский бульвар,28/04",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/YwWXGybK1ss.jpg",
- "trainings": 0
- },
- {
- "id": 2940,
- "name": "№2940 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.428244",
- "latitude": "55.751083",
- "address": "Шишкинский бульвар,гимназия №77",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/F9r6Mw5kclw.jpg",
- "trainings": 0
- },
- {
- "id": 2941,
- "name": "№2941 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "52.296161",
- "latitude": "55.678463",
- "address": "ГЭС,6/16,шк №3",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/K7pvbnGUYpM.jpg",
- "trainings": 0
- },
- {
- "id": 2942,
- "name": "№2942 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "52.421117",
- "latitude": "55.749214",
- "address": "пр.Мира ,30/1",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/JykusDAuqC8.jpg",
- "trainings": 0
- },
- {
- "id": 2943,
- "name": "№2943 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "52.41078",
- "latitude": "55.742924",
- "address": "пр,Мира,3/1",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/JDqWyMZA5MQ.jpg",
- "trainings": 0
- },
- {
- "id": 2944,
- "name": "№2944 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "26.065682059549317",
- "latitude": "53.14586528883913",
- "address": "пер. Гаевый, Барановичи",
- "city_id": 370,
- "country_id": 5,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/p9kRmzJENlo.jpg",
- "trainings": 8
- },
- {
- "id": 2945,
- "name": "№2945 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.4608",
- "latitude": "55.724609",
- "address": "Кременчугская улица, 4к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/22982.jpg",
- "trainings": 0
- },
- {
- "id": 2947,
- "name": "№2947 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.71667200000002",
- "latitude": "55.755626",
- "address": "Авиамоторная улица 37",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_2136.JPG",
- "trainings": 1
- },
- {
- "id": 2948,
- "name": "№2948 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.76387199999999",
- "latitude": "55.76119",
- "address": "Шоссе Энтузиастов вл.33Д",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_2141.JPG",
- "trainings": 1
- },
- {
- "id": 2949,
- "name": "№2949 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.71617800000001",
- "latitude": "43.589158",
- "address": "Ул. Егорова, д.1, территория Парка \"Ривьера\"",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/IMG_6624.jpeg",
- "trainings": 5
- },
- {
- "id": 2953,
- "name": "№2953 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.94229840000003",
- "latitude": "43.41529",
- "address": "Адлерский район, Адлер, Нагорный тупик",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_6705.jpeg",
- "trainings": 0
- },
- {
- "id": 2954,
- "name": "№2954 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.531177999999954",
- "latitude": "55.877213",
- "address": "г. Москва, Софьи Ковалевской ул., 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150604_202606.jpg",
- "trainings": 3
- },
- {
- "id": 2955,
- "name": "№2955 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.006842",
- "latitude": "56.294104",
- "address": "горловская 9",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/_горловская_9.jpg",
- "trainings": 1
- },
- {
- "id": 2956,
- "name": "№2956 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.636081",
- "latitude": "55.785414",
- "address": "проспект мира, 58",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150605_003.jpg",
- "trainings": 1
- },
- {
- "id": 2957,
- "name": "№2957 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.639354",
- "latitude": "55.784836",
- "address": "скрябинский переулок, 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/WP_20150605_001.jpg",
- "trainings": 0
- },
- {
- "id": 2959,
- "name": "№2959 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.795608",
- "latitude": "55.792572",
- "address": "первомайская дом 60",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20141125_001(1).jpg",
- "trainings": 0
- },
- {
- "id": 2960,
- "name": "№2960 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.85492",
- "latitude": "56.736927",
- "address": "Ул. Советская, д.3",
- "city_id": 7445,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/117.jpg",
- "trainings": 1
- },
- {
- "id": 2961,
- "name": "№2961 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "86.17445647716522",
- "latitude": "55.335735336917075",
- "address": "Строителей бульвар, 50",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/IMG_5850_1-1024x68267.jpg",
- "trainings": 4
- },
- {
- "id": 2962,
- "name": "№2962 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.478705",
- "latitude": "55.65441",
- "address": "Москва, р-н Тропарёво-Никулино, метро Юго-Западная, на пересечении Проспекта Вернадского и ул. Тропарёвской.",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/pl57.jpg",
- "trainings": 7
- },
- {
- "id": 2963,
- "name": "№2963 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.18918299999996",
- "latitude": "55.488612",
- "address": "д. Василенцево, дом 60",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150612_195918.jpg",
- "trainings": 0
- },
- {
- "id": 2964,
- "name": "№2964 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.171227000000044",
- "latitude": "56.301429",
- "address": "Улица Замышляева",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_2190.JPG",
- "trainings": 6
- },
- {
- "id": 2965,
- "name": "№2965 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "36.033727",
- "latitude": "55.494176",
- "address": "Московская область, Можайский район, Можайск, Восточная улица, 19",
- "city_id": 81,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-28-13-03-23-wfn.jpg",
- "trainings": 3
- },
- {
- "id": 2967,
- "name": "№2967 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.45964300000003",
- "latitude": "56.007424",
- "address": "Улица Мирная 24А",
- "city_id": 73,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_219316.JPG",
- "trainings": 1
- },
- {
- "id": 2969,
- "name": "№2969 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.776827",
- "latitude": "55.894625",
- "address": "Улица Калинина, Сквер",
- "city_id": 666,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/image2994.jpg",
- "trainings": 1
- },
- {
- "id": 2970,
- "name": "№2970 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.803296",
- "latitude": "55.796955",
- "address": "Измайловский бульвар, 55",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150616_004.jpg",
- "trainings": 1
- },
- {
- "id": 2971,
- "name": "№2971 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.631238",
- "latitude": "55.788037",
- "address": "Гиляровского 59",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/WP_20150923_001.jpg",
- "trainings": 1
- },
- {
- "id": 2972,
- "name": "№2972 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.630571",
- "latitude": "55.788731",
- "address": "трифоновская 56с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150619_001.jpg",
- "trainings": 0
- },
- {
- "id": 2973,
- "name": "№2973 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.319074",
- "latitude": "60.053097",
- "address": "Хошимина 6 к 4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/_IMG_0104.jpg",
- "trainings": 2
- },
- {
- "id": 2974,
- "name": "№2974 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "37.56046100000003",
- "latitude": "55.713152",
- "address": "м. Воробьёвы Горы, ул. Лужники, 24 строение 21",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 17,
- "preview": "https://workout.su/uploads/userfiles/gBYkxGxt9jChOK37p-LPTQ-article41.jpg",
- "trainings": 31
- },
- {
- "id": 2975,
- "name": "№2975 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.531659",
- "latitude": "55.886043",
- "address": "Софьи Ковалевской ул., 14, Парк Отдыха Ветеранов",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/19_06_2015 20_04_09.jpeg",
- "trainings": 2
- },
- {
- "id": 2976,
- "name": "№2976 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.59333735704422",
- "latitude": "55.110656889057815",
- "address": " улица Комарова, дом 10",
- "city_id": 796,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/34543.jpg",
- "trainings": 0
- },
- {
- "id": 2977,
- "name": "№2977 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.542783",
- "latitude": "55.74406",
- "address": "Кутузовский пр-т, д. 26",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20150621_115935.jpg",
- "trainings": 0
- },
- {
- "id": 2978,
- "name": "№2978 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.538111",
- "latitude": "55.742997",
- "address": "Кутузовский пр-т, д. 28",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150621_131806.jpg",
- "trainings": 0
- },
- {
- "id": 2979,
- "name": "№2979 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.659661",
- "latitude": "55.820774",
- "address": "Космонавтов, 22",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150621_192609.jpg",
- "trainings": 1
- },
- {
- "id": 2980,
- "name": "№2980 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "135.050056",
- "latitude": "48.476285",
- "address": "Территория стадиона им. Ленина",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150622_060808.jpg",
- "trainings": 2
- },
- {
- "id": 2981,
- "name": "№2981 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.940415",
- "latitude": "55.796047",
- "address": "Балашиха, проспект Ленина, 14",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/WP_20150621_001.jpg",
- "trainings": 1
- },
- {
- "id": 2982,
- "name": "№2982 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.955159",
- "latitude": "55.800776",
- "address": "Балашиха, быковского, 2",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/WP_20150621_009.jpg",
- "trainings": 0
- },
- {
- "id": 2987,
- "name": "№2987 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.212791",
- "latitude": "51.655412",
- "address": "Петровская набережная ",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_6920_1.jpg",
- "trainings": 2
- },
- {
- "id": 2988,
- "name": "№2988 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.515559",
- "latitude": "54.001974",
- "address": "Ул. Ленина, Парк за ДК",
- "city_id": 4428,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/KMPQQ3qWSrQ66.jpg",
- "trainings": 3
- },
- {
- "id": 2991,
- "name": "№2991 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.381521",
- "latitude": "61.791892",
- "address": "онежская набережная, петрозаводск",
- "city_id": 102,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150611_183410.jpg",
- "trainings": 4
- },
- {
- "id": 2993,
- "name": "№2993 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.43428875505924",
- "latitude": "59.96472525791407",
- "address": "проспект Энергетиков 48 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1434200444090_tmp.png",
- "trainings": 1
- },
- {
- "id": 2997,
- "name": "№2997 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.51183757716219",
- "latitude": "55.818033763576636",
- "address": "Вокзальный пер., 3, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1435310806866_tmp.png",
- "trainings": 1
- },
- {
- "id": 2999,
- "name": "№2999 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.27675725519657",
- "latitude": "60.010575779048615",
- "address": "Байконурская 17",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/1435399499411_tmp.png",
- "trainings": 2
- },
- {
- "id": 3001,
- "name": "№3001 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.43517602",
- "latitude": "59.96411369",
- "address": "просп. Энергетиков, 46 корпус 2, Санкт-Петербург, Россия",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1435413026536_tmp.png",
- "trainings": 2
- },
- {
- "id": 3002,
- "name": "№3002 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.066661",
- "latitude": "56.286428",
- "address": "Верхнепечерская 7",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150628_175211.jpg",
- "trainings": 1
- },
- {
- "id": 3004,
- "name": "№3004 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.762138",
- "latitude": "55.822792",
- "address": "николая химушина, 13к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150626_001.jpg",
- "trainings": 0
- },
- {
- "id": 3005,
- "name": "№3005 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.7601",
- "latitude": "55.821504",
- "address": "николая химушина, 9к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150626_005.jpg",
- "trainings": 1
- },
- {
- "id": 3006,
- "name": "№3006 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.483523",
- "latitude": "59.882057",
- "address": "Проспект Большевиков, д.59к4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_6967.JPG",
- "trainings": 0
- },
- {
- "id": 3007,
- "name": "№3007 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.752386",
- "latitude": "55.823071",
- "address": "открытое шоссе, 17к7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150626_013.jpg",
- "trainings": 0
- },
- {
- "id": 3008,
- "name": "№3008 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.805765",
- "latitude": "55.774762",
- "address": "лебедянский пруд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150627_001.jpg",
- "trainings": 1
- },
- {
- "id": 3009,
- "name": "№3009 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.803962",
- "latitude": "55.777371",
- "address": "лебедянский пруд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150627_003.jpg",
- "trainings": 0
- },
- {
- "id": 3010,
- "name": "№3010 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.807349",
- "latitude": "55.792786",
- "address": "первомайская, 88",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150629_001.jpg",
- "trainings": 1
- },
- {
- "id": 3011,
- "name": "№3011 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.06128",
- "latitude": "56.298872",
- "address": "Германа Лопатина 4к2",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150629_19074447.jpg",
- "trainings": 1
- },
- {
- "id": 3012,
- "name": "№3012 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "53.86828200000002",
- "latitude": "63.604935",
- "address": "ул Герцена 7",
- "city_id": 7450,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150710_06220210.jpg",
- "trainings": 1
- },
- {
- "id": 3013,
- "name": "№3013 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "135.109073",
- "latitude": "48.43123",
- "address": "Краснореченская 161А",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_6583.JPG",
- "trainings": 0
- },
- {
- "id": 3014,
- "name": "№3014 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.92906",
- "latitude": "57.648443",
- "address": "пр. Авиаторов",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ADU5WX_tOSY84.jpg",
- "trainings": 2
- },
- {
- "id": 3016,
- "name": "№3016 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.183579",
- "latitude": "51.703962",
- "address": "ул. Хользунова, 50, Воронеж, Воронежская область, Россия",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1435906424970_tmp.png",
- "trainings": 0
- },
- {
- "id": 3017,
- "name": "№3017 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.18586093",
- "latitude": "51.68674628",
- "address": "Лидии Рябцевой ул., 57, Воронеж, Воронежская область, Россия",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1435928885987_tmp.png",
- "trainings": 1
- },
- {
- "id": 3018,
- "name": "№3018 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.321356",
- "latitude": "56.375792",
- "address": "Крутцы, пляж реки Раменка, зона отдыха",
- "city_id": 58,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/GsFyVjw0De4.jpg",
- "trainings": 0
- },
- {
- "id": 3019,
- "name": "№3019 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.47131300000001",
- "latitude": "55.860823",
- "address": "Беломорская 14 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/P1010121.JPG",
- "trainings": 2
- },
- {
- "id": 3020,
- "name": "№3020 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.4656",
- "latitude": "55.865752",
- "address": "Ленинградское шоссе 112 4 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P1010123.JPG",
- "trainings": 1
- },
- {
- "id": 3021,
- "name": "№3021 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.463997",
- "latitude": "55.868843",
- "address": "Ленинградское шоссе 124 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P1010128.JPG",
- "trainings": 1
- },
- {
- "id": 3022,
- "name": "№3022 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.970216",
- "latitude": "57.585747",
- "address": "Прусовские озера",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3WKlfJy5jYQ51.jpg",
- "trainings": 2
- },
- {
- "id": 3023,
- "name": "№3023 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.471280999999976",
- "latitude": "55.85605",
- "address": "ленинградское шоссе 94",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P1010001.JPG",
- "trainings": 0
- },
- {
- "id": 3024,
- "name": "№3024 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.473388",
- "latitude": "55.866132",
- "address": "Беломорская 13 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P1010008.JPG",
- "trainings": 1
- },
- {
- "id": 3025,
- "name": "№3025 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.46993",
- "latitude": "55.858719",
- "address": "Ленинградское шоссе 104",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/231.JPG",
- "trainings": 0
- },
- {
- "id": 3026,
- "name": "№3026 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.470095",
- "latitude": "55.85734",
- "address": "Ленинградское шоссе 96 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P1010010.JPG",
- "trainings": 0
- },
- {
- "id": 3057,
- "name": "№3057 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.663434",
- "latitude": "55.64234",
- "address": "ул. Москворечье 18к5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150630_112709.jpg",
- "trainings": 1
- },
- {
- "id": 3058,
- "name": "№3058 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.43281145",
- "latitude": "59.96499396",
- "address": "ул. Маршала Тухачевского, 9, Санкт-Петербург, Россия",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1436197759537_tmp.png",
- "trainings": 0
- },
- {
- "id": 3059,
- "name": "№3059 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.02568093000002",
- "latitude": "55.03218764",
- "address": "Высоцкого 41/2",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1436244910553_tmp.png",
- "trainings": 0
- },
- {
- "id": 3061,
- "name": "№3061 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.473607",
- "latitude": "55.855086",
- "address": "Фестивальная 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG-20150709-00197.jpg",
- "trainings": 0
- },
- {
- "id": 3062,
- "name": "№3062 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.476683",
- "latitude": "55.817837",
- "address": "Парк Покровское-Стрешнево",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/96_1280.jpg",
- "trainings": 5
- },
- {
- "id": 3063,
- "name": "№3063 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.431337",
- "latitude": "59.967411",
- "address": "ул. Маршала Тухачевского, 17, Санкт-Петербург, Россия",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1436545216873_tmp.png",
- "trainings": 0
- },
- {
- "id": 3064,
- "name": "№3064 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.463991",
- "latitude": "55.872306",
- "address": "Валдайский 22",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG-20150710-00200.jpg",
- "trainings": 0
- },
- {
- "id": 3065,
- "name": "№3065 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.462399",
- "latitude": "55.873795",
- "address": "Прибрежный 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG-20150711-00206.jpg",
- "trainings": 0
- },
- {
- "id": 3066,
- "name": "№3066 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.470527",
- "latitude": "55.865095",
- "address": "Беломорская 5 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG-20150711-00211.jpg",
- "trainings": 0
- },
- {
- "id": 3067,
- "name": "№3067 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.46510195738665",
- "latitude": "55.877434823247356",
- "address": "Пляж Левобережный",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG-20150711-00210.jpg",
- "trainings": 4
- },
- {
- "id": 3068,
- "name": "№3068 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.49367365032817",
- "latitude": "55.82827867989176",
- "address": "Ленинградское ш., 26 строение 3, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1436783547704_tmp.png",
- "trainings": 2
- },
- {
- "id": 3069,
- "name": "№3069 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.696525",
- "latitude": "65.030622",
- "address": "о. Соловки, ул. Северная, д.17",
- "city_id": 7453,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/file89.jpg",
- "trainings": 0
- },
- {
- "id": 3070,
- "name": "№3070 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "87.154167",
- "latitude": "53.754098",
- "address": "Новокузнецк ул тольятти",
- "city_id": 568,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8iCKMCCeb-o.jpg",
- "trainings": 2
- },
- {
- "id": 3078,
- "name": "№3078 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.487747",
- "latitude": "55.835041",
- "address": "Ленинградское 48 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG-20150713-00214.jpg",
- "trainings": 0
- },
- {
- "id": 3081,
- "name": "№3081 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.415678",
- "latitude": "55.738825",
- "address": "Ярцевская 28",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG-20150713-00219.jpg",
- "trainings": 1
- },
- {
- "id": 3082,
- "name": "№3082 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "151.503933",
- "latitude": "-33.335022",
- "address": "Hutton Road, The Entrance North, The Entrance, New South Wales, Australia",
- "city_id": 7904,
- "country_id": 1,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f293d944415cc429905588f620d6d0ae1436883207.jpg",
- "trainings": 0
- },
- {
- "id": 3083,
- "name": "№3083 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "14.496512",
- "latitude": "50.07227",
- "address": "2388/14, Nosická, Strašnice, Prague, okres Hlavní město Praha, Hlavní město Praha, Praha, 10000, Czech Republic",
- "city_id": 806,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3ac8160fb3b16dc3e2926177d9d1a5001436884228.jpg",
- "trainings": 0
- },
- {
- "id": 3084,
- "name": "№3084 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "11.235347",
- "latitude": "50.963578",
- "address": "70, Herrenstraße, Nohra, Grammetal, Landkreis Weimarer Land, Thüringen, 99428, Deutschland",
- "city_id": 7494,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5d29d8d5d269c2a7f56df238cd597e221436884230.jpg",
- "trainings": 0
- },
- {
- "id": 3085,
- "name": "№3085 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-123.153136",
- "latitude": "49.275365",
- "address": "Hadden Park, Seaside - Kitsilano Park, Kitsilano, Vancouver, Greater Vancouver Regional District, British Columbia, V6J3H1, Canada",
- "city_id": 7457,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1bfa67c4e66580ba94f6d8045e9dac781436884235.jpg",
- "trainings": 0
- },
- {
- "id": 3086,
- "name": "№3086 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.719351",
- "latitude": "45.009203",
- "address": "Colone, Camp Colone, Stancija Meneghetti, Općina Bale, Istria, Croatia",
- "city_id": 7554,
- "country_id": 26,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b49864e26f1c3df084b9d86f633ab2bb1436884238.jpg",
- "trainings": 0
- },
- {
- "id": 3087,
- "name": "№3087 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "17.112056",
- "latitude": "48.107363",
- "address": "Detský areál Veľký Draždiak, Tematínska, Lúky, Petržalka, District of Bratislava V, Bratislava, Region of Bratislava, 851 05, Slovakia",
- "city_id": 7459,
- "country_id": 43,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1da28225c656c753d03247546155a7b61436884242.jpg",
- "trainings": 0
- },
- {
- "id": 3088,
- "name": "№3088 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "15.63678",
- "latitude": "47.201821",
- "address": "SV Krottendorf, Energiestraße, Radmannsdorf, Weiz, Styria, 8160, Austria",
- "city_id": 7903,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/700645882b19b36e0d4e73792ef11b631436884245.jpg",
- "trainings": 0
- },
- {
- "id": 3089,
- "name": "№3089 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "10.263295",
- "latitude": "60.164721",
- "address": "18, Dronningens gate, Hønefoss, Ringerike, Buskerud, 3510, Norway",
- "city_id": 7902,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/862ac745e5bfb8febde3aff97029dfd11436884248.jpg",
- "trainings": 0
- },
- {
- "id": 3090,
- "name": "№3090 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "7.84896",
- "latitude": "52.04274",
- "address": "Lienener Damm, Ostbevern, Kreis Warendorf, Regierungsbezirk Münster, Nordrhein-Westfalen, 48346, Deutschland",
- "city_id": 7901,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e3970ff55919fa0b44afe2c077d661c11436884251.jpg",
- "trainings": 0
- },
- {
- "id": 3091,
- "name": "№3091 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-70.409282",
- "latitude": "-23.672151",
- "address": "Avenida República de Croacia, Antofagasta, Provincia de Antofagasta, II Región de Antofagasta, 1240000, Chile",
- "city_id": 7900,
- "country_id": 56,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/91fe1dc65fa4b68600a6f7704679bd5d1436884255.jpg",
- "trainings": 0
- },
- {
- "id": 3092,
- "name": "№3092 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.081413",
- "latitude": "-26.689354",
- "address": "Meyer Street, Potchefstroom, Tlokwe Ward 7, Tlokwe Local Municipality, Dr Kenneth Kaunda District Municipality, North West, 2531, RSA",
- "city_id": 7899,
- "country_id": 53,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7f9fa55f8b81a33ea39667ffe92656351436884258.jpg",
- "trainings": 0
- },
- {
- "id": 3093,
- "name": "№3093 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "127.826713",
- "latitude": "26.308046",
- "address": "沖縄県総合運動公園線, Okinawa, Kunigami, Okinawa Prefecture, Kyushu Region, Japan",
- "city_id": 7898,
- "country_id": 46,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2b46c858fc53c1b760b570730bf342d91436884503.jpg",
- "trainings": 0
- },
- {
- "id": 3094,
- "name": "№3094 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "-0.466434",
- "latitude": "39.452327",
- "address": "Calle del Doctor Fleming, Polígono de Bovalar, Alacuás, Huerta Oeste, Valencia, Comunidad Valenciana, 46970, España",
- "city_id": 7897,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/399e39cbe66a513b128d116b6c0139bc1436884506.jpg",
- "trainings": 0
- },
- {
- "id": 3095,
- "name": "№3095 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "23.645956",
- "latitude": "61.463223",
- "address": "Kuntopuisto, Vähäjärven rantatie, Suuppa, Pirkkala, Pirkanmaa, Western and Central Finland, Western Finland, 33960, Finland",
- "city_id": 7896,
- "country_id": 23,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a4eb9edca8aec27611eeaf49f56263481436884509.jpg",
- "trainings": 0
- },
- {
- "id": 3096,
- "name": "№3096 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "25.091456",
- "latitude": "60.354917",
- "address": "Peuratie, Leppäkorpi, Korson suuralue, Vantaa, Helsingin seutukunta, Uusimaa, Southern Finland, 01480, Finland",
- "city_id": 699,
- "country_id": 23,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b2e387c348bd29d58fe64e47276d49031436884514.jpg",
- "trainings": 0
- },
- {
- "id": 3097,
- "name": "№3097 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "5.832274",
- "latitude": "52.238768",
- "address": "Papendallaan, Arnhem, Stadsregio Arnhem Nijmegen, Gelderland, Netherlands, 6816VD, The Netherlands",
- "city_id": 7895,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/922e4c65a849f46d75cbdd013208d44b1436884517.jpg",
- "trainings": 0
- },
- {
- "id": 3098,
- "name": "№3098 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "69.316063",
- "latitude": "41.375032",
- "address": "Школа №258, ЮнусАбад 19 квартал, Yunusabad district, Tashkent, 100000, Uzbekistan",
- "city_id": 470,
- "country_id": 21,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6b45f095eef3d0f78cc18d34245e3b4e1436884520.jpg",
- "trainings": 0
- },
- {
- "id": 3099,
- "name": "№3099 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-122.378798",
- "latitude": "37.708771",
- "address": "Candlestick Point State Recreation Area, Donner Avenue, San Francisco, San Francisco City and County, California, 94124, United States of America",
- "city_id": 7458,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f5b4dcf02aa86ce048e62da2c02aa5751436884522.jpg",
- "trainings": 0
- },
- {
- "id": 3100,
- "name": "№3100 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "2.011098",
- "latitude": "41.577729",
- "address": "Plaça de Can Roca, Zona Esportiva, Tarrasa, Vallés Occidental, Barcelona, Cataluña, 08225, España",
- "city_id": 7893,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8818d002002290ae28a9af0b5fd4e7051436884525.jpg",
- "trainings": 0
- },
- {
- "id": 3101,
- "name": "№3101 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-87.63612",
- "latitude": "41.93332",
- "address": "Diversey & Lake Shore Dr, North Lake Shore Drive West, Mid-North District, Near North Side, Chicago, Cook County, Illinois, 60614, United States of America",
- "city_id": 7886,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2c7ec451071154530711436c48b2b5a91436884528.jpg",
- "trainings": 0
- },
- {
- "id": 3103,
- "name": "№3103 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.777142",
- "latitude": "58.463512",
- "address": "12, Lykkensborgveien, Tyholmen, Arendal, Aust-Agder, 4841, Norge",
- "city_id": 7892,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/74ea2c95505cd5c6c705fcb178ea41d01436884563.jpg",
- "trainings": 0
- },
- {
- "id": 3104,
- "name": "№3104 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "10.477488",
- "latitude": "44.660713",
- "address": "Via Canusina, Bibbiano, RE, Emilia-Romagna, Italy",
- "city_id": 7891,
- "country_id": 31,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/41b5e23edab86e1503eb1c3371885e3e1436884566.jpg",
- "trainings": 0
- },
- {
- "id": 3105,
- "name": "№3105 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-5.774997",
- "latitude": "41.521575",
- "address": "Aparcamiento Bosque Valorio, Espíritu Santo, Zamora, Castilla y León, 49005, España",
- "city_id": 7890,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/475ff948ee416dda62d0d70ff067fa1b1436884568.jpg",
- "trainings": 0
- },
- {
- "id": 3106,
- "name": "№3106 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.26732",
- "latitude": "50.11838",
- "address": "Waldweg, Rambach, Wiesbaden, Regierungsbezirk Darmstadt, Hessen, 65207, Deutschland",
- "city_id": 7504,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/be60427539053e0df81f1e8449af926d1436884573.jpg",
- "trainings": 0
- },
- {
- "id": 3107,
- "name": "№3107 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "174.787363",
- "latitude": "-36.895074",
- "address": "Pohutukawa Drive, One Tree Hill, Maungakiekie-Tamaki, Auckland, 1051, New Zealand",
- "city_id": 7709,
- "country_id": 40,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3e0c851b7c6b3705a4242db65982faf51436884580.jpg",
- "trainings": 0
- },
- {
- "id": 3108,
- "name": "№3108 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "25.152738",
- "latitude": "35.315727",
- "address": "Μπουρλώτου Χ., Νέα Φορτέτσα, Heraklion, Heraklion Municipality, Heraklion Regional Unit, Crete Region, Crete Administration, 71409, Greece",
- "city_id": 7889,
- "country_id": 64,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/7acedb1e3597913a1c1de4cb4dff2e231436884583.jpg",
- "trainings": 0
- },
- {
- "id": 3109,
- "name": "№3109 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-3.67101",
- "latitude": "40.374311",
- "address": "Autovía del Sur, Entrevías, Puente de Vallecas, Madrid, Área metropolitana de Madrid y Corredor del Henares, Madrid, Comunidad de Madrid, 28053, España",
- "city_id": 777,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9c7d363a8665c2cd4cc5b7cd8b655ea81436884585.jpg",
- "trainings": 0
- },
- {
- "id": 3110,
- "name": "№3110 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "12.545257",
- "latitude": "41.913624",
- "address": "Meda/Avanzini, Via Filippo Meda, Pietralata, Municipio Roma IV, Rome, Roma Capitale, Lazio, 00157, Italy",
- "city_id": 7888,
- "country_id": 31,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1a4d81ee76033c1d37d9b153d607ba1a1436884587.jpg",
- "trainings": 0
- },
- {
- "id": 3111,
- "name": "№3111 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "4.346483000000000",
- "latitude": "50.895733000000000",
- "address": "Parc d'Osseghem - Ossegempark, Avenue du Hallier - Kreupelboslaan, Heysel - Heizel, Laeken / Laken, Ville de Bruxelles - Stad Brussel, Brussels-Capital, 1020, Belgium",
- "city_id": 7887,
- "country_id": 45,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6851e9c0d7ea81fb8597a21b134e1e301436884590.jpg",
- "trainings": 0
- },
- {
- "id": 3112,
- "name": "№3112 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "-87.620041",
- "latitude": "41.896811",
- "address": "Lake Shore Park, East Pearson Street, Streeterville, Near North Side, Chicago, Cook County, Illinois, 60611, United States of America",
- "city_id": 7886,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4f3ae5c346d9c8529f7e6a7c1a21cbe81436884592.jpg",
- "trainings": 0
- },
- {
- "id": 3113,
- "name": "№3113 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-87.649571",
- "latitude": "41.960715",
- "address": "Brenneman Elementary School, North Clarendon Avenue, Buena Park, Uptown, Chicago, Cook County, Illinois, 60613, United States of America",
- "city_id": 7886,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3134b8b9cee416c587581bd77819f0241436884623.jpg",
- "trainings": 1
- },
- {
- "id": 3114,
- "name": "№3114 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "-87.649037",
- "latitude": "41.841625",
- "address": "McGuane Park Fieldhouse, 2901, South Poplar Avenue, Bridgeport, Chicago, Cook County, Illinois, 60608, United States of America",
- "city_id": 7886,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6909b478248787c5f494f14a7254d8ff1436884625.jpg",
- "trainings": 0
- },
- {
- "id": 3115,
- "name": "№3115 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-87.671916",
- "latitude": "41.856909",
- "address": "1802, West 18th Street, Lower West Side, Chicago, Cook County, Illinois, 60608, United States of America",
- "city_id": 7886,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a5de012a3877ce13cf672d64259c06f31436884627.jpg",
- "trainings": 0
- },
- {
- "id": 3116,
- "name": "№3116 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "12.575808",
- "latitude": "55.669132",
- "address": "Nykredit, Kalvebod Brygge, Christianshavn, Copenhagen, Copenhagen Municipality, Capital Region of Denmark, 1562, Denmark",
- "city_id": 7611,
- "country_id": 49,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a7ed6cf6d8cfb142c843551ad24af0a21436884631.jpg",
- "trainings": 0
- },
- {
- "id": 3117,
- "name": "№3117 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "126.832935",
- "latitude": "35.217288",
- "address": "Eungamno, Ssangamdong, Bukgu, Gwangju, South Korea",
- "city_id": 7885,
- "country_id": 54,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/68e8121a2ab30c4f4c6c49852c87f35e1436884634.jpg",
- "trainings": 0
- },
- {
- "id": 3118,
- "name": "№3118 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "8.383213",
- "latitude": "49.32178",
- "address": "Baum-des-Jahres-Pfad, Dudenhofen, Römerberg-Dudenhofen, Rhein-Pfalz-Kreis, Rheinland-Pfalz, 67373, Deutschland",
- "city_id": 7884,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ecc1418a88fcdbc5334fa80d2e1250e61436884637.jpg",
- "trainings": 0
- },
- {
- "id": 3119,
- "name": "№3119 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "8.543985",
- "latitude": "49.288181",
- "address": "L 546, Altlußheim, Verwaltungsgemeinschaft Hockenheim, Rhein-Neckar-Kreis, Regierungsbezirk Karlsruhe, Baden-Württemberg, 68804, Deutschland",
- "city_id": 7883,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/37aeb7fcc1d3ae4fed785bec848600a31436884653.jpg",
- "trainings": 0
- },
- {
- "id": 3120,
- "name": "№3120 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-2.650655",
- "latitude": "42.85295",
- "address": "Gros, Estrasburgo ibilbidea, Salburua, Vitoria, Cuadrilla de Vitoria, Álava, País Vasco, 01002, España",
- "city_id": 7882,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d5ad1613e81c180b317cc3be7fd60bb41436884662.jpg",
- "trainings": 0
- },
- {
- "id": 3121,
- "name": "№3121 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-5.95809",
- "latitude": "37.41903",
- "address": "Ronda Urbana Norte, Las Almenas, Distrito Norte, Sevilla, Provincia de Sevilla, Andalucía, 41007, España",
- "city_id": 7881,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/adfd627f404909f8205b7fa3ed5d18751436884664.jpg",
- "trainings": 0
- },
- {
- "id": 3122,
- "name": "№3122 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "6.859353",
- "latitude": "46.378339",
- "address": "Au Remonfin, Port-Valais, Monthey, Valais - Wallis, 1897, Switzerland",
- "city_id": 7880,
- "country_id": 27,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0a3877224bf8fc73c9f00514067653fe1436884667.jpg",
- "trainings": 0
- },
- {
- "id": 3123,
- "name": "№3123 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "16.438567",
- "latitude": "49.352132",
- "address": "Černohorská, Tišnov, okres Brno-venkov, Jihomoravský kraj, Jihovýchod, 66601, Czech Republic",
- "city_id": 7879,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/05f93f444b4d3b2a885c7c58bbb16e541436884682.jpg",
- "trainings": 0
- },
- {
- "id": 3124,
- "name": "№3124 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "2.345645",
- "latitude": "48.515215",
- "address": "Chemin de Lanscanet, Le Petit Saussay, Itteville, Étampes, Essonne, Île-de-France, France métropolitaine, 91760, France",
- "city_id": 7878,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c09ce68b6aed8be7da87d2ce74e42dde1436884685.jpg",
- "trainings": 0
- },
- {
- "id": 3125,
- "name": "№3125 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.434181",
- "latitude": "48.947146",
- "address": "Waldspielplatz, Pfaffenklingenweg, Backnang, Vereinbarte Verwaltungsgemeinschaft der Stadt Backnang, Rems-Murr-Kreis, Regierungsbezirk Stuttgart, Baden-Württemberg, 71522, Deutschland",
- "city_id": 7877,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/33b791b18f76ac876b61d53d2ade5e2d1436884688.jpg",
- "trainings": 0
- },
- {
- "id": 3126,
- "name": "№3126 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "7.111529",
- "latitude": "49.49274",
- "address": "Grundschule Bliesen, Webergasse, Gombacher Mühle, Sankt Wendel, Landkreis St. Wendel, Saarland, 66606, Deutschland",
- "city_id": 7876,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0e443109eea59643358adf3685a1f1ea1436884690.jpg",
- "trainings": 0
- },
- {
- "id": 3127,
- "name": "№3127 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "138.467926",
- "latitude": "-35.145686",
- "address": "Anderson Avenue, Port Noarlunga, Noarlunga Centre, South Australia, 5167, Australia",
- "city_id": 7875,
- "country_id": 1,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/df168b98abab997c2342cd5acc764ad31436884693.jpg",
- "trainings": 0
- },
- {
- "id": 3128,
- "name": "№3128 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-37.060242",
- "latitude": "-10.939894",
- "address": "Praça Zilda Arns, Rua Vinte e Nove, Grageru, Aracaju, Microrregião da Grande Aracaju, Mesorregião Leste Sergipano, Sergipe, Northeast Region, 49025-100, Brazil",
- "city_id": 7874,
- "country_id": 44,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e8033aa9ef98670efdf69eec36fecb5a1436884696.jpg",
- "trainings": 0
- },
- {
- "id": 3129,
- "name": "№3129 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.738544",
- "latitude": "42.659601",
- "address": "Нептун, Tsar Ivan Asen II st., Old Nessebur, Nesebar, Burgas Region, 8230, Bulgaria",
- "city_id": 7873,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7d71de4b187b4cf4652b7b1774a9fe561436884698.jpg",
- "trainings": 0
- },
- {
- "id": 3130,
- "name": "№3130 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "10.729882",
- "latitude": "59.932811",
- "address": "Sophus Bugges plass, Pilestredet, Pilestredet park, Adamstuen, St. Hanshaugen, Oslo, 0359, Norway",
- "city_id": 809,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/703daf8d9417675ec70da4a1a8679b5e1436884702.jpg",
- "trainings": 0
- },
- {
- "id": 3131,
- "name": "№3131 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "-43.198593",
- "latitude": "-22.984667",
- "address": "Praia do Diabo, Largo do Millôr, Ipanema, Rio de Janeiro, Região Metropolitana do Rio de Janeiro, Rio de Janeiro, Southeast Region, 22080-040, Brazil",
- "city_id": 7460,
- "country_id": 44,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9f7b7199e7df4676d97e26d60b643d331436884705.jpg",
- "trainings": 0
- },
- {
- "id": 3132,
- "name": "№3132 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-119.667811",
- "latitude": "34.41804",
- "address": "Cabrillo & Ninos, East Cabrillo Boulevard, Santa Barbara, Santa Barbara County, California, 93108, United States of America",
- "city_id": 7872,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a262a1ba5533b53e552f3ec78948747b1436884707.jpg",
- "trainings": 0
- },
- {
- "id": 3133,
- "name": "№3133 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-16.38874",
- "latitude": "28.31005",
- "address": "Carretera del Puertito, Puertito de Güímar, Güímar, Santa Cruz de Tenerife, Canarias, España (mar territorial), 38500, España",
- "city_id": 7529,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/48cbe48226af21c54b46c4d94ffd30021436884743.jpg",
- "trainings": 0
- },
- {
- "id": 3134,
- "name": "№3134 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.530872",
- "latitude": "53.233737",
- "address": "Jaagpad, Groningen, Netherlands, 9742KA, The Netherlands",
- "city_id": 7871,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2a6b6a5807127f57da92e8cfa07965561436884746.jpg",
- "trainings": 0
- },
- {
- "id": 3135,
- "name": "№3135 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.694337",
- "latitude": "42.419502",
- "address": "Adam & Eva, Републиканска, Sozopol, Burgas Region, Bulgaria",
- "city_id": 7870,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/33496a66de141257f4a84779fc02fd201436884750.jpg",
- "trainings": 0
- },
- {
- "id": 3136,
- "name": "№3136 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "10.908135",
- "latitude": "48.384533",
- "address": "G12, Schillstraße, Firnhaberau, Augsburg, Schwaben, Bayern, 86169, Deutschland",
- "city_id": 7437,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f4122685d150527a23a4d091914bb0a81436884754.jpg",
- "trainings": 0
- },
- {
- "id": 3138,
- "name": "№3138 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "11.970466",
- "latitude": "51.490179",
- "address": "Universitätssportplatz Ziegelwiese, An der Schleuse, Klaustorvorstadt, Halle (Saale), Sachsen-Anhalt, 06108, Deutschland",
- "city_id": 7610,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8133e93d401e54d7ebbb7baccab873d21436884760.jpg",
- "trainings": 0
- },
- {
- "id": 3139,
- "name": "№3139 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "32.484533000000056",
- "latitude": "0.731117",
- "address": "Gulu - Kampala Road, Lukomero, Luweero, Central 2, Central Region, Uganda",
- "city_id": 7868,
- "country_id": 67,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/cfb50dfb8162aa69d93af4870b793fc51436884763.jpg",
- "trainings": 1
- },
- {
- "id": 3140,
- "name": "№3140 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "21.245383",
- "latitude": "43.97862",
- "address": "Милана Мијалковића, Jagodina, Jagodina City, Pomoravlje District, Sumadija and Western Serbia, Central Serbia, 35000, Serbia",
- "city_id": 7867,
- "country_id": 35,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/28d58f7208457bbae0174bd81fe160e71436884766.jpg",
- "trainings": 0
- },
- {
- "id": 3141,
- "name": "№3141 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-77.093858",
- "latitude": "38.838246",
- "address": "Shirlington Park, arlington",
- "city_id": 7866,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/66ebc2b43eb4058c90b4b41e41a6068f1436884768.jpg",
- "trainings": 0
- },
- {
- "id": 3142,
- "name": "№3142 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-71.036776",
- "latitude": "42.364983",
- "address": "209, Marginal Street, Jeffries Point, East Boston, Boston, Suffolk County, Massachusetts, 02128, United States of America",
- "city_id": 7865,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/09944454cd692cdad260ad5192247cf61436884771.jpg",
- "trainings": 0
- },
- {
- "id": 3143,
- "name": "№3143 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "9.60321",
- "latitude": "48.63696",
- "address": "Eiche, Höhenweg, Bad Boll-Eckwälden, Bad Boll, Gemeindeverwaltungsverband Raum Bad Boll, Landkreis Göppingen, Regierungsbezirk Stuttgart, Baden-Württemberg, 73087, Deutschland",
- "city_id": 7864,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e9b3f29e9ef2d39fadb7dc556ef588961436884803.jpg",
- "trainings": 0
- },
- {
- "id": 3144,
- "name": "№3144 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-122.493257",
- "latitude": "37.72814",
- "address": "Lake Merced Bike Path, San Francisco, San Francisco City and County, California, 94116, United States of America",
- "city_id": 7458,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ea4cb1393002ebf2e0a9cca76d17d2081436884805.jpg",
- "trainings": 0
- },
- {
- "id": 3145,
- "name": "№3145 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "16.114239",
- "latitude": "49.806814",
- "address": "Slunce, 3545, Česká Rybná, Proseč, okres Chrudim, Pardubický kraj, Severovýchod, 53944, Czech Republic",
- "city_id": 7863,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/30fe0a1976560e2253667dd04b76de4d1436884808.jpg",
- "trainings": 0
- },
- {
- "id": 3146,
- "name": "№3146 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "17.986727",
- "latitude": "51.282521",
- "address": "69, 9, Walki Młodych, Przedmieście, Kępno, gmina Kępno, powiat kępiński, Greater Poland Voivodeship, Poland",
- "city_id": 7862,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5b534d21a24df0a3963379488e9cd5801436884811.jpg",
- "trainings": 0
- },
- {
- "id": 3147,
- "name": "№3147 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "-6.358316",
- "latitude": "53.350454",
- "address": "Drumfinn Road, Saintlawrence, Drumfinn ED, Dublin, County Dublin, Leinster, Ireland",
- "city_id": 7411,
- "country_id": 37,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2aab77e042806437c29e65481184e30e1436884813.jpg",
- "trainings": 0
- },
- {
- "id": 3148,
- "name": "№3148 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "19.045803",
- "latitude": "47.542387",
- "address": "Laktanya utcai sportpálya, 60m futópálya, Lajos utcai lakótelep, Óbuda, 3rd district, Budapest, Budapesti kistérség, Budapest, Central Hungary, Közép-Magyarország, 1035, Hungary",
- "city_id": 7556,
- "country_id": 48,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ac64bbaf82e74fc72da4d260c8b0d0a01436884815.jpg",
- "trainings": 1
- },
- {
- "id": 3149,
- "name": "№3149 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-16.266667",
- "latitude": "28.461514",
- "address": "Calle Comodoro Rolín, El Chapatal, Salud-La Salle, Santa Cruz de Tenerife, Canarias, España (mar territorial), 38005, España",
- "city_id": 7529,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/99dc57b7be1cd308bb21cd518be81e261436884818.jpg",
- "trainings": 0
- },
- {
- "id": 3150,
- "name": "№3150 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-16.2873",
- "latitude": "28.4707",
- "address": "Parque del colegio, Calle José Domínguez Dorta, La Hornera, La Candelaria, San Cristóbal de La Laguna, Santa Cruz de Tenerife, Canarias, España (mar territorial), 38320, España",
- "city_id": 7529,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/881b4d3bd831fc9786997a586e0178b31436884822.jpg",
- "trainings": 0
- },
- {
- "id": 3151,
- "name": "№3151 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "7.092263",
- "latitude": "51.468061",
- "address": "Parcour Anlage Essen - Kray, Ruhrschnellweg, Kray, Kolonie Zollverein III (Schlägel & Eisen), Essen, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 45307, Deutschland",
- "city_id": 7582,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7e1d7af9f7621b2c272a0163397694f91436884824.jpg",
- "trainings": 0
- },
- {
- "id": 3152,
- "name": "№3152 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "13.36129",
- "latitude": "52.52985",
- "address": "Platz 3, Döberitzer Verbindung, Moabit, Mitte, Berlin, 10557, Deutschland",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/99d04266290e181c0443ae65c2a209631436884828.jpg",
- "trainings": 0
- },
- {
- "id": 3153,
- "name": "№3153 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "12.239446",
- "latitude": "44.705248",
- "address": "Via Monte San Daniele, Comacchio, FE, Emilia-Romagna, 44022, Italy",
- "city_id": 7861,
- "country_id": 31,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3191d25a3748b1533dfd7801821f22f51436884862.jpg",
- "trainings": 0
- },
- {
- "id": 3154,
- "name": "№3154 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "6.769536",
- "latitude": "58.076682",
- "address": "Alcoa Miljøpark, Loshavnveien, Kaneheia, Suggenes, Lunde, Farsund, Vest-Agder, 4550, Norway",
- "city_id": 7860,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9e07a929d88d079cd73f88907bb4aad81436884867.jpg",
- "trainings": 0
- },
- {
- "id": 3155,
- "name": "№3155 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "10.27936",
- "latitude": "53.65887",
- "address": "Waldreiterweg, Großhansdorf, Kreis Stormarn, Schleswig-Holstein, 22927, Deutschland",
- "city_id": 7859,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/43061dc0656a50621fcd9a2bb77d11aa1436884869.jpg",
- "trainings": 0
- },
- {
- "id": 3156,
- "name": "№3156 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "7.230526",
- "latitude": "51.53099",
- "address": "Maylahn, 1, Jauerstraße, Altenhöfen, Herne, Regierungsbezirk Arnsberg, Nordrhein-Westfalen, 44625, Deutschland",
- "city_id": 7636,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f321bd3a3cb260685788fa44eb9492901436884872.jpg",
- "trainings": 0
- },
- {
- "id": 3157,
- "name": "№3157 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "5.174294",
- "latitude": "52.23864",
- "address": "7, Wolterus Dullpad, Hilversum, MRA, North Holland, Netherlands, 1222EW, The Netherlands",
- "city_id": 7858,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/04c7effd71d072806dbcf8e1b879ed121436884878.jpg",
- "trainings": 1
- },
- {
- "id": 3158,
- "name": "№3158 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "14.397211",
- "latitude": "51.394209",
- "address": "Strandbereich Lohsa, Hauptstraße, Lohsa, Landkreis Bautzen, Sachsen, 02999, Deutschland",
- "city_id": 7857,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2f3cb253b26b0e432c93f07ae2b834a21436884881.jpg",
- "trainings": 0
- },
- {
- "id": 3159,
- "name": "№3159 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.37484",
- "latitude": "52.53043",
- "address": "Invalidenpark, Scharnhorststraße, Mitte, Berlin, 10115, Deutschland",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/067fdbec8c4ed847c788173a762bd5001436884886.jpg",
- "trainings": 0
- },
- {
- "id": 3160,
- "name": "№3160 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "12.8449",
- "latitude": "49.30276",
- "address": "Tagungszentrum Furth im Wald Reinhold-Macho-Haus, 1, Chamb-Ufer-Fußweg, Furth im Wald, Landkreis Cham, Oberpfalz, Bayern, 93437, Deutschland",
- "city_id": 7855,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/632efb9c566a6e00cd90edb9487c89f21436884892.jpg",
- "trainings": 0
- },
- {
- "id": 3161,
- "name": "№3161 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.561772",
- "latitude": "49.970118",
- "address": "Am Alten Gerauer Weg, Mörfelden, Mörfelden-Walldorf, Kreis Groß-Gerau, Regierungsbezirk Darmstadt, Hessen, 64546, Deutschland",
- "city_id": 7854,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9e2b950bb868c5659774793a559983b21436884894.jpg",
- "trainings": 0
- },
- {
- "id": 3162,
- "name": "№3162 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-6.905182",
- "latitude": "33.927835",
- "address": "P4017, Hay Maghreb Arabi, Témara تمارة, Pachalik de Témara باشوية تمارة, Préfecture de Skhirate - Témara عمالة الصخيرات - تمارة, Rabat-Salé-Kénitra الرباط سلا القنيطرة, Morocco",
- "city_id": 7853,
- "country_id": 66,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/52ff7888224fe167d3a2aba6e2a0e96d1436884897.jpg",
- "trainings": 0
- },
- {
- "id": 3163,
- "name": "№3163 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-1.169039",
- "latitude": "44.652669",
- "address": "Centre équestre d’Arcachon, Avenue Pierre Frondaie, Ville d'Été, Arcachon, Gironde, Aquitaine, France métropolitaine, 33120, France",
- "city_id": 7852,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ae894331d8c44f23ed0163070ff430931436884923.jpg",
- "trainings": 0
- },
- {
- "id": 3164,
- "name": "№3164 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-117.10635",
- "latitude": "32.627096",
- "address": "Bayside Park, Plover Way, Chula Vista, San Diego County, California, 91910, United States of America",
- "city_id": 7851,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b8b811b855cecbc0fec68efd75494e1d1436884925.jpg",
- "trainings": 0
- },
- {
- "id": 3165,
- "name": "№3165 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.478828",
- "latitude": "55.655775",
- "address": "Тропаревская улица, Тропарёво, Troparyovo-Nikulino District, Western Administrative Okrug, Moscow, Central Federal District, 119602, Russian Federation",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/54200ccf0586090b7085404dbcac5adf1436884927.jpg",
- "trainings": 2
- },
- {
- "id": 3166,
- "name": "№3166 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "10.722209",
- "latitude": "59.909574",
- "address": "Privat, Filipstadveien, Tjuvholmen, Frogner, Oslo, 0252, Norge",
- "city_id": 809,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/bab6372a3a8bbbb3f0abaf9b41e1e5a71436884931.jpg",
- "trainings": 0
- },
- {
- "id": 3167,
- "name": "№3167 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "16.258389",
- "latitude": "49.707534",
- "address": "ev.39, Dolní Předměstí, Polička, okres Svitavy, Pardubický kraj, Severovýchod, 57201, Czech Republic",
- "city_id": 7850,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/479e8068262610ba2f957d92a4d47b851436884933.jpg",
- "trainings": 0
- },
- {
- "id": 3168,
- "name": "№3168 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "16.156824",
- "latitude": "49.203197",
- "address": "591, Hájek, Náměšť nad Oslavou, okres Třebíč, Kraj Vysočina, Jihovýchod, 67571, Czech Republic",
- "city_id": 7849,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8a53a89b8cdc451b3faaf642fd2569e51436884936.jpg",
- "trainings": 0
- },
- {
- "id": 3169,
- "name": "№3169 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "16.573429",
- "latitude": "49.551567",
- "address": "Sportovní hala, 3655, Letovice, okres Blansko, Jihomoravský kraj, Jihovýchod, 67961, Czech Republic",
- "city_id": 7848,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/adcc313ce889dc97bbd16b2a5936223d1436884938.jpg",
- "trainings": 0
- },
- {
- "id": 3170,
- "name": "№3170 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-78.505382",
- "latitude": "-0.212209",
- "address": "Colegio Mejia, Luis Vargas, San Juan, Quito, Cantón Quito, Provincia de Pichincha, 1701499, Ecuador",
- "city_id": 7847,
- "country_id": 65,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/308a5b594ba78c10fdc785a06748a1a21436884941.jpg",
- "trainings": 0
- },
- {
- "id": 3171,
- "name": "№3171 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-3.737992",
- "latitude": "40.30052",
- "address": "Avenida de los Reyes Católicos, Sector III, Getafe, Área metropolitana de Madrid y Corredor del Henares, Madrid, Comunidad de Madrid, 28901, España",
- "city_id": 7822,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/566dffda07f248a530cc667d6a76807b1436884943.jpg",
- "trainings": 0
- },
- {
- "id": 3172,
- "name": "№3172 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "-74.000473",
- "latitude": "40.714359",
- "address": "Columbus Park, Baxter Street, Chinatown, New York, New York City, New York, 10013, United States of America",
- "city_id": 655,
- "country_id": 18,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/4d2c944478331aff2e3060a6ca58ac571436884946.jpg",
- "trainings": 1
- },
- {
- "id": 3173,
- "name": "№3173 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "6.99628",
- "latitude": "49.23422",
- "address": "Saarbrücken, Regionalverband Saarbrücken, Saarland, Deutschland",
- "city_id": 7846,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/23fd732a57df6c63de40be4bdb8ada6a1436884983.jpg",
- "trainings": 0
- },
- {
- "id": 3175,
- "name": "№3175 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "19.286067",
- "latitude": "42.44654",
- "address": "Ruđera Boškovića, Masline, Podgorica, Opština Podgorica, 81000, Montenegro",
- "city_id": 7844,
- "country_id": 25,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/478b50cbc63e63bd87f58da65f9593f91436884990.jpg",
- "trainings": 0
- },
- {
- "id": 3176,
- "name": "№3176 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "6.640795",
- "latitude": "43.268563",
- "address": "Parking des Lices, Avenue Augustin Grangeon, Les Parcs, Saint-Tropez, Draguignan, Var, Provence-Alpes-Côte d'Azur, France métropolitaine, 83990, France",
- "city_id": 7843,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/80c9beed36b0ec5a79a1407d5ae0a90b1436884992.jpg",
- "trainings": 0
- },
- {
- "id": 3177,
- "name": "№3177 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "23.698806",
- "latitude": "37.920549",
- "address": "Έδεμ, Poseidonos Avenue, Αμφιθέα, Paleo Faliro, Municipality of Palaio Faliro, South Athens Regional Unit, Attica Administration, 17675, Greece",
- "city_id": 7842,
- "country_id": 64,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1d648051a0b9cfbe54c60fa56d6784401436884994.jpg",
- "trainings": 0
- },
- {
- "id": 3178,
- "name": "№3178 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "103.74376",
- "latitude": "1.397169",
- "address": "Yew Tee Park, Choa Chu Kang North 6, Choa Chu Kang, South West Community Development Council, 689285, Singapore",
- "city_id": 7840,
- "country_id": 63,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4295370aecf2f75aba693dd54cc6207c1436884997.jpg",
- "trainings": 0
- },
- {
- "id": 3179,
- "name": "№3179 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "16.402995",
- "latitude": "48.206457",
- "address": "Rotundenallee, Pratercottage, Leopoldstadt, Vienna, 1020, Austria",
- "city_id": 7542,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/fd584748b63c5f047606a266335af5271436884999.jpg",
- "trainings": 0
- },
- {
- "id": 3180,
- "name": "№3180 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-61.708737",
- "latitude": "16.015654",
- "address": "Rue Joseph Pitat, Saint-Claude, Basse-Terre, Guadeloupe, 97120, France",
- "city_id": 7839,
- "country_id": 24,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/39d3fb1057e4bf442199d5b1e8b2859b1436885001.jpg",
- "trainings": 0
- },
- {
- "id": 3181,
- "name": "№3181 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "151.109061",
- "latitude": "-33.975769",
- "address": "King Street, South Hurstville, Sydney, New South Wales, 2218, Australia",
- "city_id": 698,
- "country_id": 1,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/dc32d362e662e515ba3ce41aaad7990b1436885004.jpg",
- "trainings": 0
- },
- {
- "id": 3182,
- "name": "№3182 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "10.383221",
- "latitude": "49.88633",
- "address": "Trimm-dich-Pfad, Gerolzhofen, Gerolzhofen (VGem), Landkreis Schweinfurt, Unterfranken, Bayern, 97447, Deutschland, Europa",
- "city_id": 7838,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/40c516ede8bf830f103ade81f9e7d0cf1436885006.jpg",
- "trainings": 0
- },
- {
- "id": 3183,
- "name": "№3183 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "151.156156",
- "latitude": "-33.906972",
- "address": "Yabsley Avenue, Marrickville, Sydney, New South Wales, 2204, Australia",
- "city_id": 698,
- "country_id": 1,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f6c23cb824a145c24615586f884982911436885042.jpg",
- "trainings": 0
- },
- {
- "id": 3184,
- "name": "№3184 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.179192",
- "latitude": "47.653249",
- "address": "17, Seestrasse, Tobel, Kreuzlingen, Bezirk Kreuzlingen, Thurgau, 8280, Switzerland",
- "city_id": 7837,
- "country_id": 27,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/61ef59a319714e371c64deed7f8e38d91436885044.jpg",
- "trainings": 0
- },
- {
- "id": 3185,
- "name": "№3185 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "12.361294",
- "latitude": "50.079077",
- "address": "2070/3, Nad Řekou, Cheb, Cheb District, Karlovarský kraj, Severozápad, 35002, Czech Republic",
- "city_id": 7836,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/fa859617e97d4cd4a6d8ba497bd84e0a1436885047.jpg",
- "trainings": 0
- },
- {
- "id": 3186,
- "name": "№3186 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.255305",
- "latitude": "47.409939",
- "address": "Birkenstrasse, Moosgarten, Gossau (SG), Wahlkreis St. Gallen, Sankt Gallen, 9200, Switzerland",
- "city_id": 7835,
- "country_id": 27,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/84beb0a633f35960080aa36b70fdfe1a1436885049.jpg",
- "trainings": 0
- },
- {
- "id": 3187,
- "name": "№3187 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "12.249141",
- "latitude": "49.949628",
- "address": "Leonberger Straße, Mitterteich, Mitterteich (VGem), Landkreis Tirschenreuth, Oberpfalz, Bayern, 95666, Deutschland",
- "city_id": 7834,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/03c2c6cc9d9c64f8f46f79375f9fc4cf1436885051.jpg",
- "trainings": 0
- },
- {
- "id": 3188,
- "name": "№3188 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "12.76156",
- "latitude": "50.7432",
- "address": "Am Steegenwald, Lugau, Lugau/Erzgebirge, Lugau, Erzgebirgskreis, Sachsen, 09385, Deutschland",
- "city_id": 7759,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4727fbf4e21be212082b6caacf645a5a1436885053.jpg",
- "trainings": 0
- },
- {
- "id": 3189,
- "name": "№3189 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.381574",
- "latitude": "53.120404",
- "address": "Parkplatz am Weichelsee, B 71;B 75, Luhne, Rotenburg, Landkreis Rotenburg, Niedersachsen, 27356, Deutschland",
- "city_id": 7832,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/01e887508138cf480b927bc7b51aa32d1436885058.jpg",
- "trainings": 0
- },
- {
- "id": 3190,
- "name": "№3190 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "7.796806",
- "latitude": "58.829823",
- "address": "Bygland kyrkje, 322, Bygland, Aust-Agder, Norway",
- "city_id": 7831,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d02320fcf7d946c2174f1beacee40c801436885061.jpg",
- "trainings": 0
- },
- {
- "id": 3191,
- "name": "№3191 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "2.56053",
- "latitude": "48.696094",
- "address": "D 251, Périgny, Créteil, Val-de-Marne, Île-de-France, France métropolitaine, 94520, France",
- "city_id": 7830,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0045c6fc84a35640ba85065c5651fd581436885063.jpg",
- "trainings": 0
- },
- {
- "id": 3192,
- "name": "№3192 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "10.443383",
- "latitude": "59.787083",
- "address": "Heggedalsveien, Borgen, Heggedal, Asker, Akershus, 1388, Norway",
- "city_id": 7699,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4d31d0d76ac71930244ac80cf8bf57361436885066.jpg",
- "trainings": 0
- },
- {
- "id": 3193,
- "name": "№3193 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-1.176739",
- "latitude": "52.958011",
- "address": "Forster Street Play Area, Forster Street, Radford, Wilford, Nottingham, East Midlands, England, NG7 3FP, United Kingdom",
- "city_id": 7829,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/82bafa4eebd37d9ab971a72d28ad93e21436885102.jpg",
- "trainings": 0
- },
- {
- "id": 3194,
- "name": "№3194 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "8.22332",
- "latitude": "50.100181",
- "address": "Leichtweißhöhle, Philosophenweg, Nordost, Wiesbaden, Regierungsbezirk Darmstadt, Hessen, 65193, Deutschland",
- "city_id": 7504,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7853dc36318fc383585de4cb36aa758c1436885105.jpg",
- "trainings": 0
- },
- {
- "id": 3203,
- "name": "№3203 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.285365",
- "latitude": "59.81823",
- "address": "Университет Гражданской Авиации, Вертолётная ул., 11, Санкт-Петербург, Россия",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1436907719708_tmp.png",
- "trainings": 1
- },
- {
- "id": 3217,
- "name": "№3217 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.49079",
- "latitude": "55.635427",
- "address": "ул. Академика Виноградова, 12, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1436940293998_tmp.png",
- "trainings": 6
- },
- {
- "id": 3296,
- "name": "№3296 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "6.955922",
- "latitude": "50.895464",
- "address": "Naturtheater, Eckdorfer Straße, Volksparksiedlung Raderthal, Raderthal, Rodenkirchen, Köln, Regierungsbezirk Köln, Nordrhein-Westfalen, 50667-51149, Deutschland",
- "city_id": 695,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4b064cd2e7341b1d2d4c270ac35cfecf1436950626.jpg",
- "trainings": 0
- },
- {
- "id": 3297,
- "name": "№3297 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "6.387074",
- "latitude": "45.663774",
- "address": "École maternelle du Champ de Mars, N 90, Albertville, Savoie, Rhône-Alpes, France métropolitaine, 73200, France",
- "city_id": 7807,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1fc347acd670d56ad0b136c46ed819601436950706.jpg",
- "trainings": 0
- },
- {
- "id": 3299,
- "name": "№3299 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "18.647597",
- "latitude": "60.128593",
- "address": "Malmvägen, Herräng, Norrtälje, Stockholms län, Landskapet Uppland, Stockholms län, Svealand, Sweden",
- "city_id": 7828,
- "country_id": 28,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/774cb9d155daeb471a98ad8fbf2ddf941436950743.jpg",
- "trainings": 0
- },
- {
- "id": 3300,
- "name": "№3300 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "2.520062",
- "latitude": "48.696487",
- "address": "Stade Roger Couderc, Rue du Petit Pont, Épinay-sous-Sénart, Évry, Essonne, Île-de-France, France métropolitaine, 91860, France",
- "city_id": 7827,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1a2fa90cd5a3232a97215588094450cb1436950803.jpg",
- "trainings": 0
- },
- {
- "id": 3301,
- "name": "№3301 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "2.211802",
- "latitude": "48.898012",
- "address": "Maison Daniel-Féry - Studio d'enregistrement Hal Singer, Boulevard Jules Mansart, ZAC Sainte-Geneviève, Nanterre, Hauts-de-Seine, Île-de-France, France métropolitaine, 92000, France",
- "city_id": 7705,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f95b7a88eb8bc3e7071a512bcccecb801436950810.jpg",
- "trainings": 0
- },
- {
- "id": 3303,
- "name": "№3303 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "7.755929",
- "latitude": "49.423201",
- "address": "Tor der Wissenschaft, Gottlieb-Daimler-Straße, PRE Uni-Park, Lämmchesberg, Kaiserslautern, Rheinland-Pfalz, 67663, Deutschland",
- "city_id": 7826,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e59ab53637e60b515ca0e323e2d61d811436950865.jpg",
- "trainings": 0
- },
- {
- "id": 3304,
- "name": "№3304 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "19.171453",
- "latitude": "63.338056",
- "address": "Sandviksvägen, Grundsunda församling, Örnsköldsvik, Västernorrlands län, Norrland, Sweden",
- "city_id": 7825,
- "country_id": 28,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/7f7723220640796d1e29b770bb629fc01436950868.jpg",
- "trainings": 0
- },
- {
- "id": 3305,
- "name": "№3305 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "16.275359",
- "latitude": "48.180685",
- "address": "Veitingergasse, Friedensstadt, Lainz, Hietzing, Vienna, 1130, Austria",
- "city_id": 7542,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ab126e4f4b92d01d95549c9d2dd522921436950872.jpg",
- "trainings": 0
- },
- {
- "id": 3306,
- "name": "№3306 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "2.065008",
- "latitude": "41.475212",
- "address": "Túnel de Can Rabella, San Cugat del Vallés, Vallés Occidental, Barcelona, Cataluña, 08190, España",
- "city_id": 7824,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/03e3354ba0ea4f288bd47622cb7a40511436950923.jpg",
- "trainings": 0
- },
- {
- "id": 3307,
- "name": "№3307 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "9.163804",
- "latitude": "39.204784",
- "address": "Viale Poetto, Poetto, Casteddu/Cagliari, CA, Sardinia, 09121-09131, 09134, Italy",
- "city_id": 7823,
- "country_id": 31,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d0b2a7169b35fccb3e0faafed2d0ec501436950925.jpg",
- "trainings": 0
- },
- {
- "id": 3308,
- "name": "№3308 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-3.722566",
- "latitude": "40.321216",
- "address": "Parque de Castilla - La Mancha, Avenida de Don Juan de Borbón, Getafe Norte, Getafe, Área metropolitana de Madrid y Corredor del Henares, Madrid, Comunidad de Madrid, 28903, España",
- "city_id": 7822,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/768839e974058bfa6687e335183ad4c51436950931.jpg",
- "trainings": 0
- },
- {
- "id": 3309,
- "name": "№3309 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.399517",
- "latitude": "48.780278",
- "address": "Piustreff Kinder- und Jugendtreff, Waldeysenstraße, Friedrichshofen, Ingolstadt, Oberbayern, Bayern, 85049, Deutschland",
- "city_id": 7728,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3fe80819963ad568c255e90b69d4c2241436950983.jpg",
- "trainings": 0
- },
- {
- "id": 3310,
- "name": "№3310 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "31.970233",
- "latitude": "36.555649",
- "address": "Ataturk Bulvari, Sugözü, Alanya, Antalya, Mediterranean Region, 07400, Turkey",
- "city_id": 7821,
- "country_id": 62,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/778a524f842296c644baa8836b42a9d31436950988.jpg",
- "trainings": 0
- },
- {
- "id": 3311,
- "name": "№3311 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.974818",
- "latitude": "50.94582",
- "address": "Auenweg, Deutz, Innenstadt, Köln, Regierungsbezirk Köln, Nordrhein-Westfalen, 50667-51149, Deutschland",
- "city_id": 695,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d00acd94131e3f040cfb3dbba14dc9331436950991.jpg",
- "trainings": 0
- },
- {
- "id": 3312,
- "name": "№3312 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "24.241436",
- "latitude": "56.991593",
- "address": "Vidzemes aleja, Jugla, Riga, Rīga, Vidzeme, LV-1024, Latvia",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/01be8b9cab1d559a00f8f9497cba2f3b1436951043.jpg",
- "trainings": 0
- },
- {
- "id": 3313,
- "name": "№3313 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.913137",
- "latitude": "56.413904",
- "address": "36, Горная улица, Октябрьский, Синарский район, Kamensk-Uralsky, городской округ Каменск-Уральский, Sverdlovsk Oblast, Ural Federal District, 623428, Russian Federation",
- "city_id": 7376,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4104d58eaf702f7e545a2d25e7ff1b331436951047.jpg",
- "trainings": 0
- },
- {
- "id": 3314,
- "name": "№3314 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "14.11359",
- "latitude": "48.186185",
- "address": "Badgasse, Marchtrenk, Wels-Land, Upper Austria, 4614, Austria",
- "city_id": 7820,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4ff2cda8ca13476911cf90d018de9cf01436951050.jpg",
- "trainings": 0
- },
- {
- "id": 3315,
- "name": "№3315 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-3.772819",
- "latitude": "40.66639",
- "address": "Parque del Mirador, Calle Padre Claret, Colmenar Viejo, Cuenca Alta del Manzanares, Madrid, Comunidad de Madrid, 28770, España",
- "city_id": 7819,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2af650a3ef57e214d205cb15cd7ff64e1436951104.jpg",
- "trainings": 0
- },
- {
- "id": 3316,
- "name": "№3316 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-2.601786",
- "latitude": "36.774508",
- "address": "Calle Suecia, Roquetas de Mar, Los Depósitos, Roquetas de Mar, Provincia de Almería, Andalucía, 04740, España",
- "city_id": 7818,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1492437c2c2b601187d472902c3aadc01436951109.jpg",
- "trainings": 0
- },
- {
- "id": 3317,
- "name": "№3317 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-3.454072",
- "latitude": "40.548444",
- "address": "Calle de la Paz, Los Frailes, Daganzo de Arriba, Cuenca del Medio Jarama, Madrid, Comunidad de Madrid, 28814, España",
- "city_id": 7817,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/13917b7599a9328a48825c89b2a6d4591436951114.jpg",
- "trainings": 0
- },
- {
- "id": 3319,
- "name": "№3319 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.591227",
- "latitude": "64.593486",
- "address": "Пионерская улица, Kostomuksha, Костомукшский городской округ, Republic of Karelia, Northwestern Federal District, Russian Federation",
- "city_id": 799,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/bfe13827fbca1e24b8b0f3075cd835c81436951166.jpg",
- "trainings": 0
- },
- {
- "id": 3320,
- "name": "№3320 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "7.46289",
- "latitude": "50.4227",
- "address": "B 256, Irlich, Neuwied, Landkreis Neuwied, Rheinland-Pfalz, 56564, Deutschland",
- "city_id": 7816,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e39d3f0ee15824851b1bb5bece208eb81436951170.jpg",
- "trainings": 0
- },
- {
- "id": 3321,
- "name": "№3321 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-0.485206",
- "latitude": "38.693246",
- "address": "Marquesina, Passeig de Cervantes, Batoy, Alcoy, Hoya de Alcoy, Alicante, Comunidad Valenciana, 03802, España",
- "city_id": 7815,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b1f1c9ac770ca4a604ec91de608ea0911436951223.jpg",
- "trainings": 0
- },
- {
- "id": 3323,
- "name": "№3323 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.24159",
- "latitude": "50.022992",
- "address": "Роликова ковзанка, Шатилівка, Kharkiv, Дзержинський район, Kharkiv city rada, Kharkiv Oblast, 61072, Ukraine",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/7d90682b5f6b837ed55b1a21d67079271436951231.jpg",
- "trainings": 0
- },
- {
- "id": 3324,
- "name": "№3324 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.262634",
- "latitude": "50.0331",
- "address": "Frontova Street, Сокольники, Kharkiv, Дзержинський район, Kharkiv city rada, Kharkiv Oblast, 61072, Ukraine",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ee9132bf580c0499e7f5709429e091731436951283.jpg",
- "trainings": 0
- },
- {
- "id": 3325,
- "name": "№3325 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.298778",
- "latitude": "50.029178",
- "address": "Saperna Street, Шишківка, Kharkiv, Kharkiv city rada, Kharkiv Oblast, 61070, Ukraine",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/818222a604579a4c9107b33589203e911436951286.jpg",
- "trainings": 0
- },
- {
- "id": 3326,
- "name": "№3326 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "2.96109",
- "latitude": "42.27147",
- "address": "Sanmar, Carrer de Cadaqués, Figueres, Vilatenim, Figueras, Alto Ampurdán, Gerona, Cataluña, 17600, España",
- "city_id": 7814,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e0d9e81a55221b3644556456e3be6af81436951289.jpg",
- "trainings": 0
- },
- {
- "id": 3327,
- "name": "№3327 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "17.613688",
- "latitude": "59.838319",
- "address": "Parkourparken, Täljstensvägen, Täljstenen, Norby, Uppsala, Uppsala län, Landskapet Uppland, Uppsala län, Svealand, 75013, Sweden",
- "city_id": 7813,
- "country_id": 28,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/44ae09620145d8a4e61c01b549d1515f1436951343.jpg",
- "trainings": 1
- },
- {
- "id": 3328,
- "name": "№3328 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "7.879605",
- "latitude": "45.465326",
- "address": "Profumeria Erniani, 8, Corso Re Umberto I, Borghetto, Ivrea, TO, Piemont, 10015, Italy",
- "city_id": 7812,
- "country_id": 31,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/0d9315f7c813be30cb7debb6cf9545591436951346.jpg",
- "trainings": 0
- },
- {
- "id": 3329,
- "name": "№3329 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.127049",
- "latitude": "45.47619",
- "address": "no, Zona 7, Milan, Lombardy, 20148, Italy",
- "city_id": 7811,
- "country_id": 31,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/b10a87a63caf7e69a3fadfa57eaf62391436951349.jpg",
- "trainings": 0
- },
- {
- "id": 3330,
- "name": "№3330 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.257069",
- "latitude": "59.870491",
- "address": "67 к8, проспект Стачек, Avtovo, Муниципальный округ Автово, Кировский район, Saint Petersburg, Northwestern Federal District, 198096, Russian Federation",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1bda9beacfc75be488d1d908bace1ee21436951403.jpg",
- "trainings": 0
- },
- {
- "id": 3333,
- "name": "№3333 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "75.294624",
- "latitude": "51.721608",
- "address": "Ауэзова, Экибастуз, Pavlodar Province, 141207, Kazakhstan",
- "city_id": 7421,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2639ad49a181554d46beef1b9a5845be1436951463.jpg",
- "trainings": 0
- },
- {
- "id": 3334,
- "name": "№3334 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "34.134657",
- "latitude": "44.974251",
- "address": "218, Peremohy Avenue, Simferopol, городской округ Симферополь, Crimean Federal District, 95034, Ukraine",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b472aa558a052c35bc56f5b3eaf45e471436951466.jpg",
- "trainings": 0
- },
- {
- "id": 3335,
- "name": "№3335 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "7.009339",
- "latitude": "50.971949",
- "address": "Don Quichote, 19, Von-Sparr-Straße, Bruder-Klaus-Siedlung, Mülheim, Köln, Regierungsbezirk Köln, Nordrhein-Westfalen, 51063, Deutschland",
- "city_id": 695,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/0d35a5c3408b9cc02fecda75151033731436951468.jpg",
- "trainings": 0
- },
- {
- "id": 3336,
- "name": "№3336 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "33.44043",
- "latitude": "44.580976",
- "address": "Школа №32, 10, Borysa Mykhailova Street, Гагаринский район, Crimean Federal District, 99014, Ukraine",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ce3ed0c091d3b9eeb02c41bade3a1a5e1436951523.jpg",
- "trainings": 0
- },
- {
- "id": 3337,
- "name": "№3337 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "33.439325",
- "latitude": "44.586512",
- "address": "Стадион 15 школы, Pavla Korchahina Street, Гагаринский район, Sevastopol, Crimean Federal District, 99014, Ukraine",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/acc5cd67419abf2248479483bf82bf871436951525.jpg",
- "trainings": 0
- },
- {
- "id": 3338,
- "name": "№3338 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "14.498205",
- "latitude": "50.079923",
- "address": "3212/30, Nad Úžlabinou, Malešice, Prague, okres Hlavní město Praha, Hlavní město Praha, Praha, 10800, Czech Republic",
- "city_id": 806,
- "country_id": 30,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/0a2e020c130bb8d61a70313e098aad151436951583.jpg",
- "trainings": 0
- },
- {
- "id": 3339,
- "name": "№3339 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "7.92131",
- "latitude": "48.46703",
- "address": "Treff, 67, Wichernstraße, Bühl, Offenburg, Verwaltungsgemeinschaft Offenburg, Ortenaukreis, Regierungsbezirk Freiburg, Baden-Württemberg, 77656, Deutschland",
- "city_id": 810,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/665d3878532df2cd4cf2d2c74df9ec721436951586.jpg",
- "trainings": 0
- },
- {
- "id": 3340,
- "name": "№3340 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.098754",
- "latitude": "44.556234",
- "address": "3/1, Сосновый переулок, Gelendzhik, городской округ Геленджик, Krasnodar Krai, South federal district, 353475, Russian Federation",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/c2c06d593a2cf2474e1b116905c3d9f21436951589.jpg",
- "trainings": 0
- },
- {
- "id": 3342,
- "name": "№3342 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "28.580873",
- "latitude": "49.896621",
- "address": "Парк імені Тараса Шевченка, Viacheslava Chornovola Street, Berdychiv, Zhytomyr Oblast, 13300-13318, Ukraine",
- "city_id": 7379,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/3fd68e8f8ab383bc1c064d39d29e3a071436951646.jpg",
- "trainings": 0
- },
- {
- "id": 3343,
- "name": "№3343 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "10.973162",
- "latitude": "45.446777",
- "address": "Bastione di San Procolo, Viale Cristoforo Colombo, Verona, VR, Veneto, 37123, Italy",
- "city_id": 7810,
- "country_id": 31,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/a3db43c6bd5ab5ccae099a7a325d8e5f1436951650.jpg",
- "trainings": 0
- },
- {
- "id": 3344,
- "name": "№3344 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "15.937687",
- "latitude": "45.778125",
- "address": "Aleja Matije Ljubeka, Jarun, Trešnjevka - jug, Zagreb, City of Zagreb, 10110, Croatia",
- "city_id": 721,
- "country_id": 26,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/851b272e6bf07dbdb66c9a7e1f76efd61436951703.jpg",
- "trainings": 0
- },
- {
- "id": 3346,
- "name": "№3346 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.021044",
- "latitude": "47.966391",
- "address": "Chekhova Street, Makiivka, Гірницький район, Makiivka Municipality, Donetsk Oblast, 86100-86180, Ukraine",
- "city_id": 804,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ad5671869d448a4dbc399db16ac8d7701436951708.jpg",
- "trainings": 0
- },
- {
- "id": 3347,
- "name": "№3347 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.261551",
- "latitude": "59.875632",
- "address": "2, Краснопутиловская улица, Avtovo, Муниципальный округ Автово, Кировский район, Saint Petersburg, Northwestern Federal District, 190000, Russian Federation",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/034a57979721756b7dd7b68c50f4a3a11436951763.jpg",
- "trainings": 0
- },
- {
- "id": 3351,
- "name": "№3351 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.66132",
- "latitude": "53.58496",
- "address": "Betriebshof Inselbahn, Westerstraße, Borkum, Landkreis Leer, Niedersachsen, 26757, Deutschland",
- "city_id": 7808,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/d2c205700f1e7cd821b86aad9470550f1436951825.jpg",
- "trainings": 0
- },
- {
- "id": 3352,
- "name": "№3352 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.09481",
- "latitude": "52.37971",
- "address": "16, Falkenhorst, Am Schlaatz, Potsdam, Brandenburg, 14478, Deutschland",
- "city_id": 7525,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/dda527971364d8ad305e87a580a209e31436951828.jpg",
- "trainings": 0
- },
- {
- "id": 3353,
- "name": "№3353 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-73.911549",
- "latitude": "40.760519",
- "address": "Astoria Heights Playground, 46th Street, Sunnyside Gardens, Queens County, New York City, New York, 11101, United States of America",
- "city_id": 655,
- "country_id": 18,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/0bf61fe288413806c50da60379f005491436951883.jpg",
- "trainings": 0
- },
- {
- "id": 3355,
- "name": "№3355 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "69.378947",
- "latitude": "53.285844",
- "address": "улица М. Ауэзова, Kokshetau, Кокшетау Г.А., Akmola Province, 020000, Kazakhstan",
- "city_id": 414,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/4a8bd5e7ec2fc78c9eb4bc97bd3b5a531436951890.jpg",
- "trainings": 0
- },
- {
- "id": 3356,
- "name": "№3356 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "15.932668000000035",
- "latitude": "45.791656",
- "address": "Jarunska obala, Jarun, Trešnjevka - jug, Zagreb, City of Zagreb, 10110, Croatia",
- "city_id": 721,
- "country_id": 26,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/8eb81658e062455056471ae97adb5bf91436951944.jpg",
- "trainings": 0
- },
- {
- "id": 3357,
- "name": "№3357 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "6.36905",
- "latitude": "45.660298",
- "address": "Skate Parc, Avenue Joseph Fontanet, Albertville, Savoie, Rhône-Alpes, France métropolitaine, 73200, France",
- "city_id": 7807,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e7d56a5334523497203e745669d7848d1436951949.jpg",
- "trainings": 0
- },
- {
- "id": 3358,
- "name": "№3358 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "6.942337",
- "latitude": "51.334145",
- "address": "Ehem. Bhf. Isenbügel, PanoramaRadweg Niederbergbahn, Selbeck, Unterilp, Heiligenhaus, Kreis Mettmann, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 42579, Deutschland",
- "city_id": 7806,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5faf721d133df9de770fa23d506f39061436951954.jpg",
- "trainings": 0
- },
- {
- "id": 3359,
- "name": "№3359 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.98815",
- "latitude": "51.67011",
- "address": "12 + 13/3/2, Hasselbecke, Feldmark, Dorsten, Kreis Recklinghausen, Regierungsbezirk Münster, Nordrhein-Westfalen, 46282, Deutschland",
- "city_id": 7805,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3dc4a3a7bdc06c1d592e5844a673b34d1436952003.jpg",
- "trainings": 0
- },
- {
- "id": 3360,
- "name": "№3360 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "8.961386",
- "latitude": "53.063067",
- "address": "14, Ludwigshafener Straße, Tenever, Osterholz, Stadtbezirk Bremen-Ost, Bremen, 28325, Deutschland",
- "city_id": 7414,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a64d964c812b0e667392f030ab9d075a1436952008.jpg",
- "trainings": 0
- },
- {
- "id": 3361,
- "name": "№3361 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "24.988725",
- "latitude": "52.545061",
- "address": "улица Северный Городок, Biaroza, Берёзовский район, Brest Region, 225209, Belarus",
- "city_id": 742,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/410c68c7823f5195514b5c716f966ad51436952012.jpg",
- "trainings": 0
- },
- {
- "id": 3362,
- "name": "№3362 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "151.205844",
- "latitude": "-33.859271",
- "address": "Observatory Park, Upper Fort Street, The Rocks, Sydney City, New South Wales, 2000, Australia",
- "city_id": 698,
- "country_id": 1,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c1398232c02cb68e7657151bfed80d5d1436952063.jpg",
- "trainings": 0
- },
- {
- "id": 3363,
- "name": "№3363 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "9.001351",
- "latitude": "50.826444",
- "address": "Waldstraße, Stadtallendorf, Landkreis Marburg-Biedenkopf, Regierungsbezirk Gießen, Hessen, 35260, Deutschland, Europa",
- "city_id": 7803,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c5a5e5c425ee50bb812bbcc46289d5181436952066.jpg",
- "trainings": 0
- },
- {
- "id": 3364,
- "name": "№3364 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.791032",
- "latitude": "50.966604",
- "address": "Brüder-Grimm-Schule Gesammtschule, 6, Kerschensteiner Straße, Göttinger Bogen, Bebra, Landkreis Hersfeld-Rotenburg, Regierungsbezirk Kassel, Hessen, 36179, Deutschland, Europa",
- "city_id": 7802,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/42d2e5b662ac6d766b328e037ceaf03c1436952071.jpg",
- "trainings": 0
- },
- {
- "id": 3365,
- "name": "№3365 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "10.94326",
- "latitude": "48.34024",
- "address": "Oberländer Straße, Hochzoll-Süd, Hochzoll, Augsburg, Schwaben, Bayern, 86163, Deutschland",
- "city_id": 7437,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a72cb5f505ec44ea04e4510f0ba517cf1436952123.jpg",
- "trainings": 0
- },
- {
- "id": 3366,
- "name": "№3366 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.044605",
- "latitude": "52.267843",
- "address": "Willy-Brandt-Platz, Katharinenviertel, Innenstadt, Osnabrück, Niedersachsen, 49080, Deutschland",
- "city_id": 693,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/32e8faa1ed4203545e67f38011930b351436952127.jpg",
- "trainings": 1
- },
- {
- "id": 3367,
- "name": "№3367 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-9.228712",
- "latitude": "38.761361",
- "address": "Estrada da Falagueira, Mina, Casal de São Brás, Lisboa, 2700, Portugal",
- "city_id": 7777,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/8357d33267cc94804ce19a056a0a179e1436952130.jpg",
- "trainings": 0
- },
- {
- "id": 3368,
- "name": "№3368 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-9.226456",
- "latitude": "38.783802",
- "address": "Estrada da Serra da Mira, Casal da Mira, A-Da-Beja, Lisboa, 2700, Portugal",
- "city_id": 7777,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/f99818ad7416e0072227e5bd6acbf94f1436952182.jpg",
- "trainings": 0
- },
- {
- "id": 3369,
- "name": "№3369 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-8.161802078151823",
- "latitude": "37.884858584064894",
- "address": "EN 263, Aljustrel, Portugal",
- "city_id": 7800,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/5817fddb7de21dc6680fbcb9b05eed441436952185.jpg",
- "trainings": 0
- },
- {
- "id": 3370,
- "name": "№3370 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-8.853919",
- "latitude": "39.834211",
- "address": "Rua Domingos Morais Moteiro, Ortigosa, Leiria, Portugal",
- "city_id": 7799,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/d1f9de8c448df3ea0d447dc38edd92ef1436952190.jpg",
- "trainings": 0
- },
- {
- "id": 3371,
- "name": "№3371 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-7.959099",
- "latitude": "37.040547",
- "address": "Rua Comandante Sebastião da Costa, Faro, Algarve, 8000, Portugal",
- "city_id": 7455,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/aa066d4b5c1cda35a3e803340e4e18d71436952243.jpg",
- "trainings": 0
- },
- {
- "id": 3372,
- "name": "№3372 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-8.64537",
- "latitude": "40.995877",
- "address": "Rua Nossa Senhora do Mar, Silvalde, Aveiro, 4500, Portugal",
- "city_id": 7783,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/d81dd7ce74352d8e474fd59a12d2775f1436952246.jpg",
- "trainings": 0
- },
- {
- "id": 3373,
- "name": "№3373 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-8.001371",
- "latitude": "41.390219",
- "address": "Rua Doutor Baltazar Rebelo de Sousa, Celorico de Basto, Braga, Portugal",
- "city_id": 7798,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/4017c88ad12331bc415261fb6272af431436952250.jpg",
- "trainings": 0
- },
- {
- "id": 3374,
- "name": "№3374 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "8.83688",
- "latitude": "50.14309",
- "address": "Jobcenter Maintal, 2, Moosburger Weg, Dörnigheim, Maintal, Main-Kinzig-Kreis, Regierungsbezirk Darmstadt, Hessen, 63477, Deutschland",
- "city_id": 7603,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/f57810e171bbb269e4a8762eda76f5881436952303.jpg",
- "trainings": 0
- },
- {
- "id": 3375,
- "name": "№3375 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "9.44625",
- "latitude": "51.32086",
- "address": "Grundschule Kirchditmold, 41, Mergellstraße, Kirchditmold, Kassel, Regierungsbezirk Kassel, Hessen, 34130, Deutschland, Europa",
- "city_id": 7577,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/8986e101343f7e2a03728275c03370551436952308.jpg",
- "trainings": 0
- },
- {
- "id": 3376,
- "name": "№3376 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "8.684266",
- "latitude": "50.541929",
- "address": "Hang-Schneise, Großen-Linden, Linden, Landkreis Gießen, Regierungsbezirk Gießen, Hessen, 35440, Deutschland",
- "city_id": 7797,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6fa1d2ce60588a4c5cba425256b4420b1436952312.jpg",
- "trainings": 0
- },
- {
- "id": 3377,
- "name": "№3377 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.569299",
- "latitude": "50.358977",
- "address": "Am Stichel, Ziegelhütte, Usingen, Hochtaunuskreis, Regierungsbezirk Darmstadt, Hessen, 61250, Deutschland",
- "city_id": 7796,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/bf1878c532a9e612c1b68e42bc3775c11436952363.jpg",
- "trainings": 0
- },
- {
- "id": 3378,
- "name": "№3378 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "9.192078",
- "latitude": "48.83233",
- "address": "Zur Heiligen Dreifaltigkeit, Haldenrainstraße, Rot, Zuffenhausen, Stuttgart, Regierungsbezirk Stuttgart, Baden-Württemberg, 70437, Deutschland",
- "city_id": 7410,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/11ed8fbc22a8fe43a27c637913130b531436952368.jpg",
- "trainings": 0
- },
- {
- "id": 3379,
- "name": "№3379 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "6.093555",
- "latitude": "50.74369",
- "address": "Kupferbach, II. Rote-Haag-Weg, Siegel, Burtscheid, Aachen-Mitte, Aachen, Städteregion Aachen, Regierungsbezirk Köln, Nordrhein-Westfalen, 52076, Deutschland",
- "city_id": 7487,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/999624d0d8db9238f84168d66d42b70e1436952371.jpg",
- "trainings": 0
- },
- {
- "id": 3380,
- "name": "№3380 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "31.222713",
- "latitude": "30.053969",
- "address": "Al Gezira, Al-Agouza, Giza Governorate, 11211, Egypt",
- "city_id": 7795,
- "country_id": 61,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/c5f367c78c8155cf3832c32a03f80ffd1436952422.jpg",
- "trainings": 0
- },
- {
- "id": 3381,
- "name": "№3381 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "5.992742",
- "latitude": "50.890313",
- "address": "Mijnspoorweg, De Erk, Heerlen, Parkstad Limburg, Province of Limburg, Netherlands, 6416AG, The Netherlands",
- "city_id": 7794,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5978f7185e7a937fd5ea5945a69edde61436952425.jpg",
- "trainings": 0
- },
- {
- "id": 3382,
- "name": "№3382 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-8.362798",
- "latitude": "41.454645",
- "address": "Complexo Piscinas Aqua Brito, Rua General Humberto Delgado, Brito, Braga, Portugal",
- "city_id": 7793,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2dd14e3f75fd9772a43b757b03d09a1a1436952430.jpg",
- "trainings": 0
- },
- {
- "id": 3383,
- "name": "№3383 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-118.162652",
- "latitude": "34.153546",
- "address": "Fremont Drive, Pasadena, Los Angeles County, California, 91103, United States of America",
- "city_id": 7792,
- "country_id": 18,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/a7ac49141daa9ac3c5b3e68b6d06dd691436952483.jpg",
- "trainings": 0
- },
- {
- "id": 3384,
- "name": "№3384 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-118.416652",
- "latitude": "33.893914",
- "address": "Parque Culiacan, The Strand, Manhattan Beach, Los Angeles County, California, 90266, United States of America",
- "city_id": 7791,
- "country_id": 18,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/5f3dc84747cd001825e91859355a8fde1436952487.jpg",
- "trainings": 0
- },
- {
- "id": 3385,
- "name": "№3385 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-117.21153",
- "latitude": "32.797692",
- "address": "4194, Mission Bay Drive, Pacific Beach, San Diego, San Diego County, California, 92109, United States of America",
- "city_id": 651,
- "country_id": 18,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/3c59ec889998c82846a8fd9a79e4b1661436952492.jpg",
- "trainings": 0
- },
- {
- "id": 3386,
- "name": "№3386 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-122.43603",
- "latitude": "37.806657",
- "address": "1, Marina Green Drive, Marina District, San Francisco, San Francisco City and County, California, 94123, United States of America",
- "city_id": 7458,
- "country_id": 18,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/13231a103a0d7e72eba828e0466400281436952542.jpg",
- "trainings": 2
- },
- {
- "id": 3387,
- "name": "№3387 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-82.548789",
- "latitude": "27.264464",
- "address": "Beach Road, Sarasota Beach, Sarasota County, Florida, 34242, United States of America",
- "city_id": 654,
- "country_id": 18,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6e692e4c2b4b3a2a140c1be268d2e96f1436952545.jpg",
- "trainings": 0
- },
- {
- "id": 3389,
- "name": "№3389 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "2.193853",
- "latitude": "41.382043",
- "address": "Arenal, Passeig Marítim de la Barceloneta, la Barceloneta, Ciutat Vella, Barcelona, Barcelonés, Barcelona, Cataluña, 08, España",
- "city_id": 7790,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d7195f82837984d5a85347a066e08fc31436952610.jpg",
- "trainings": 0
- },
- {
- "id": 3390,
- "name": "№3390 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-9.007568",
- "latitude": "38.654363",
- "address": "Avenida Luis de Camões, Quinta Fonte da Prata, Alhos Vedros, Moita, 2860-125, Portugal",
- "city_id": 7787,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/85deb69f7505820e9dd5fbba094aaca91436952663.jpg",
- "trainings": 0
- },
- {
- "id": 3391,
- "name": "№3391 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-8.945272",
- "latitude": "38.565629",
- "address": "EN 379, Cabanas, Portugal",
- "city_id": 7786,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/69c5fd1a93c171c607e022acfe8be3001436952668.jpg",
- "trainings": 0
- },
- {
- "id": 3392,
- "name": "№3392 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-7.922347",
- "latitude": "37.018845",
- "address": "Rua de Berlin, Faro, Algarve, 8000, Portugal",
- "city_id": 7455,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8bd768bf71cecc8b5d1b62956b8d793b1436952674.jpg",
- "trainings": 1
- },
- {
- "id": 3393,
- "name": "№3393 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-8.806411",
- "latitude": "37.642015",
- "address": "Estrada do Porto das Lapas das Pombas, Almograve, Portugal",
- "city_id": 7785,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/4027cb02f8f17e0a3a761c0424d61b131436952722.jpg",
- "trainings": 0
- },
- {
- "id": 3394,
- "name": "№3394 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-2.112026",
- "latitude": "52.574384",
- "address": "Major Street, Heath Town, Wolverhampton, West Midlands, England, WV2 1QY, United Kingdom",
- "city_id": 7784,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b96cea6e401bfad53d7ceaef7360001e1436952725.jpg",
- "trainings": 0
- },
- {
- "id": 3395,
- "name": "№3395 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-9.189128",
- "latitude": "38.743287",
- "address": "Torre de escalada de Monsanto, Parque de Merendas, Benfica, Lisbon, Lisboa, 1500-203, Portugal",
- "city_id": 7764,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/971df62d0ebdf017338ca4c3676d8aff1436952728.jpg",
- "trainings": 0
- },
- {
- "id": 3396,
- "name": "№3396 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-8.653754",
- "latitude": "40.640506",
- "address": "Parque Infante Dom Pedro, Avenida Engenheiro Ravara, Aveiro, 3810-087, Portugal",
- "city_id": 7783,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/03af8cc36193d468f32ca6e5d6a62b921436952783.jpg",
- "trainings": 0
- },
- {
- "id": 3397,
- "name": "№3397 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-8.598127",
- "latitude": "41.153698",
- "address": "Rua Dom Agostinho de Jesus e Sousa, Fontaínhas, Bonfim, 4300-070, Portugal",
- "city_id": 7773,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/48278157b81ed190889d58d7b1d899021436952791.jpg",
- "trainings": 0
- },
- {
- "id": 3398,
- "name": "№3398 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-7.78073",
- "latitude": "41.156882",
- "address": "Estrada Nacional 108, Peso da Régua, 5050, Portugal",
- "city_id": 7782,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/a09292b0b971ce88e4e9024895948f7e1436952794.jpg",
- "trainings": 0
- },
- {
- "id": 3399,
- "name": "№3399 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-8.704235",
- "latitude": "41.189293",
- "address": "Bar do Oscar, Ciclovia da Avenida Doutor Antunes Guimarães, Leça da Palmeira, Matosinhos, 4100, Portugal",
- "city_id": 7781,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/465579127f1a64aa66d20c161e92c67b1436952843.jpg",
- "trainings": 0
- },
- {
- "id": 3400,
- "name": "№3400 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-9.413026",
- "latitude": "38.713084",
- "address": "Rua Nova da Ribeira, Bicesse, Amoreira, Lisboa, 2645-185, Portugal",
- "city_id": 7780,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/570f781aaa408c10854f6a95410550621436952847.jpg",
- "trainings": 0
- },
- {
- "id": 3401,
- "name": "№3401 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "5.021324",
- "latitude": "52.136602",
- "address": "379, Pauwenkamp, Maarssen, Maarssenbroek, Bestuur Regio Utrecht, Utrecht, Netherlands, 3607TD, The Netherlands",
- "city_id": 7779,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/43a142930e5b2768b000a2178e7c24bf1436952856.jpg",
- "trainings": 0
- },
- {
- "id": 3402,
- "name": "№3402 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "120.735709",
- "latitude": "24.172465",
- "address": "Central Taiwan University of Science and Technology, 666, Buzi Road, Buzi Village, 大坑, Beitun District, Taichung City, 40601, Republic of China",
- "city_id": 7626,
- "country_id": 34,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/ef8d49591295c3799c2f11db3f7f5b1c1436952903.jpg",
- "trainings": 0
- },
- {
- "id": 3403,
- "name": "№3403 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "9.232965",
- "latitude": "52.934798",
- "address": "Lindhooper Straße, Höltenwerder, Verden (Aller), Landkreis Verden, Niedersachsen, 27283, Deutschland",
- "city_id": 7778,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f99eff593c1f769ed89b01db0bb6ce721436952906.jpg",
- "trainings": 0
- },
- {
- "id": 3404,
- "name": "№3404 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-9.234746",
- "latitude": "38.761077",
- "address": "Rua Rainha Dona Leonor, Mina, Amadora, Lisboa, 2700-596, Portugal",
- "city_id": 7777,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/22e92d0d27bfbcded1dbb6782d0049321436952913.jpg",
- "trainings": 0
- },
- {
- "id": 3405,
- "name": "№3405 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-8.484062",
- "latitude": "37.147962",
- "address": "IC 4, Estômbar, Faro, Algarve, Portugal",
- "city_id": 7770,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d0c63b543ab081c62d12be1f4b0213a81436952962.jpg",
- "trainings": 0
- },
- {
- "id": 3406,
- "name": "№3406 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-8.50942",
- "latitude": "37.142635",
- "address": "EN 125, Praia da Rocha, Parchal, Faro, Algarve, 8500, Portugal",
- "city_id": 7775,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f60e2c97523d4c1818556dfa0860b4ee1436952965.jpg",
- "trainings": 0
- },
- {
- "id": 3407,
- "name": "№3407 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-8.614372",
- "latitude": "41.205801",
- "address": "Pedro Mesquita, Rua de Santana, Gueifães, Porto, 4470-111, Portugal",
- "city_id": 7773,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/98fcbe3b2418b5926e95f07f8162d6591436952968.jpg",
- "trainings": 0
- },
- {
- "id": 3408,
- "name": "№3408 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-9.053062",
- "latitude": "38.559941",
- "address": "Avenida da Liberdade, Área Residencial de Fernão Ferro e Quinta do Conde, Fontainhas, Freguesia de Quinta do Conde, Concelho de Sesimbra, 2840, Portugal",
- "city_id": 7774,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/eece829216d590577bf17e84de5437b71436953022.jpg",
- "trainings": 0
- },
- {
- "id": 3409,
- "name": "№3409 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-8.59157",
- "latitude": "41.118789",
- "address": "Avenida Vasco da Gama, Centro, Porto, 4430, Portugal",
- "city_id": 7773,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/f7098bb5e0fc150507ac087be7f4aaff1436953028.jpg",
- "trainings": 0
- },
- {
- "id": 3410,
- "name": "№3410 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.87506",
- "latitude": "52.26388",
- "address": "Käthe-Kollwitz-Schule, Schülerweg, Häverstädt, Minden, Kreis Minden-Lübbecke, Regierungsbezirk Detmold, Nordrhein-Westfalen, 32429, Deutschland",
- "city_id": 7772,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/668e2eded1ee5c059cc0f329df2e731c1436953040.jpg",
- "trainings": 0
- },
- {
- "id": 3411,
- "name": "№3411 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-8.906567",
- "latitude": "38.634268",
- "address": "Rua Adriano Correia de Oliveira, Pinhal Novo, Setúbal, Portugal",
- "city_id": 7771,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/27e1f2e80afd37d21bd60b925802e6a81436953083.jpg",
- "trainings": 0
- },
- {
- "id": 3412,
- "name": "№3412 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-8.545623",
- "latitude": "37.130114",
- "address": "Parque da Juventude, Variante 6, Praia da Rocha, Portimão, Faro, Algarve, 8500-123, Portugal",
- "city_id": 7770,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4d7d086e1e984510b55a9c1f38f8e11a1436953090.jpg",
- "trainings": 0
- },
- {
- "id": 3413,
- "name": "№3413 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-9.345285",
- "latitude": "38.684173",
- "address": "Rua de Luanda, Rebelva, Carcavelos, Lisboa, 2775-584, Portugal",
- "city_id": 7764,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/5eb6e989f7993356ec48628b56d61aec1436953100.jpg",
- "trainings": 0
- },
- {
- "id": 3414,
- "name": "№3414 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-7.901238",
- "latitude": "40.658962",
- "address": "Avenida José Relvas, Repeses, Viseu, Portugal",
- "city_id": 7769,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9f36e34d61c0238fc849f66f6bd889471436953142.jpg",
- "trainings": 0
- },
- {
- "id": 3415,
- "name": "№3415 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-7.173561",
- "latitude": "41.291217",
- "address": "Circuito de manutenção, Arco, Portugal",
- "city_id": 7768,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/b4598a45940976f38e887e829cced0e81436953147.jpg",
- "trainings": 0
- },
- {
- "id": 3416,
- "name": "№3416 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-7.796704",
- "latitude": "41.517156",
- "address": "Rua do Bucheiro, Ribeira de Pena, Portugal",
- "city_id": 7767,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/bd3cae0cd76f2f3dcd070f77572c0f9d1436953151.jpg",
- "trainings": 0
- },
- {
- "id": 3417,
- "name": "№3417 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-7.654302",
- "latitude": "37.131939",
- "address": "EN 125, Tavira, Faro, Algarve, Portugal",
- "city_id": 7455,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/61367c691448011638b4ffc66191ce661436953203.jpg",
- "trainings": 0
- },
- {
- "id": 3418,
- "name": "№3418 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-8.490831",
- "latitude": "40.110907",
- "address": "Avenida Bombeiros Voluntários de Condeixa, Condeixa-a-Nova, 3150, Portugal",
- "city_id": 7766,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2d167cab0577c4d80b54cc95c183af771436953206.jpg",
- "trainings": 0
- },
- {
- "id": 3419,
- "name": "№3419 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-8.322953",
- "latitude": "41.432206",
- "address": "Alameda dos Desportos, Salgueiral, Creixomil, Braga, 4815, Portugal",
- "city_id": 7793,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b6c334de509fd92cf6b229b59beb67641436953215.jpg",
- "trainings": 0
- },
- {
- "id": 3420,
- "name": "№3420 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-8.279664",
- "latitude": "41.447985",
- "address": "Parque da Cidade, Rua Antero Henriques da Silva, Salgueiral, Costa, Braga, Portugal",
- "city_id": 7793,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/81388564acd7120d212edb9a868db55b1436953263.jpg",
- "trainings": 0
- },
- {
- "id": 3422,
- "name": "№3422 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-8.517647",
- "latitude": "41.413412",
- "address": "Casa das Artes, Alameda Padre Manuel Simões, Vila Nova de Famalicão, Vila Nova de Famalicão e Calendário, Vila Nova de Famalicão, Braga, 4760-103, Portugal",
- "city_id": 7763,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/361fe7ba0db36e77855913630370133e1436953269.jpg",
- "trainings": 0
- },
- {
- "id": 3423,
- "name": "№3423 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-86.276799",
- "latitude": "39.860037",
- "address": "West 62nd Street, Legendary Hills, Marion County, Indiana, 46278, United States of America",
- "city_id": 7762,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b9511ad8e97d9051037fff281e65bfac1436953323.jpg",
- "trainings": 0
- },
- {
- "id": 3425,
- "name": "№3425 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "10.413736",
- "latitude": "50.572439",
- "address": "Landsberger Straße, Jerusalem, Meiningen, Landkreis Schmalkalden-Meiningen, Thüringen, 98617, Deutschland, Europa",
- "city_id": 7760,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9af98b9a90a2c80aa83a258a7f27caf31436953331.jpg",
- "trainings": 0
- },
- {
- "id": 3426,
- "name": "№3426 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "8.56156",
- "latitude": "50.57978",
- "address": "Alte Backhaus, 1, Hinstein, Dorlar, Lahnau, Lahn-Dill-Kreis, Regierungsbezirk Gießen, Hessen, 35633, Deutschland",
- "city_id": 7759,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d16f40c88070e099d77f7be9ec4a66fe1436953383.jpg",
- "trainings": 0
- },
- {
- "id": 3427,
- "name": "№3427 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.607462",
- "latitude": "53.539378",
- "address": "Matchball, 16, Adolf-Hoff-Weg, Bürgerpark, Geestemünde, Stadtbezirk Bremerhaven-Süd, Bremerhaven, Bremen, 27574, Deutschland",
- "city_id": 7758,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8baa935e34f051ec91ea32eba0177cf81436953388.jpg",
- "trainings": 0
- },
- {
- "id": 3428,
- "name": "№3428 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.66973",
- "latitude": "50.05136",
- "address": "Kurt-Schumacher-Straße, Neu-Isenburg, Landkreis Offenbach, Regierungsbezirk Darmstadt, Hessen, 63263, Deutschland",
- "city_id": 7757,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d05bdf40f197e6973941dd284fbbe2131436953395.jpg",
- "trainings": 0
- },
- {
- "id": 3429,
- "name": "№3429 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "8.754342",
- "latitude": "50.076229",
- "address": "Auf der Rosenhöhe, Lauterborn, Offenbach am Main, Regierungsbezirk Darmstadt, Hessen, 63069, Deutschland",
- "city_id": 7756,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/50b9745642eb12ce3158b89b5ed7252b1436953443.jpg",
- "trainings": 0
- },
- {
- "id": 3430,
- "name": "№3430 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "-73.928818",
- "latitude": "40.865363",
- "address": "Anne Loftus Playground, Riverside Drive, Inwood, New York, New York City, New York, 10040, United States of America",
- "city_id": 655,
- "country_id": 18,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/f785b965defd26faec4820d3a3f80da11436953450.jpg",
- "trainings": 0
- },
- {
- "id": 3431,
- "name": "№3431 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-73.822157",
- "latitude": "40.74961",
- "address": "East-West School of International Studies, 46-21, Colden Street, Murray Hill, Queens, Queens County, New York City, New York, 11355, United States of America",
- "city_id": 655,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/dc51706e7cd89a6b18dc583d25136b451436953456.jpg",
- "trainings": 0
- },
- {
- "id": 3432,
- "name": "№3432 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "18.697019",
- "latitude": "45.558517",
- "address": "Europska Avenija, Tvrđa, Osijek, Osijek-Baranja, 31000, Croatia",
- "city_id": 723,
- "country_id": 26,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7e38fa72124572944823910c1088c4241436953503.jpg",
- "trainings": 0
- },
- {
- "id": 3433,
- "name": "№3433 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "13.198484",
- "latitude": "52.548021",
- "address": "25, Hügelschanze, Spandau, Berlin, 13585, Deutschland",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a1308785b6f105ba993ea311fa83752d1436953510.jpg",
- "trainings": 0
- },
- {
- "id": 3435,
- "name": "№3435 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-4.100157",
- "latitude": "47.976779",
- "address": "Allée Loic Caradec, Ergué-Armel, Quimper, Finistère, Bretagne, France métropolitaine, 29000, France",
- "city_id": 7755,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5dba9d872a64b1df79d0484edbd2af261436953563.jpg",
- "trainings": 0
- },
- {
- "id": 3436,
- "name": "№3436 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.327329",
- "latitude": "47.423386",
- "address": "Sprint Bahn, Hauptstrasse, Gaiserwald, Wahlkreis St. Gallen, Sankt Gallen, 9030, Switzerland",
- "city_id": 7754,
- "country_id": 27,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e25f4ddaa769ca45f8849af7f2c186881436953568.jpg",
- "trainings": 0
- },
- {
- "id": 3437,
- "name": "№3437 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.210224",
- "latitude": "47.469591",
- "address": "Rütenen Schulhaus, Ringstrasse, Windisch, Bezirk Brugg, Aargau, 5210, Switzerland",
- "city_id": 7753,
- "country_id": 27,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/28423f34a30a833e04dcc4e7f4ed258d1436953571.jpg",
- "trainings": 0
- },
- {
- "id": 3438,
- "name": "№3438 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "8.573572",
- "latitude": "47.382585",
- "address": "ASVZ Hochschulsportanlage Fluntern, 196, Zürichbergstrasse, Fluntern, Kreis 7, Zurich, Bezirk Zürich, Zurich, 8044, Switzerland",
- "city_id": 7712,
- "country_id": 27,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/fe4e0ebca0ce081ee7b7bc9c55f78b091436953623.jpg",
- "trainings": 0
- },
- {
- "id": 3439,
- "name": "№3439 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "7.446737",
- "latitude": "46.951146",
- "address": "7a, Uferweg, Lorraine, Bern, Verwaltungskreis Bern-Mittelland, Verwaltungsregion Bern-Mittelland, Bern, 3013, Switzerland",
- "city_id": 7752,
- "country_id": 27,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e01e20b3953718edb2be81e7626a2b251436953626.jpg",
- "trainings": 0
- },
- {
- "id": 3440,
- "name": "№3440 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "7.400192",
- "latitude": "46.93922",
- "address": "A12, Holligen, Bern, Verwaltungskreis Bern-Mittelland, Verwaltungsregion Bern-Mittelland, Bern, 3008, Switzerland",
- "city_id": 7752,
- "country_id": 27,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/795dc065c3e16ba128f2da1928cc2bbc1436953629.jpg",
- "trainings": 0
- },
- {
- "id": 3441,
- "name": "№3441 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.45935",
- "latitude": "47.479712",
- "address": "Sportfeldstrasse, Tübach, Wahlkreis Rorschach, Sankt Gallen, 9327, Switzerland",
- "city_id": 7751,
- "country_id": 27,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/92147335de6ab81c355d798ea5ad5ab81436953683.jpg",
- "trainings": 0
- },
- {
- "id": 3442,
- "name": "№3442 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.384962",
- "latitude": "47.428586",
- "address": "8, Volksbadstrasse, St. Fiden, St. Gallen, Wahlkreis St. Gallen, Sankt Gallen, 9000, Switzerland",
- "city_id": 657,
- "country_id": 27,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/856c3c5dc4648032c52ffbe7ff80782b1436953686.jpg",
- "trainings": 0
- },
- {
- "id": 3443,
- "name": "№3443 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.432439",
- "latitude": "50.500315",
- "address": "ev.1462, SNP, Jirkov, okres Chomutov, Ústecký kraj, Severozápad, 43111, Czech Republic",
- "city_id": 7750,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/84b2b90488c26a50fb4377b6ede25be51436953691.jpg",
- "trainings": 0
- },
- {
- "id": 3444,
- "name": "№3444 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "6.587833",
- "latitude": "51.354772",
- "address": "An der Rennbahn, Stadtwald, Krefeld, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 47800, Deutschland",
- "city_id": 7572,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6ab39bd5d69292c96064212ea0b46eef1436953742.jpg",
- "trainings": 0
- },
- {
- "id": 3445,
- "name": "№3445 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.37197",
- "latitude": "49.96751",
- "address": "Am Birkenwäldchen, Bauschheim, Rüsselsheim, Kreis Groß-Gerau, Regierungsbezirk Darmstadt, Hessen, 65428, Deutschland",
- "city_id": 7749,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c74ad7419eef5077204aaf471509beb81436953748.jpg",
- "trainings": 0
- },
- {
- "id": 3446,
- "name": "№3446 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "2.253623",
- "latitude": "48.883237",
- "address": "Parc Lebaudy, Allée Georges Hassoux, Puteaux, Nanterre, Hauts-de-Seine, Île-de-France, France métropolitaine, 92800, France",
- "city_id": 7705,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8a465af1983c93e67b4f94e5cb98bc9f1436953750.jpg",
- "trainings": 0
- },
- {
- "id": 3447,
- "name": "№3447 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "152.992532",
- "latitude": "-27.418382",
- "address": "Korea Park, Wardell Street, Enoggera, Brisbane, Queensland, 4051, Australia",
- "city_id": 7710,
- "country_id": 1,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/66d7fdc0ec26b94903d5780193f3adfe1436953802.jpg",
- "trainings": 0
- },
- {
- "id": 3448,
- "name": "№3448 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "11.403642",
- "latitude": "44.51479",
- "address": "15, Via Trattati Comunitari Europei 1957-2007, Pilastro, Bologna, BO, Emilia-Romagna, 40127, Italy",
- "city_id": 7748,
- "country_id": 31,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c15878dbdbccb3fc9f9019cf9af76b9f1436953805.jpg",
- "trainings": 0
- },
- {
- "id": 3449,
- "name": "№3449 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "6.463169",
- "latitude": "51.486753",
- "address": "Rheurdter Straße, Issum, Kreis Kleve, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 47661, Deutschland",
- "city_id": 7747,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8896a2e21a585526034f11c44c205a5a1436953808.jpg",
- "trainings": 0
- },
- {
- "id": 3450,
- "name": "№3450 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "10.54743",
- "latitude": "52.23177",
- "address": "Salzdahlumer Straße, Lindenberg, Südstadt- Rautheim- Mascherode, Braunschweig, Niedersachsen, 38126, Deutschland",
- "city_id": 7643,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/cac2d91be52da4a4c052ef84a81a566b1436953863.jpg",
- "trainings": 0
- },
- {
- "id": 3452,
- "name": "№3452 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "9.41135",
- "latitude": "51.26183",
- "address": "Am Baunsberg, Altenbauna, Baunatal, Landkreis Kassel, Regierungsbezirk Kassel, Hessen, 34225, Deutschland, Europa",
- "city_id": 7744,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/885ffaddd59c98a017683cdafe9f37c61436953876.jpg",
- "trainings": 0
- },
- {
- "id": 3453,
- "name": "№3453 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-0.326299",
- "latitude": "39.483365",
- "address": "Casa Museo Blasco Ibañez, Carrer d'Isabel de Villena, Malva-rosa, Poblats Marítims, Valencia, Comunidad Valenciana, 46011, España",
- "city_id": 652,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/06b0e5610b23abaa9b4bf7480f4b5d141436953923.jpg",
- "trainings": 0
- },
- {
- "id": 3454,
- "name": "№3454 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-3.995524",
- "latitude": "40.645023",
- "address": "Carretera de Moralzarzal, Urbanización Los Delfines, Dehesa Municipal, Collado Villalba, Cuenca del Guadarrama, Madrid, Comunidad de Madrid, 28400, España",
- "city_id": 7743,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/cd2ca452c91744cbe523a526cae684421436953926.jpg",
- "trainings": 0
- },
- {
- "id": 3455,
- "name": "№3455 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-8.179256",
- "latitude": "41.445548",
- "address": "EN 207, Fafe, Braga, 4820-103, Portugal",
- "city_id": 7798,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/afb2f185507e0b91732b43ba25263a881436953930.jpg",
- "trainings": 0
- },
- {
- "id": 3456,
- "name": "№3456 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.74221",
- "latitude": "52.4423",
- "address": "Niederrader Allee, Langenforth, Langenhagen, Region Hannover, Niedersachsen, 30853, Deutschland",
- "city_id": 7741,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0e88df436f26404a41845dfb142743701436953982.jpg",
- "trainings": 0
- },
- {
- "id": 3457,
- "name": "№3457 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-1.082079",
- "latitude": "50.823162",
- "address": "Gladys Avenue, Northern Parade, North End, Portsmouth, South East, England, PO2 9BL, United Kingdom",
- "city_id": 7740,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/25ac1532c65839922bab4d2e936ca5731436953989.jpg",
- "trainings": 0
- },
- {
- "id": 3458,
- "name": "№3458 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "100.557025",
- "latitude": "13.728165",
- "address": "Ratchadaphisek Road, Asok, Khlong Toei District, Bangkok, 10110, Thailand",
- "city_id": 7739,
- "country_id": 72,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2e51f3a75f2ba7fe5556cdc242d8e04b1436953995.jpg",
- "trainings": 0
- },
- {
- "id": 3459,
- "name": "№3459 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-157.82131",
- "latitude": "21.266964",
- "address": "Kalakaua Avenue, Kapahulu, Honolulu, Oahu County, Hawaii, 96815, United States of America",
- "city_id": 7738,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/fd5c32b23a78f8f9c31e1769ebff949e1436954042.jpg",
- "trainings": 0
- },
- {
- "id": 3460,
- "name": "№3460 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "6.55228",
- "latitude": "49.70733",
- "address": "Bahnhofstraße, Liersberg, Igel, Trier-Land, Landkreis Trier-Saarburg, Rheinland-Pfalz, 54298, Deutschland",
- "city_id": 7737,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e0aa005dac8fbfc03a802dcba45aa35a1436954047.jpg",
- "trainings": 0
- },
- {
- "id": 3461,
- "name": "№3461 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-47.468238",
- "latitude": "-23.525608",
- "address": "Avenida Domingos Julio, Sorocaba, São Paulo, Southeast Region, 18035001, Brazil",
- "city_id": 7461,
- "country_id": 44,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/dabdf3374e2dad6ff5b0c0331bcce5ca1436954051.jpg",
- "trainings": 0
- },
- {
- "id": 3462,
- "name": "№3462 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-57.579465",
- "latitude": "-25.277117",
- "address": "Cabo 1ro. Feliciano Marecos, Santo Domingo, Asuncion, Distrito Capital de Paraguay, Región Oriental, 1431, Paraguay",
- "city_id": 7735,
- "country_id": 58,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/46d68e706db3c7401e7c1deadce7fc311436954102.jpg",
- "trainings": 0
- },
- {
- "id": 3463,
- "name": "№3463 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-63.173837",
- "latitude": "-17.768895",
- "address": "Jacarandá, Municipio Santa Cruz de la Sierra, Provincia Andres Ibanez, Santa Cruz Department, Bolivia",
- "city_id": 7734,
- "country_id": 57,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/473ab7c6c90194cec4e88c2172ec33d81436954105.jpg",
- "trainings": 0
- },
- {
- "id": 3464,
- "name": "№3464 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-70.675911",
- "latitude": "-33.560483",
- "address": "Augusto D'halmar, El Bosque, Provincia de Santiago, XIII Región Metropolitana de Santiago, 8051557, Chile",
- "city_id": 7733,
- "country_id": 56,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1b8fac05db3e58f5e5f6144972d989b01436954109.jpg",
- "trainings": 0
- },
- {
- "id": 3465,
- "name": "№3465 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.983159",
- "latitude": "51.352002",
- "address": "Wilhelm-Liebknecht-Straße, Freiimfelde, Merseburg, Saalekreis, Sachsen-Anhalt, 06217, Deutschland",
- "city_id": 7732,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/deefdae8edb75b35df10167e5b30dc721436954163.jpg",
- "trainings": 0
- },
- {
- "id": 3466,
- "name": "№3466 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.13878",
- "latitude": "48.687405",
- "address": "Sale e Pepe, 6, Randweg, Leinfelden, Leinfelden-Echterdingen, Landkreis Esslingen, Regierungsbezirk Stuttgart, Baden-Württemberg, 70771, Deutschland",
- "city_id": 7731,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/803926b1cec64d0fc5672b85946ae79a1436954165.jpg",
- "trainings": 0
- },
- {
- "id": 3472,
- "name": "№3472 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "135.282977",
- "latitude": "43.745539",
- "address": "05Н-131, Olga, Ольгинский район, Primorsky Krai, Far Eastern Federal District, Russian Federation",
- "city_id": 8190,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/cfdbc3cf0e6a92fcc0fd0c3594c03afc1436954286.jpg",
- "trainings": 0
- },
- {
- "id": 3475,
- "name": "№3475 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "11.449429",
- "latitude": "48.746058",
- "address": "25, Altdorferstraße, Kothau, Ingolstadt, Oberbayern, Bayern, 85053, Deutschland",
- "city_id": 7728,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9a0ece5feba150f554506ef2e36855531436954346.jpg",
- "trainings": 0
- },
- {
- "id": 3476,
- "name": "№3476 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.549423",
- "latitude": "51.268452",
- "address": "Grüne Mitte, Crumbacher Straße, Lohfelden, Landkreis Kassel, Regierungsbezirk Kassel, Hessen, 34253, Deutschland, Europa",
- "city_id": 7727,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/22da667429505dbe797e933104e90dd21436954349.jpg",
- "trainings": 0
- },
- {
- "id": 3477,
- "name": "№3477 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "13.42737",
- "latitude": "50.486712",
- "address": "Kamenný vrch, Chomutov I, Chomutov, okres Chomutov, Ústecký kraj, Severozápad, 43004, Czech Republic",
- "city_id": 7726,
- "country_id": 30,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/b77d8bae2344cf9af88db1771905fa761436954403.jpg",
- "trainings": 0
- },
- {
- "id": 3478,
- "name": "№3478 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "9.45273",
- "latitude": "51.28927",
- "address": "287, Heinrich-Schütz-Allee, Niederzwehren, Kassel, Regierungsbezirk Kassel, Hessen, 34134, Deutschland, Europa",
- "city_id": 7577,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/289841005b7df9af208605b1df44ba481436954410.jpg",
- "trainings": 0
- },
- {
- "id": 3479,
- "name": "№3479 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "7.586985",
- "latitude": "47.570582",
- "address": "166, Unterer Rheinweg, Rheinhafen St. Johann, Basel, Basel-City, 4057, Switzerland",
- "city_id": 7725,
- "country_id": 27,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8ef5af9295ec07ad6264b068bfa510051436954413.jpg",
- "trainings": 0
- },
- {
- "id": 3480,
- "name": "№3480 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "8.588432",
- "latitude": "51.948085",
- "address": "ref:flurstück, Ehrenbergplatz, Friedrichshütte, Sennestadt, Verler Dreieck, Bielefeld, Regierungsbezirk Detmold, Nordrhein-Westfalen, 33689, Deutschland",
- "city_id": 7724,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/cf30228ae8e6e9bf58a912a5fff1a7a11436954463.jpg",
- "trainings": 0
- },
- {
- "id": 3481,
- "name": "№3481 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.597969",
- "latitude": "52.074772",
- "address": "Glückstädter Straße, Heepen, Brake, Bielefeld, Regierungsbezirk Detmold, Nordrhein-Westfalen, 33729, Deutschland",
- "city_id": 7606,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c1d012fb2dc72de22529500baa3d06451436954468.jpg",
- "trainings": 0
- },
- {
- "id": 3482,
- "name": "№3482 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "12.081028",
- "latitude": "54.136288",
- "address": "Schmarl-Dorf, Schmarl Dorf, Schmarl, Ortsamt Nordwest 1, Rostock, Mecklenburg-Vorpommern, 18106, Deutschland",
- "city_id": 7528,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/dec7c5f1208a98d2e548f9f063d0450b1436954472.jpg",
- "trainings": 0
- },
- {
- "id": 3483,
- "name": "№3483 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "11.421776",
- "latitude": "53.616902",
- "address": "5, Schleifmühlenweg, Ostorf, Schwerin, Mecklenburg-Vorpommern, 19061, Deutschland",
- "city_id": 7723,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/15f86dbb3dadbb0c92f43e09aceb6e091436954523.jpg",
- "trainings": 0
- },
- {
- "id": 3484,
- "name": "№3484 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.659119",
- "latitude": "49.871251",
- "address": "Woogsplatz, Am Kleinen Woog, Kapellplatzviertel, Darmstadt, Regierungsbezirk Darmstadt, Hessen, 64283, Deutschland",
- "city_id": 7722,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/b870b1f46264490022f1b945308714121436954530.jpg",
- "trainings": 0
- },
- {
- "id": 3485,
- "name": "№3485 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.668358",
- "latitude": "49.889104",
- "address": "Rollsporthalle, Kranichsteiner Straße, Komponistenviertel, Am Ziegelbusch, Darmstadt, Regierungsbezirk Darmstadt, Hessen, 64289, Deutschland",
- "city_id": 7722,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ba434fc709861dbcff0ae04afce4f0ec1436954533.jpg",
- "trainings": 0
- },
- {
- "id": 3486,
- "name": "№3486 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "73.414022",
- "latitude": "54.97279",
- "address": "улица Масленникова, Полёт, Октябрьский административный округ, Omsk, городской округ Омск, Omsk Oblast, Siberian Federal District, 644000, Russian Federation",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/9835c1f7e6e8e1757ccdd3d050efebf21436954583.jpg",
- "trainings": 0
- },
- {
- "id": 3487,
- "name": "№3487 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "92.897988",
- "latitude": "55.99668",
- "address": "4, Навигационная улица, Центральный район, Krasnoyarsk, городской округ Красноярск, Krasnoyarsk Krai, Siberian Federal District, 660000, Russian Federation",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/d87cdfbb0e654466d45aba9ea8693e781436954587.jpg",
- "trainings": 0
- },
- {
- "id": 3489,
- "name": "№3489 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.852558",
- "latitude": "42.171595",
- "address": "Христо Ботев, кв.Василико, Tsarevo, Burgas Region, Bulgaria",
- "city_id": 7721,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/504ca39ffedfa3709a25403a7bc1ca271436954705.jpg",
- "trainings": 0
- },
- {
- "id": 3490,
- "name": "№3490 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.92178",
- "latitude": "53.33414",
- "address": "Notfallpunkt WL-7, Bendestorfer Straße, Buchholz in der Nordheide, Landkreis Harburg, Niedersachsen, 21244, Deutschland",
- "city_id": 7720,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b338678c2efca1e5a6811424f1f93ebe1436954710.jpg",
- "trainings": 0
- },
- {
- "id": 3491,
- "name": "№3491 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "23.54926",
- "latitude": "43.199886",
- "address": "бул. Поп Сава Катрафилов, жк.Кемера-художник, Vratsa, Vratsa Region, 3000, Bulgaria",
- "city_id": 7718,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1b6db0f1bd39c0a9713922606f4ec4f91436954766.jpg",
- "trainings": 0
- },
- {
- "id": 3492,
- "name": "№3492 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "26.119773",
- "latitude": "41.524064",
- "address": "ул.Армира, Квартал Дружба, Ivailovgrad, Haskovo Region, Bulgaria",
- "city_id": 7717,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d7e88d219811d8384f6575a7691eea531436954769.jpg",
- "trainings": 0
- },
- {
- "id": 3493,
- "name": "№3493 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "26.976674",
- "latitude": "42.646783",
- "address": "Генерал Радецки, Karnobat, Burgas Region, 8400, Bulgaria",
- "city_id": 7716,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2e5e56cbe5ac4fa8e1886e9172d843cc1436954772.jpg",
- "trainings": 0
- },
- {
- "id": 3494,
- "name": "№3494 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "23.304936",
- "latitude": "42.680194",
- "address": "бул. България, ж.к. Иван Вазов, Triadica, Sofia-City Region, 1408, Bulgaria",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a40a22733054b50c55d5ac0c239d39161436954823.jpg",
- "trainings": 0
- },
- {
- "id": 3495,
- "name": "№3495 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "23.295328",
- "latitude": "42.683186",
- "address": "бл.23А, Връх Тумба, ж.к. Хиподрума, Krasno selo, Sofia-City Region, 1621, Bulgaria",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/45db0bc68f5d6707bb8dae908acc470e1436954825.jpg",
- "trainings": 0
- },
- {
- "id": 3497,
- "name": "№3497 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.911131",
- "latitude": "50.914777",
- "address": "Castellauner Straße, Sülz, Lindenthal, Köln, Regierungsbezirk Köln, Nordrhein-Westfalen, 50667-51149, Deutschland",
- "city_id": 695,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f465c3e50ba674abe7275dcca1fe58ab1436954882.jpg",
- "trainings": 0
- },
- {
- "id": 3498,
- "name": "№3498 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.904585",
- "latitude": "49.140634",
- "address": "Talstraße, Eppingen, Verwaltungsgemeinschaft Eppingen, Landkreis Heilbronn, Regierungsbezirk Stuttgart, Baden-Württemberg, 75031, Deutschland",
- "city_id": 7714,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/751c36643c19133ec599b8a7354d30e01436954885.jpg",
- "trainings": 0
- },
- {
- "id": 3499,
- "name": "№3499 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "8.629264",
- "latitude": "50.233648",
- "address": "Obereschbacher Grenzweg, Ober-Eschbach, Bad Homburg vor der Höhe, Hochtaunuskreis, Regierungsbezirk Darmstadt, Hessen, 61350, Deutschland",
- "city_id": 7713,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/bbf29c73f65bcabb65d2aa939f3f247b1436954888.jpg",
- "trainings": 0
- },
- {
- "id": 3500,
- "name": "№3500 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.545545",
- "latitude": "47.399235",
- "address": "ASVZ Sport Center Irchel, Winterthurerstrasse, Unterstrass, Kreis 6, Zurich, Bezirk Zürich, Zurich, 8057, Switzerland",
- "city_id": 7712,
- "country_id": 27,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/d5d99f9c7a989cde2fc32afc655b61d01436954943.jpg",
- "trainings": 0
- },
- {
- "id": 3501,
- "name": "№3501 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "10.81174",
- "latitude": "51.523839",
- "address": "Gumpestraße, Krimderode, Nordhausen, Landkreis Nordhausen, Thüringen, 99734, Deutschland, Europa",
- "city_id": 7711,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/08765c92f7697ed84b7e309d5ce0b17a1436954946.jpg",
- "trainings": 0
- },
- {
- "id": 3502,
- "name": "№3502 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "153.000185",
- "latitude": "-27.482239",
- "address": "Riverside Drive, Toowong, Brisbane, Queensland, 4066, Australia",
- "city_id": 7710,
- "country_id": 1,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a6d409edc9208ec90869b75cd5f418ac1436954951.jpg",
- "trainings": 0
- },
- {
- "id": 3503,
- "name": "№3503 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "151.153097",
- "latitude": "-33.966997",
- "address": "Botany Bay waterfront cycleway, Brighton Le Sands, Sydney, New South Wales, 2217, Australia",
- "city_id": 698,
- "country_id": 1,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7e61cf04eebb331ed957e478887cc50a1436955003.jpg",
- "trainings": 0
- },
- {
- "id": 3504,
- "name": "№3504 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "174.755164",
- "latitude": "-36.847647",
- "address": "7106, Victoria Street West, Saint Marys Bay, Auckland, Waitemata, Auckland, 1011, New Zealand",
- "city_id": 7709,
- "country_id": 40,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9cc34466c26a80a477b6d8d7ac6671bf1436955006.jpg",
- "trainings": 0
- },
- {
- "id": 3505,
- "name": "№3505 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "174.752575",
- "latitude": "-36.873648",
- "address": "Bellevue Reserve, Bellevue Road, Mount Eden, Albert-Eden, Auckland, 1024, New Zealand",
- "city_id": 7709,
- "country_id": 40,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b4b2b9c7118a9430b403cb64be185cbb1436955013.jpg",
- "trainings": 0
- },
- {
- "id": 3506,
- "name": "№3506 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.63298",
- "latitude": "49.7416",
- "address": "8, Matthiasstraße, Süd, Trier, Rheinland-Pfalz, 54290, Deutschland",
- "city_id": 7708,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0635fdf4e6dcdfd64d63df2ede5eec4a1436955063.jpg",
- "trainings": 0
- },
- {
- "id": 3507,
- "name": "№3507 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.430177",
- "latitude": "59.715915",
- "address": "24, улица Глинки, Павловск-2, Pushkin, Пушкинский район, Saint Petersburg, Northwestern Federal District, 190000, Russian Federation",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/fd20d138053f71d9e30f541ad8ce92121436955067.jpg",
- "trainings": 0
- },
- {
- "id": 3508,
- "name": "№3508 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "7.51204",
- "latitude": "52.16264",
- "address": "82, Lerchenfeld, Emsdetten, Kreis Steinfurt, Regierungsbezirk Münster, Nordrhein-Westfalen, 48282, Deutschland",
- "city_id": 7707,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d11d5bb644438838320c96709dda75791436955072.jpg",
- "trainings": 0
- },
- {
- "id": 3509,
- "name": "№3509 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "7.44418",
- "latitude": "51.45835",
- "address": "18, Hugo-Sickmann-Straße, Löttringhausen, Dortmund, Regierungsbezirk Arnsberg, Nordrhein-Westfalen, 44229, Deutschland",
- "city_id": 7477,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e9de62bd6f0dab78757164320277a95c1436955123.jpg",
- "trainings": 1
- },
- {
- "id": 3510,
- "name": "№3510 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "2.225679",
- "latitude": "48.890356",
- "address": "Parc canin, Allée de l'Arlequin, Résidence Aillaud 'Tours Nuages', Nanterre, Hauts-de-Seine, Île-de-France, France métropolitaine, 92000, France",
- "city_id": 7705,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f59ec67847d5573c52c082cfa6557ce81436955129.jpg",
- "trainings": 0
- },
- {
- "id": 3511,
- "name": "№3511 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.150594",
- "latitude": "48.634743",
- "address": "Bahnhofstraße, Waldenbuch-Glashütte, Waldenbuch, Gemeindeverwaltungsverband Waldenbuch/Steinenbronn, Landkreis Böblingen, Regierungsbezirk Stuttgart, Baden-Württemberg, 71111, Deutschland",
- "city_id": 7704,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2267c786afc49b1352973928c17d2c0d1436955132.jpg",
- "trainings": 0
- },
- {
- "id": 3512,
- "name": "№3512 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "121.023783",
- "latitude": "14.569309",
- "address": "Petron, J. P. Rizal, Poblacion, Makati, District I, Makati, Metro Manila, 1208, Philippines",
- "city_id": 7703,
- "country_id": 55,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6f5932c8f433b7061914b7fd66c7a1f71436955183.jpg",
- "trainings": 0
- },
- {
- "id": 3513,
- "name": "№3513 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "121.06027",
- "latitude": "14.525514",
- "address": "8th, Morning Sun Subdivisiion, Taguig, Metro Manila, 1630, Philippines",
- "city_id": 7702,
- "country_id": 55,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/8ad9a19c26478ca594efffc722706f271436955186.jpg",
- "trainings": 0
- },
- {
- "id": 3514,
- "name": "№3514 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-0.117267",
- "latitude": "51.498111",
- "address": "Former Holy Trinity Urban Centre, Royal Street, Lambeth, London Borough of Lambeth, London, Greater London, England, SE1 7LH, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0175c0a0cd05f0af8f3ddb626ec658ea1436955245.jpg",
- "trainings": 0
- },
- {
- "id": 3515,
- "name": "№3515 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-0.871949",
- "latitude": "51.348525",
- "address": "Reading Road, Eversley, Hart, Hampshire, South East, England, United Kingdom",
- "city_id": 7701,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0361792c9ed358d25f5222009c269e651436955251.jpg",
- "trainings": 0
- },
- {
- "id": 3516,
- "name": "№3516 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "11.945132",
- "latitude": "51.486181",
- "address": "24, Gimritzer Damm, Pferdeviertel, Halle (Saale), Sachsen-Anhalt, 06122, Deutschland",
- "city_id": 7610,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1d9f0fecea065526f5182a142a00a8841436955303.jpg",
- "trainings": 0
- },
- {
- "id": 3517,
- "name": "№3517 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "13.75549",
- "latitude": "51.0347",
- "address": "6, Beethovenstraße, Seevorstadt-Ost/Großer Garten, Pirnaische Vorstadt, Altstadt, Dresden, Sachsen, 01219, Deutschland",
- "city_id": 7536,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2433d101c840f7297c2ecd289e4c802b1436955307.jpg",
- "trainings": 0
- },
- {
- "id": 3518,
- "name": "№3518 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "12.513779",
- "latitude": "52.372914",
- "address": "Ziesarer Landstraße, Wilhelmsdorf, Neue Mühle, Brandenburg an der Havel, Brandenburg, 14776, Deutschland",
- "city_id": 7700,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0fb06e7d7fe4406848dbc9eeb44c72bc1436955311.jpg",
- "trainings": 0
- },
- {
- "id": 3519,
- "name": "№3519 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "14.443573236530938",
- "latitude": "50.08047570566528",
- "address": "Riegrovy sady (RVL13)",
- "city_id": 806,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ae692d5c05cafea72f1ad8e3327bdf741436955362.jpg",
- "trainings": 0
- },
- {
- "id": 3521,
- "name": "№3521 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "10.496237",
- "latitude": "59.909125",
- "address": "Bærum Idrettspark, Hauger skolevei, Dønski, Kolsås, Sandvika, Bærum, Akershus, 1351, Norway",
- "city_id": 7675,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f3852ad8db0fb415896ab9b7a80a16581436955373.jpg",
- "trainings": 0
- },
- {
- "id": 3522,
- "name": "№3522 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "11.48748",
- "latitude": "49.282049",
- "address": "Wolfsteinstraße, Mühlen, Neumarkt in der Oberpfalz, Landkreis Neumarkt in der Oberpfalz, Oberpfalz, Bayern, 92318, Deutschland",
- "city_id": 7698,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c8aceddf12094f5fe3927712389109f21436955422.jpg",
- "trainings": 0
- },
- {
- "id": 3523,
- "name": "№3523 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "-73.859782",
- "latitude": "45.645948",
- "address": "3, Place Des Centaurées, Sainte-Thérèse, Quebec, J7E5R1, Canada",
- "city_id": 7697,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/cbc2fdf0b57c2a8d8c1a358cceebdaea1436955425.jpg",
- "trainings": 0
- },
- {
- "id": 3524,
- "name": "№3524 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "18.671871",
- "latitude": "50.282991",
- "address": "31, Jasna, Osiedle Zubrzyckiego, Osiedle Żwirki i Wigury, Gliwice, Silesian Voivodeship, 44-122, Poland",
- "city_id": 7696,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c3ae46b21141e698d9d0f0c4868fe1411436955429.jpg",
- "trainings": 0
- },
- {
- "id": 3525,
- "name": "№3525 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-73.406507",
- "latitude": "45.498332",
- "address": "route verte 1, Saint-Hubert, Longueuil, Quebec, J4Y0A5, Canada",
- "city_id": 7695,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/58a5b7c0c85582a94f30b23b9f4e6b041436955482.jpg",
- "trainings": 0
- },
- {
- "id": 3526,
- "name": "№3526 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-73.563768",
- "latitude": "45.512372",
- "address": "Parc Toussaint-Louverture, Boulevard De Maisonneuve Est, Les Habitations Jeanne-Mance, Ville-Marie, Montreal city, Montreal (06), Quebec, H2X 1K1, Canada",
- "city_id": 7656,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/98fa1b172c350c675512ce226dd62c3d1436955489.jpg",
- "trainings": 0
- },
- {
- "id": 3527,
- "name": "№3527 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-0.19137",
- "latitude": "51.530179",
- "address": "Quiet Gardens, Grantully Road, Maida Vale, City of Westminster, London, Greater London, England, W9 1LU, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/593212963b36f9ed974193c9ed5f10bb1436955494.jpg",
- "trainings": 0
- },
- {
- "id": 3528,
- "name": "№3528 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "127.078462",
- "latitude": "37.495545",
- "address": "Daechigil, 일원2동 (Irwon2-dong), Irwon-dong, Gangnam-gu, Seoul, 135, South Korea",
- "city_id": 7694,
- "country_id": 54,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9e6c54096232b2dc95bafd508b71c78e1436955544.jpg",
- "trainings": 0
- },
- {
- "id": 3529,
- "name": "№3529 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "10.167631",
- "latitude": "53.488463",
- "address": "Jugend Zentrum Neuallermöhe, 84, Sophie-Schoop-Weg, Neuallermöhe, Bergedorf, Hamburg, 21035, Deutschland",
- "city_id": 7493,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0c7fe81fd6a20af3248b9e5f931df87e1436955549.jpg",
- "trainings": 0
- },
- {
- "id": 3530,
- "name": "№3530 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-3.004207",
- "latitude": "53.739596",
- "address": "Inner Promenade, Fairhaven, Fylde, Lancashire, North West England, England, United Kingdom",
- "city_id": 7693,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1016153c45da0413eeaa6b694ae7200c1436955554.jpg",
- "trainings": 0
- },
- {
- "id": 3531,
- "name": "№3531 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "61.340712",
- "latitude": "55.145554",
- "address": "Лыжероллерная трасса, Мелькомбинат, район Центральный, Chelyabinsk, Челябинский городской округ, Chelyabinsk Oblast, Ural Federal District, 454126, Russian Federation",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/26a5276a9cf0850b33d1f6f3c5c20dc31436955602.jpg",
- "trainings": 0
- },
- {
- "id": 3532,
- "name": "№3532 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "144.977652",
- "latitude": "-37.878095",
- "address": "Bay Trail, Point Ormond, Elwood, City of Port Phillip, Greater Melbourne, Victoria, 3184, Australia",
- "city_id": 7531,
- "country_id": 1,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/eff02033b9537d40a4bf74ee2c54a0681436955608.jpg",
- "trainings": 0
- },
- {
- "id": 3533,
- "name": "№3533 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-73.552825",
- "latitude": "45.534435",
- "address": "Centre Jean-Claude Malépart, Avenue Gascon, Gay Village, Ville-Marie, Montreal city, Montreal (06), Quebec, H1W 1G1, Canada",
- "city_id": 7656,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f83c848398362becf58b180833d0fc661436955611.jpg",
- "trainings": 0
- },
- {
- "id": 3534,
- "name": "№3534 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-74.136869",
- "latitude": "45.907697",
- "address": "149, Chemin de la Gare, Piedmont, Quebec, J0R1R0, Canada",
- "city_id": 7692,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e47d53078f2f0c1d0595fe591a3ecc3d1436955663.jpg",
- "trainings": 0
- },
- {
- "id": 3535,
- "name": "№3535 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "13.024522",
- "latitude": "55.588748",
- "address": "Ystadsgatan, Sofielunds Industriområde, Innerstaden, Malmö, Skåne län, Götaland, 21436, Sweden",
- "city_id": 7690,
- "country_id": 28,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ba083eed61e3146ec275cd65495153701436955666.jpg",
- "trainings": 0
- },
- {
- "id": 3536,
- "name": "№3536 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.9116",
- "latitude": "57.653354",
- "address": "47, Mandolingatan, Frölunda Torg, Askim-Frölunda-Högsbo, Gothenburg, Göteborg, Göteborgs och Bohus län, Västra Götalands län, Götaland, 42146, Sweden",
- "city_id": 8748,
- "country_id": 28,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5e707cc074b0b146227d98c4bc9355fb1436955669.jpg",
- "trainings": 0
- },
- {
- "id": 3537,
- "name": "№3537 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "13.039968",
- "latitude": "55.585398",
- "address": "von Rosens väg, Örtagården, Öster, Malmö, Skåne län, Götaland, 21229, Sweden",
- "city_id": 7690,
- "country_id": 28,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/60ce965220d788e710e16dd914c487c91436955723.jpg",
- "trainings": 0
- },
- {
- "id": 3538,
- "name": "№3538 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "12.98723",
- "latitude": "55.588233",
- "address": "Stadion, John Ericssons väg, Lorensborg, Väster, Malmö, Skåne län, Götaland, 21746, Sweden",
- "city_id": 7690,
- "country_id": 28,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6ac65da2a245e1e76ae2fd2cb88c522f1436955726.jpg",
- "trainings": 0
- },
- {
- "id": 3539,
- "name": "№3539 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "17.975193",
- "latitude": "59.282421",
- "address": "Hultgränd, Älvsjö postort, Stockholm, Landskapet Södermanland, Stockholms län, Svealand, 12558, Sweden",
- "city_id": 712,
- "country_id": 28,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e839e62b11a36b5e4a4875901f2cbec71436955731.jpg",
- "trainings": 0
- },
- {
- "id": 3540,
- "name": "№3540 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "19.191571",
- "latitude": "50.322981",
- "address": "Park Generała Józefa Hallera, Dojazdowa, Śródmieście, Dąbrowa Górnicza, Silesian Voivodeship, Poland",
- "city_id": 7689,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5b2ce8891cc51f2d2f768b7ad233c6e01436955783.jpg",
- "trainings": 0
- },
- {
- "id": 3541,
- "name": "№3541 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "17.337873",
- "latitude": "50.472132",
- "address": "Skatepark, Aleja Józefa Lompy, Śródmieście, Nysa, gmina Nysa, powiat nyski, Opole Voivodeship, Poland",
- "city_id": 7688,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6058c33690c50be47bcc3de598bac16a1436955787.jpg",
- "trainings": 0
- },
- {
- "id": 3542,
- "name": "№3542 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "21.453001",
- "latitude": "52.5902",
- "address": "Bulwar, Latoszek, Wyszków, gmina Wyszków, powiat wyszkowski, Masovian Voivodeship, Poland",
- "city_id": 7687,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0994b2a83b777a146ed8c01724cbbd1f1436955791.jpg",
- "trainings": 0
- },
- {
- "id": 3543,
- "name": "№3543 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "10.934006",
- "latitude": "50.68431",
- "address": "Internationales Begegnungszentrum, 38, Ehrenbergstraße, Neuhaus, Campus, Ilmenau, Ilm-Kreis, Thüringen, 98693, Deutschland, Europa",
- "city_id": 7686,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/aaad73ba40fc277699748bae46ab5dae1436955842.jpg",
- "trainings": 0
- },
- {
- "id": 3544,
- "name": "№3544 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "20.364058",
- "latitude": "52.625334",
- "address": "Płocka, Płońsk, powiat płoński, Masovian Voivodeship, Poland",
- "city_id": 7685,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6a121c4cefa2ee5870e040f6ea3f28d51436955850.jpg",
- "trainings": 0
- },
- {
- "id": 3545,
- "name": "№3545 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "16.636791",
- "latitude": "49.184715",
- "address": "820/2, Řehořova, Černovice, Brno, okres Brno-město, Jihomoravský kraj, Jihovýchod, 61800, Czech Republic",
- "city_id": 7680,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7440aa8d7cfc4a8fa125252ddd3174c41436955903.jpg",
- "trainings": 0
- },
- {
- "id": 3546,
- "name": "№3546 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.51366",
- "latitude": "51.6346",
- "address": "66, Eichendorffstraße, Geseke, Kreis Soest, Regierungsbezirk Arnsberg, Nordrhein-Westfalen, 59590, Deutschland",
- "city_id": 7684,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/946fabc07cd756876a6dc23272ee06ed1436955907.jpg",
- "trainings": 0
- },
- {
- "id": 3547,
- "name": "№3547 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "10.223671",
- "latitude": "59.740495",
- "address": "Strandveien, Drammen, Buskerud, 3012, Norway",
- "city_id": 7683,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4299633ccb829cc0a524c4acf51c69091436955912.jpg",
- "trainings": 0
- },
- {
- "id": 3548,
- "name": "№3548 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "16.62208",
- "latitude": "49.165535",
- "address": "Loď Bratislava, Sokolova, Horní Heršpice, Brno, okres Brno-město, Jihomoravský kraj, Jihovýchod, 61700, Czech Republic",
- "city_id": 7680,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/71b7c761b16a9c85dfcc7381742cbc331436955968.jpg",
- "trainings": 0
- },
- {
- "id": 3549,
- "name": "№3549 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.827261",
- "latitude": "50.632409",
- "address": "1052/6, U Zámecké zahrady, Teplice, okres Teplice, Ústecký kraj, Severozápad, 41501, Czech Republic",
- "city_id": 7682,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f3e23c147877fad65c78c3decf2d628c1436956022.jpg",
- "trainings": 0
- },
- {
- "id": 3550,
- "name": "№3550 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "16.873431",
- "latitude": "48.803364",
- "address": "318/14, Sportovní, Ladná, okres Břeclav, Jihomoravský kraj, Jihovýchod, 69146, Czech Republic",
- "city_id": 7681,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/da7a3accfc6801331a710a9d01e8a1801436956025.jpg",
- "trainings": 0
- },
- {
- "id": 3551,
- "name": "№3551 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "14.532489",
- "latitude": "50.107515",
- "address": "221/9, V Novém Hloubětíně, Hloubětín, Prague, okres Hlavní město Praha, Hlavní město Praha, Praha, 19800, Czech Republic",
- "city_id": 806,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1df8b87b44248950900547f429ecc23e1436956030.jpg",
- "trainings": 1
- },
- {
- "id": 3552,
- "name": "№3552 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "16.583886",
- "latitude": "49.230952",
- "address": "2560/11, Herčíkova, Královo Pole, Brno, okres Brno-město, Jihomoravský kraj, Jihovýchod, 61200, Czech Republic",
- "city_id": 7680,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5a3d3a13c33384c017fac4812d2de2711436956082.jpg",
- "trainings": 0
- },
- {
- "id": 3553,
- "name": "№3553 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "7.62875",
- "latitude": "51.94944",
- "address": "Spielplatz Am Südpark, Südstraße, Schützenhof, Mitte-Süd, Münster-Mitte, Münster, Regierungsbezirk Münster, Nordrhein-Westfalen, 48153, Deutschland",
- "city_id": 7587,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/942c32e0592be990505a4060f9dd97f21436956086.jpg",
- "trainings": 0
- },
- {
- "id": 3554,
- "name": "№3554 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "2.193666",
- "latitude": "48.96528",
- "address": "Square Guillaume Apolinaire, Cormeilles-en-Parisis, Argenteuil, Val-d'Oise, Île-de-France, France métropolitaine, 95240, France",
- "city_id": 7679,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b8c402435ddd687a2214151f8b944ac01436956090.jpg",
- "trainings": 0
- },
- {
- "id": 3555,
- "name": "№3555 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "12.08764",
- "latitude": "50.84995",
- "address": "21, Dr.-Donath-Straße, Zwötzen, Gera, Thüringen, 07551, Deutschland",
- "city_id": 7519,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8745c89adbbead06dfec262f1bc852811436956142.jpg",
- "trainings": 0
- },
- {
- "id": 3556,
- "name": "№3556 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "5.375236",
- "latitude": "43.260835",
- "address": "Avenue Pierre Mendès France, Saint-Giniez, Marseille 8e Arrondissement, Marseille, Bouches-du-Rhône, Provence-Alpes-Côte d'Azur, France métropolitaine, 13008, France",
- "city_id": 7678,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/678eef7fff5c59eaea3a62b2555f813b1436956146.jpg",
- "trainings": 0
- },
- {
- "id": 3557,
- "name": "№3557 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-0.028927",
- "latitude": "51.549152",
- "address": "Adidas Outdoor Gym, Lee Conservancy Road, Homerton, London Borough of Hackney, London, Greater London, England, E9 5JH, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2e76e3df553e59650972109389b594c51436956149.jpg",
- "trainings": 0
- },
- {
- "id": 3558,
- "name": "№3558 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-0.209148",
- "latitude": "51.534017",
- "address": "81, Harvist Road, Kilburn, London Borough of Brent, London, Greater London, England, NW6 6SG, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1d7e90c61b9a8c86017ccf222dc775451436956203.jpg",
- "trainings": 0
- },
- {
- "id": 3559,
- "name": "№3559 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-0.156857",
- "latitude": "51.555846",
- "address": "Savernake Road, Gospel Oak, London Borough of Camden, London, Greater London, England, N19, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/fe29ef4014ffb2ed925fcf0f7b1737cf1436956208.jpg",
- "trainings": 0
- },
- {
- "id": 3560,
- "name": "№3560 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-0.012477",
- "latitude": "51.543266",
- "address": "N07, West Park Walk, East Village, London Borough of Newham, London, Greater London, England, E20 1GS, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/eb382fb4c4f78b26651a28cbe0b227a01436956215.jpg",
- "trainings": 0
- },
- {
- "id": 3561,
- "name": "№3561 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "0.01561390000006213",
- "latitude": "51.5369992",
- "address": "Portway, West Ham, London Borough of Newham, London, Greater London, England, E15, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a7c0659b9b1fe4d031ae29a6edc683701436956262.jpg",
- "trainings": 0
- },
- {
- "id": 3562,
- "name": "№3562 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-0.153125",
- "latitude": "51.580523",
- "address": "Cricket Nets, Archway Road, Highgate, London Borough of Haringey, London, Greater London, England, N10, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e2aed80bbdaeafe668a379ec4d9f83401436956268.jpg",
- "trainings": 1
- },
- {
- "id": 3563,
- "name": "№3563 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-0.013271000000031563",
- "latitude": "51.5508977",
- "address": "BMX track",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/15b6b5bda8bc8cd9d79b2743b9a559871436956271.jpg",
- "trainings": 0
- },
- {
- "id": 3564,
- "name": "№3564 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-0.170331",
- "latitude": "51.450798",
- "address": "Baskerville Road, Clapham Junction, London Borough of Wandsworth, London, Greater London, England, SW18, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a14453f8d6df2928171e89bb79cf59b51436956323.jpg",
- "trainings": 0
- },
- {
- "id": 3565,
- "name": "№3565 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "-0.15486190000001443",
- "latitude": "51.45450229999999",
- "address": "38, Manchuria Road, Balham, London Borough of Wandsworth, London, Greater London, England, SW11 6AG, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d4d415a0d4444cca452f6c58ceb2b1f01436956328.jpg",
- "trainings": 0
- },
- {
- "id": 3566,
- "name": "№3566 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "-0.1579398000000083",
- "latitude": "51.4556388",
- "address": "Broomwood Road Alfriston Road, Broomwood Road, Balham, London Borough of Wandsworth, London, Greater London, England, SW11 6NP, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ebbdb84068daefbf81d5fe3033f4f7e11436956333.jpg",
- "trainings": 0
- },
- {
- "id": 3567,
- "name": "№3567 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "-0.15454360000001088",
- "latitude": "51.4612266",
- "address": "Forthbridge Road, Clapham Common North Side, Clapham Junction, London Borough of Wandsworth, London, Greater London, England, SW4 9SA, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/d2f0b2bba7cb5525f44e959823fb5d931436956382.jpg",
- "trainings": 0
- },
- {
- "id": 3568,
- "name": "№3568 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "4.386423",
- "latitude": "51.929537",
- "address": "15, Prinses Beatrixpark, Groenoord/Kethel, Schiedam, MRDH, South Holland, Netherlands, 3121KJ, The Netherlands",
- "city_id": 7407,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/838b5c6889f998fad5b83a77fccf418b1436956387.jpg",
- "trainings": 0
- },
- {
- "id": 3569,
- "name": "№3569 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-0.215143",
- "latitude": "50.84089",
- "address": "Highlands Road, Portslade Village, Shoreham-by-Sea, Brighton and Hove, South East, England, BN41 1XD, United Kingdom",
- "city_id": 7676,
- "country_id": 6,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/290c30fd3c6f407a57ffb61081a8fa521436956391.jpg",
- "trainings": 0
- },
- {
- "id": 3570,
- "name": "№3570 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-0.170037",
- "latitude": "50.841908",
- "address": "The Droveway, West Blatchington, Hove, Brighton and Hove, South East, England, United Kingdom",
- "city_id": 7676,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f16b732a8bfd9135ffbcb007b1ec554b1436956443.jpg",
- "trainings": 0
- },
- {
- "id": 3571,
- "name": "№3571 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "10.538037",
- "latitude": "59.884973",
- "address": "Kjørbo, E 18, Valler, Blommenholm, Sandvika, Bærum, Akershus, 1365, Norway",
- "city_id": 7675,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f81b8d89a375540c28d259d2847323081436956447.jpg",
- "trainings": 0
- },
- {
- "id": 3572,
- "name": "№3572 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.72108",
- "latitude": "50.11806",
- "address": "Toiletten Ostpark, Ferdinand-Happ-Straße, Ostend, Frankfurt am Main, Regierungsbezirk Darmstadt, Hessen, 60314, Deutschland",
- "city_id": 7518,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/8ee17d676f2ffa01c229a141dd293a311436956454.jpg",
- "trainings": 0
- },
- {
- "id": 3573,
- "name": "№3573 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "5.293652",
- "latitude": "60.386831",
- "address": "11, Lille Damsgårdsveien, Laksevåg, Melkeplassen, Bergen, Hordaland, 5162, Norway",
- "city_id": 7674,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/24cf6abaf0a5849d49c9717e0ab653311436956503.jpg",
- "trainings": 0
- },
- {
- "id": 3574,
- "name": "№3574 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "8.901731",
- "latitude": "61.24848",
- "address": "Beitostølen Hotell, Bygdinvegen, Beitostølen, Øystre Slidre, Oppland, 2953, Norway",
- "city_id": 7673,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b930e5beabab54115d4a1a6e7a2101811436956506.jpg",
- "trainings": 0
- },
- {
- "id": 3575,
- "name": "№3575 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "6.384886",
- "latitude": "62.465386",
- "address": "Barnas Lekeland AS, Vasstrandveien, Spjelkavik, Ålesund, Møre og Romsdal, 6011, Norway",
- "city_id": 7672,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/977811b1361718e7e80e8784ecdb49f51436956512.jpg",
- "trainings": 0
- },
- {
- "id": 3576,
- "name": "№3576 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "14.502125",
- "latitude": "48.510695",
- "address": "Bürgerkorpsturm, Promenade, Freistadt, Graben, Freistadt, Upper Austria, 4240, Austria",
- "city_id": 7671,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/aab1d13fd81a23d0385437adaa7bf05f1436956563.jpg",
- "trainings": 0
- },
- {
- "id": 3577,
- "name": "№3577 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "18.911001",
- "latitude": "69.631391",
- "address": "184, Strandvegen, Røstbakktoppen, Sydspissen, Tromsø, Troms, 9006, Norway",
- "city_id": 7670,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/68af849c45222141ef56a625e91ad5ff1436956568.jpg",
- "trainings": 0
- },
- {
- "id": 3578,
- "name": "№3578 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.317702",
- "latitude": "70.944202",
- "address": "Strandvegen, Kjøllefjord, Lebesby, Finnmark, 9790, Norway",
- "city_id": 7669,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7f048b83b2806f043997b277196d54621436956572.jpg",
- "trainings": 0
- },
- {
- "id": 3579,
- "name": "№3579 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "13.27886",
- "latitude": "53.5566",
- "address": "Sporthalle, 60b, Katharinenstraße, Katharinenviertel, Neubrandenburg, Landkreis Mecklenburgische Seenplatte, Mecklenburg-Vorpommern, 17033, Deutschland",
- "city_id": 7668,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/158ef8c9a3a4ba55bec0c537421a80241436956623.jpg",
- "trainings": 0
- },
- {
- "id": 3580,
- "name": "№3580 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "26.21228",
- "latitude": "-29.08552",
- "address": "Louw Wepener Street, Mangaung Ward 44, Bloemfontein, Mangaung Metropolitan Municipality, Free State, 9300, RSA",
- "city_id": 7667,
- "country_id": 53,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2577a43bc711b566d3400cafd89e86c61436956629.jpg",
- "trainings": 0
- },
- {
- "id": 3581,
- "name": "№3581 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "-118.743122",
- "latitude": "34.08533",
- "address": "The Promenade, Santa Monica, Los Angeles County, California, 90401, United States of America",
- "city_id": 7456,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/54acca69031532edda03f2ecdb6a5b791436956635.jpg",
- "trainings": 0
- },
- {
- "id": 3582,
- "name": "№3582 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "6.23406",
- "latitude": "50.5637",
- "address": "2b, Walter-Scheibler-Straße, Mützenich, Monschau, Städteregion Aachen, Regierungsbezirk Köln, Nordrhein-Westfalen, 52156, Deutschland",
- "city_id": 7666,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/13b450350bbfcaadde0c0eff45b3dfe51436956683.jpg",
- "trainings": 0
- },
- {
- "id": 3583,
- "name": "№3583 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "4.400087",
- "latitude": "51.189417",
- "address": "Vogelzanglaan, Middelheim, Antwerpen, Antwerp, Flanders, 2000;2018;2020;2030;2040;2050;2060;2100;2140;2170;2180;2600;2610;2660, Belgium",
- "city_id": 7665,
- "country_id": 45,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/737198a3671b6529e2e083a3d75a565f1436956687.jpg",
- "trainings": 0
- },
- {
- "id": 3584,
- "name": "№3584 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-71.233402",
- "latitude": "46.796375",
- "address": "696, Grande Allée Ouest, Saint-Sacrement, Quebec city, Quebec, G1S 1E2, Canada",
- "city_id": 7663,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c7a34b367dc3a91db871196e7aca7ae71436956690.jpg",
- "trainings": 0
- },
- {
- "id": 3585,
- "name": "№3585 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "2.659749",
- "latitude": "41.857784",
- "address": "Parc de Sant Salvador, Passeig de la Font Picant, Santa Coloma de Farners, Selva, Provincia de Gerona, Cataluña, 17430, España",
- "city_id": 7664,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e014dae0fcad2662223cd144358c7c411436956743.jpg",
- "trainings": 0
- },
- {
- "id": 3586,
- "name": "№3586 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "1.601858",
- "latitude": "41.20829",
- "address": "Autopista Pau Casals, Segur de Dalt, Sant Miquel, Calafell, Bajo Panadés, Província de Tarragona, Cataluña, 43882, España",
- "city_id": 7657,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f8d794efb362657e56da53851e27433e1436956747.jpg",
- "trainings": 0
- },
- {
- "id": 3587,
- "name": "№3587 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-71.263919",
- "latitude": "46.845504",
- "address": "Parc Henri-Casault, Boulevard de l'Atrium, Charlesbourg, Quebec city, Quebec, G1H6H2, Canada",
- "city_id": 7663,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/25038bdbe5fc04b0e02960aa2ffc79411436956751.jpg",
- "trainings": 0
- },
- {
- "id": 3588,
- "name": "№3588 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-79.524625",
- "latitude": "43.702595",
- "address": "2130, Weston Road, York, Toronto, Ontario, M9R, Canada",
- "city_id": 7662,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ca904981a6e0d138c605855463eb29051436956802.jpg",
- "trainings": 0
- },
- {
- "id": 3589,
- "name": "№3589 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-79.466969",
- "latitude": "43.634921",
- "address": "Sir Casimir Gzowski Park, Martin Goodman Trail, Swansea, Toronto, Ontario, M6R2K3, Canada",
- "city_id": 7662,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ac897f19dc84d8b3b536abf8960bc6bc1436956807.jpg",
- "trainings": 0
- },
- {
- "id": 3590,
- "name": "№3590 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-75.682573",
- "latitude": "45.442255",
- "address": "Rideau River Eastern Pathway, Lowertown, Ottawa, Ontario, K1N6K4, Canada",
- "city_id": 7660,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/189e077b6346adc8a23302da29c7ba921436956811.jpg",
- "trainings": 0
- },
- {
- "id": 3591,
- "name": "№3591 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "2.764379",
- "latitude": "42.113388",
- "address": "Passeig de Mossèn Lluís Constans, Banyoles, Bañolas, Pla de l'Estany, Provincia de Gerona, Cataluña, 17820, España",
- "city_id": 7661,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3a76b92fde0edb86f103852c66ab76b11436956863.jpg",
- "trainings": 0
- },
- {
- "id": 3592,
- "name": "№3592 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-75.604151",
- "latitude": "45.422912",
- "address": "Beaverpond Drive, Cyrville Industrial Area, Ottawa, Ontario, K1G3P8, Canada",
- "city_id": 7660,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/150eea36421aa26fac81ecbc468b49291436956868.jpg",
- "trainings": 0
- },
- {
- "id": 3593,
- "name": "№3593 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-73.601726",
- "latitude": "45.422457",
- "address": "8023, Boulevard LaSalle, LaSalle, Montreal city, Montreal (06), Quebec, H8R3H6, Canada",
- "city_id": 7656,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0bdfc529059a79380c9aa47f657b09ac1436956872.jpg",
- "trainings": 0
- },
- {
- "id": 3594,
- "name": "№3594 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-73.672054",
- "latitude": "45.521269",
- "address": "Parc Caron, Rue Muir, Ahuntsic-Cartierville, Montreal city, Montreal (06), Quebec, H4L4V1, Canada",
- "city_id": 7656,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b59dc15c750f3afd3a8048200debd1551436956922.jpg",
- "trainings": 0
- },
- {
- "id": 3595,
- "name": "№3595 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-73.333842",
- "latitude": "45.527417",
- "address": "Rue Lakeview, Saint-Bruno-de-Montarville, Quebec, Canada",
- "city_id": 7659,
- "country_id": 42,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/63a278cea3058701b86dba93c7331c491436956927.jpg",
- "trainings": 0
- },
- {
- "id": 3596,
- "name": "№3596 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-73.695681",
- "latitude": "45.552279",
- "address": "Parc des Prairies, 15 Rue, Laval, Quebec, H7N6L1, Canada",
- "city_id": 7658,
- "country_id": 42,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/a42da20577f0b3331f578e3b7a3db5921436956932.jpg",
- "trainings": 0
- },
- {
- "id": 3597,
- "name": "№3597 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "7.24509",
- "latitude": "51.53857",
- "address": "Mont-Cenis-Straße, Sodingen, Herne, Regierungsbezirk Arnsberg, Nordrhein-Westfalen, 44627, Deutschland",
- "city_id": 7636,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6f24cb2d1741e1dbfb6af126077d2c1b1436956983.jpg",
- "trainings": 0
- },
- {
- "id": 3598,
- "name": "№3598 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "1.603246",
- "latitude": "41.194396",
- "address": "Passeig Maritim, Sant Miquel, Calafell, Bajo Panadés, Província de Tarragona, Cataluña, 43882, España",
- "city_id": 7657,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/069f9fe545fd0c3cf100ef76df324d381436956985.jpg",
- "trainings": 0
- },
- {
- "id": 3599,
- "name": "№3599 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-73.55746",
- "latitude": "45.44693",
- "address": "Rue Claude-Vivier, Verdun, Montreal city, Montreal (06), Quebec, H3E1H2, Canada",
- "city_id": 7656,
- "country_id": 42,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/feb7058e1f5b47774b3134cc9ed195e41436956988.jpg",
- "trainings": 0
- },
- {
- "id": 3600,
- "name": "№3600 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-73.516194",
- "latitude": "45.666483",
- "address": "3995, 42e Av, Montreal city, Montreal (06), Quebec, Canada",
- "city_id": 7656,
- "country_id": 42,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/cacdec2f37d75d8659fd9d4e9e0b8b6d1436957043.jpg",
- "trainings": 0
- },
- {
- "id": 3601,
- "name": "№3601 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-73.585863",
- "latitude": "45.531218",
- "address": "Piscine et pataugeoire Laurier, Rue de Brébeuf, Le Plateau Mont-Royal, Montreal city, Montreal (06), Quebec, H2J 1H1, Canada",
- "city_id": 7656,
- "country_id": 42,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/cc60bc0089e1ee8632f172932d1270171436957048.jpg",
- "trainings": 0
- },
- {
- "id": 3602,
- "name": "№3602 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "16.158659",
- "latitude": "48.838084",
- "address": "272, Školní, Hodonice, okres Znojmo, Jihomoravský kraj, Jihovýchod, 67125, Czech Republic",
- "city_id": 7655,
- "country_id": 30,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6014882076fb5cef48a6b3340056352d1436957057.jpg",
- "trainings": 0
- },
- {
- "id": 3603,
- "name": "№3603 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "14.500406",
- "latitude": "50.117458",
- "address": "Park Srdce, Vysočanská, Prosek, Prague, okres Hlavní město Praha, Hlavní město Praha, Praha, 19000, Czech Republic",
- "city_id": 806,
- "country_id": 30,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/d3d423c0475a92803859cb07a4e3e2731436957103.jpg",
- "trainings": 0
- },
- {
- "id": 3604,
- "name": "№3604 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "15.00501",
- "latitude": "49.473836",
- "address": "23, Šohajova, Pacov, okres Pelhřimov, Kraj Vysočina, Jihovýchod, 39501, Czech Republic",
- "city_id": 7654,
- "country_id": 30,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6340be11dda76139dbc0f020ea02def81436957107.jpg",
- "trainings": 0
- },
- {
- "id": 3605,
- "name": "№3605 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "14.767907",
- "latitude": "50.165346",
- "address": "714/6, U Hájku, Čelákovice, okres Praha-východ, Středočeský kraj, Střední Čechy, 25088, Czech Republic",
- "city_id": 7653,
- "country_id": 30,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/46333d464e825dc35133ae3d5fc31a1d1436957112.jpg",
- "trainings": 0
- },
- {
- "id": 3606,
- "name": "№3606 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "11.643739",
- "latitude": "50.959746",
- "address": "76, Am Steiger, West, Jena-West, Jena, Thüringen, 07743, Deutschland",
- "city_id": 7498,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/f72e645809bd5b48e8fdc24f6d78a6391436957163.jpg",
- "trainings": 0
- },
- {
- "id": 3607,
- "name": "№3607 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "11.592179999999985",
- "latitude": "50.92009",
- "address": "USV Dreifelderhalle, Seidelstraße, Kernberge, Jena, Thüringen, 07749, Deutschland",
- "city_id": 7498,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/e56a1f1db9f5e92946100952f1b392b01436957170.jpg",
- "trainings": 0
- },
- {
- "id": 3608,
- "name": "№3608 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "9.673275",
- "latitude": "47.427655",
- "address": "Parkstadion Lustenau, Im Rank, Lustenau, Dornbirn, Vorarlberg, 6890, Austria",
- "city_id": 7652,
- "country_id": 47,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/b76e7773dbf6ab0440e03ce65f37dd361436957175.jpg",
- "trainings": 0
- },
- {
- "id": 3609,
- "name": "№3609 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "4.955181",
- "latitude": "52.346665",
- "address": "Radioweg, Oost-Watergraafsmeer, Amsterdam, Oost, Amsterdam, MRA, Stadsregio Amsterdam, North Holland, Netherlands, 1098VV, The Netherlands",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/8571077240e61b1f515c751ccc1d7aae1436957223.jpg",
- "trainings": 0
- },
- {
- "id": 3610,
- "name": "№3610 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.085581",
- "latitude": "54.187821",
- "address": "Am Sportplatz, Heide, Kreis Dithmarschen, Schleswig-Holstein, 25746, Deutschland",
- "city_id": 7651,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2c683c8ff0fd97f4a9e770a819643f521436957227.jpg",
- "trainings": 0
- },
- {
- "id": 3611,
- "name": "№3611 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "6.270526",
- "latitude": "51.671133",
- "address": "Karl-Leisner-Kindergarten, Niedermühlenweg, Uedem, Kreis Kleve, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 47589, Deutschland",
- "city_id": 7650,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/5517c6268cbe575b39057ac53d2357c01436957231.jpg",
- "trainings": 0
- },
- {
- "id": 3612,
- "name": "№3612 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.655713",
- "latitude": "50.681742",
- "address": "Lago Beach, Cellitinnenweg, Zülpich, Kreis Euskirchen, Regierungsbezirk Köln, Nordrhein-Westfalen, 53909, Deutschland",
- "city_id": 7649,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1341da011bf51c83e160be25271edd711436957283.jpg",
- "trainings": 0
- },
- {
- "id": 3613,
- "name": "№3613 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "153.115885",
- "latitude": "-26.676986",
- "address": "Mooloolaba Esp at Meta Street, Mooloolaba Esplanade, Mooloolaba, Queensland, 4575, Australia",
- "city_id": 7631,
- "country_id": 1,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/c084446d8184a69ecb8997f090d8ea311436957288.jpg",
- "trainings": 0
- },
- {
- "id": 3614,
- "name": "№3614 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "9.779065",
- "latitude": "53.578514",
- "address": "Kiesgrube, Sülldorfer Brooksweg, Rissen, Altona, Hamburg, 22559, Deutschland",
- "city_id": 7493,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/441d1adbb7ebe744d236294a4ad9eae11436957295.jpg",
- "trainings": 0
- },
- {
- "id": 3615,
- "name": "№3615 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "7.06841",
- "latitude": "51.40184",
- "address": "Marktplatz, Hagmanngarten, Heisingen, Essen, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 45259, Deutschland",
- "city_id": 7582,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/b12908072af327f9f3dbda97e5582ddb1436957343.jpg",
- "trainings": 0
- },
- {
- "id": 3616,
- "name": "№3616 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "1.308369",
- "latitude": "36.147424",
- "address": "N19, Firem, Chlef, 02000, Algeria",
- "city_id": 7648,
- "country_id": 52,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/fef3bcf06f2509f495230a6a68f442831436957350.jpg",
- "trainings": 0
- },
- {
- "id": 3617,
- "name": "№3617 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.61414",
- "latitude": "52.67868",
- "address": "Schulweg, Schwarmstedt, Samtgemeinde Schwarmstedt, Landkreis Heidekreis, Niedersachsen, 29690, Deutschland",
- "city_id": 7647,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/32f498094c3984710f089b780d8cd5b31436957357.jpg",
- "trainings": 0
- },
- {
- "id": 3618,
- "name": "№3618 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.45046",
- "latitude": "51.36373",
- "address": "Heckershäuser Straße, Obervellmar, Vellmar, Landkreis Kassel, Regierungsbezirk Kassel, Hessen, 34246, Deutschland, Europa",
- "city_id": 7646,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/5c200a7a3078b791aecc7fb6703c50701436957403.jpg",
- "trainings": 0
- },
- {
- "id": 3619,
- "name": "№3619 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "2.49442",
- "latitude": "39.52157",
- "address": "Avinguda del Mar Santa Ponca, Santa Ponça, Calvià, Sierra de Tramontana, Islas Baleares, 07184, España (mare territorial)",
- "city_id": 7628,
- "country_id": 10,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/31dc7af9d89c8d9ee921fad7b6626c911436957407.jpg",
- "trainings": 0
- },
- {
- "id": 3620,
- "name": "№3620 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "14.31401",
- "latitude": "51.73033",
- "address": "Gelsenkirchener Allee, Sachsendorf, Madlow, Cottbus, Brandenburg, 03048, Deutschland",
- "city_id": 7645,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6d4b991e65d5ce6309a6d1173a35beb21436957418.jpg",
- "trainings": 0
- },
- {
- "id": 3621,
- "name": "№3621 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "11.828549",
- "latitude": "49.755189",
- "address": "28, Kalvarienbergsiedlung, Eschenbach i.d.OPf., Eschenbach in der Oberpfalz (VGem), Landkreis Neustadt an der Waldnaab, Oberpfalz, Bayern, 92676, Deutschland",
- "city_id": 7644,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ada17554c28b1520fb7b32316dd2ffae1436957464.jpg",
- "trainings": 0
- },
- {
- "id": 3622,
- "name": "№3622 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "10.504313",
- "latitude": "52.247257",
- "address": "1, Hebbelstraße, Weststadt, Braunschweig, Niedersachsen, 38120, Deutschland",
- "city_id": 7643,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ca4a1ff5c52a631b17f05bd59e0c44f51436957467.jpg",
- "trainings": 0
- },
- {
- "id": 3623,
- "name": "№3623 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-74.055343",
- "latitude": "4.674018",
- "address": "Calle 88, Chapinero, Bogota, 110011, Colombia",
- "city_id": 7642,
- "country_id": 51,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/89acec0b2c431d2810f4826e132e87451436957473.jpg",
- "trainings": 0
- },
- {
- "id": 3624,
- "name": "№3624 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "4.433504",
- "latitude": "50.829981",
- "address": "Chaussée de Stockel - Stokkelsesteenweg, Woluwe-Saint-Lambert - Sint-Lambrechts-Woluwe, Brussels-Capital, 1200, Belgium",
- "city_id": 7641,
- "country_id": 45,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/fce99c3b46da9990648dadbe4f9b500b1436957522.jpg",
- "trainings": 0
- },
- {
- "id": 3625,
- "name": "№3625 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "4.419044",
- "latitude": "50.844592",
- "address": "2, Rue du Menuisier - Schrijnwerkerstraat, Woluwe-Saint-Lambert - Sint-Lambrechts-Woluwe, Brussels-Capital, 1200, Belgium",
- "city_id": 7641,
- "country_id": 45,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/3936219e30c51648ab290bbb526969641436957525.jpg",
- "trainings": 0
- },
- {
- "id": 3626,
- "name": "№3626 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.554797",
- "latitude": "49.536902",
- "address": "Familiensportpark West, Sandhöfer Weg, Viernheim, Kreis Bergstraße, Regierungsbezirk Darmstadt, Hessen, 68519, Deutschland",
- "city_id": 7640,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/57bdd518da157d17ba9c2a9d1b28eaf81436957529.jpg",
- "trainings": 0
- },
- {
- "id": 3627,
- "name": "№3627 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.69176",
- "latitude": "50.59559",
- "address": "Heckenweg, Kleingartenkolonie Waldbrunnenweg, Wieseck, Gießen, Landkreis Gießen, Regierungsbezirk Gießen, Hessen, 35396, Deutschland",
- "city_id": 7639,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/eb3aa960e669500e245a36e60c6af4381436957583.jpg",
- "trainings": 0
- },
- {
- "id": 3628,
- "name": "№3628 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.450553",
- "latitude": "50.705013",
- "address": "Strandbad Aartalsee, Hochzeitsweg, Bischoffen, Lahn-Dill-Kreis, Regierungsbezirk Gießen, Hessen, 35649, Deutschland",
- "city_id": 695,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/f832086e8eba17b69cb0c3c68e518fb21436957589.jpg",
- "trainings": 0
- },
- {
- "id": 3629,
- "name": "№3629 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "6.98296",
- "latitude": "51.42401",
- "address": "Ponyhof, Rüttenscheid, Werden, Essen, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 45149, Deutschland",
- "city_id": 7582,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/4eb2637093956561affc92e60ec9c96b1436957598.jpg",
- "trainings": 0
- },
- {
- "id": 3630,
- "name": "№3630 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.678403000000003",
- "latitude": "50.584051",
- "address": "Kosmeenwiese, Ein Bollwerk über dem Wasser, Wieseck, Gießen, Landkreis Gießen, Regierungsbezirk Gießen, Hessen, 35390, Deutschland",
- "city_id": 7639,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/009ca9e17362dd6f5bf49ce015b1e8291436957642.jpg",
- "trainings": 0
- },
- {
- "id": 3631,
- "name": "№3631 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "7.9068",
- "latitude": "51.68282",
- "address": "Nieliesberg, Werries, Geithe, Hamm, Regierungsbezirk Arnsberg, Nordrhein-Westfalen, 59071, Deutschland",
- "city_id": 7497,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/3aa387afb69c335da199e8ab8d6d86341436957649.jpg",
- "trainings": 0
- },
- {
- "id": 3632,
- "name": "№3632 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "7.825419",
- "latitude": "51.682737",
- "address": "Tilia, Ostenwall, Heessen, Hamm, Regierungsbezirk Arnsberg, Nordrhein-Westfalen, 59065, Deutschland",
- "city_id": 7497,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1592b21445ee9dc2dacb4154693530651436957654.jpg",
- "trainings": 0
- },
- {
- "id": 3633,
- "name": "№3633 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "55.141334",
- "latitude": "25.087814",
- "address": "Al Sufouh Road, Dubai Media City, Dubai, 500368, United Arab Emirates",
- "city_id": 7638,
- "country_id": 50,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/864556753987efbd91f26c7d1d5de2691436957702.jpg",
- "trainings": 1
- },
- {
- "id": 3634,
- "name": "№3634 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "3.650593",
- "latitude": "47.854432",
- "address": "Route Nationale 77, Villeneuve-Saint-Salves, Auxerre, Yonne, Bourgogne, France métropolitaine, 89230, France",
- "city_id": 7637,
- "country_id": 24,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/836e5895d0462fa9d83abbcf76a038d31436957711.jpg",
- "trainings": 0
- },
- {
- "id": 3635,
- "name": "№3635 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "7.238593",
- "latitude": "51.54373",
- "address": "Hölkeskampring, Sodingen, Herne, Regierungsbezirk Arnsberg, Nordrhein-Westfalen, 44623, Deutschland",
- "city_id": 7636,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/91a45f66c0f473018775d6a0f4ba576e1436957714.jpg",
- "trainings": 0
- },
- {
- "id": 3636,
- "name": "№3636 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.091753",
- "latitude": "48.735097",
- "address": "179, Katzenbachstraße, Lauchäcker, Büsnau, Vaihingen, Stuttgart, Regierungsbezirk Stuttgart, Baden-Württemberg, 70569, Deutschland",
- "city_id": 7410,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/814ca04c79039bdda061abbf5abd4f321436957762.jpg",
- "trainings": 0
- },
- {
- "id": 3637,
- "name": "№3637 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "6.895557",
- "latitude": "51.543643",
- "address": "Schlehenkamp, Fuhlenbrock, Bottrop, Regierungsbezirk Münster, Nordrhein-Westfalen, 46240, Deutschland",
- "city_id": 7635,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/e6fd8df7aa47ebc44cbe763b1d2beecc1436957765.jpg",
- "trainings": 0
- },
- {
- "id": 3638,
- "name": "№3638 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "7.089721",
- "latitude": "50.703606",
- "address": "Universitätssportanlage, Bodelschwinghweg, Venusberg, Stadtbezirk Bonn, Bonn, Regierungsbezirk Köln, Nordrhein-Westfalen, 53127, Deutschland",
- "city_id": 7634,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/d4c1381b2fa14e8fef390826207678051436957771.jpg",
- "trainings": 0
- },
- {
- "id": 3639,
- "name": "№3639 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.421571",
- "latitude": "49.499399",
- "address": "Rheinfeldstraße (BASF Tor 3), Sternstraße, Friesenheim, Ludwigshafen-Friesenheim, Ludwigshafen am Rhein, Rheinland-Pfalz, 67063, Deutschland",
- "city_id": 7516,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/a1ee0b984d2d08643b4c6df68c4b70a01436957823.jpg",
- "trainings": 0
- },
- {
- "id": 3640,
- "name": "№3640 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-81.374088",
- "latitude": "28.561519",
- "address": "North Orange Avenue, Downtown Orlando, Orlando, Orange County, Florida, 32801, United States of America",
- "city_id": 7633,
- "country_id": 18,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ce48d30ac047a5fb16cd403fde94efa41436957832.jpg",
- "trainings": 0
- },
- {
- "id": 3641,
- "name": "№3641 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "17.887483",
- "latitude": "49.950724",
- "address": "Jaselská, Opava-Předměstí, Opava, okres Opava, Moravskoslezský kraj, Moravskoslezsko, 74707, Czech Republic",
- "city_id": 7632,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d02bb8a833e47ac46720faafec86f8911436957835.jpg",
- "trainings": 0
- },
- {
- "id": 3642,
- "name": "№3642 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "153.136561",
- "latitude": "-26.683917",
- "address": "Harbour Parade, Minyama, Maroochydore, Queensland, 4575, Australia",
- "city_id": 7631,
- "country_id": 1,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e4cf2fcae4daf9ce61b6dcb08631358b1436957883.jpg",
- "trainings": 0
- },
- {
- "id": 3643,
- "name": "№3643 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-3.796921",
- "latitude": "40.285052",
- "address": "El Huerto del Cura, Plaza del Huerto del Cura, San Andrés, Centro - El Arroyo - La Fuente, Fuenlabrada, Área metropolitana de Madrid y Corredor del Henares, Comunidad de Madrid, 2944, España",
- "city_id": 7630,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/84eefe8895eef2136dd7c388657b9c161436957886.jpg",
- "trainings": 0
- },
- {
- "id": 3644,
- "name": "№3644 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "-80.130956",
- "latitude": "25.778956",
- "address": "Lummus Park Boardwalk, Miami Beach, Miami-Dade County, Florida, 33139, United States of America",
- "city_id": 653,
- "country_id": 18,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/e1ddbb4e5d279eeffe372fa938d849091436957889.jpg",
- "trainings": 0
- },
- {
- "id": 3645,
- "name": "№3645 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.030116",
- "latitude": "49.604845",
- "address": "Spardorfer Straße, Erlanger Meilwald, Erlangen, Mittelfranken, Bayern, 91054, Deutschland",
- "city_id": 7527,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20e0ce1083f7b715ddf825a88a63b1dc1436957943.jpg",
- "trainings": 0
- },
- {
- "id": 3646,
- "name": "№3646 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "20.945751",
- "latitude": "52.333666",
- "address": "40, Strumykowa, Nowodwory, Białołęka, Warsaw, Warszawa, Masovian Voivodeship, 03-139, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/21501330eab122db4e8d2a1a414d05501436957948.jpg",
- "trainings": 0
- },
- {
- "id": 3647,
- "name": "№3647 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "21.007667",
- "latitude": "52.202091",
- "address": "71, Antoniego Józefa Madalińskiego, Górny Mokotów, Mokotów, Warsaw, Warszawa, Masovian Voivodeship, 02-555, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/69972ba86edf801f7bdc468bc425a5ef1436957953.jpg",
- "trainings": 0
- },
- {
- "id": 3648,
- "name": "№3648 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "21.031587",
- "latitude": "52.208595",
- "address": "13/17, Parkowa, XII, Śródmieście, Warsaw, Warszawa, Masovian Voivodeship, 00-759, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/b3c3616205b81acd05f43072948af8921436958003.jpg",
- "trainings": 0
- },
- {
- "id": 3649,
- "name": "№3649 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "20.922201",
- "latitude": "52.32008",
- "address": "Parkowa, Bielany, Warsaw, Warszawa, Masovian Voivodeship, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/998cc8b802f7c722fea3fd87bc764adb1436958012.jpg",
- "trainings": 0
- },
- {
- "id": 3650,
- "name": "№3650 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "7.27492",
- "latitude": "51.50538",
- "address": "Wodanstraße, Harpen, Bochum-Nord, Bochum, Regierungsbezirk Arnsberg, Nordrhein-Westfalen, 44805, Deutschland",
- "city_id": 7482,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/d0583d712a887cffaa785b847f75eed31436958018.jpg",
- "trainings": 0
- },
- {
- "id": 3651,
- "name": "№3651 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "21.083235",
- "latitude": "52.124395",
- "address": "25, Nowoursynowska, Ursynów, Warsaw, Warszawa, Masovian Voivodeship, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/55da6366eb96ebd7b024d0bed38c2d341436958063.jpg",
- "trainings": 0
- },
- {
- "id": 3652,
- "name": "№3652 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "21.101049",
- "latitude": "52.221869",
- "address": "3, Plac Tadeusza Kotarbińskiego, Gocław, Praga-Południe, Warsaw, Warszawa, Masovian Voivodeship, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1890d76a0d18ea079aeca848ec7c5d181436958070.jpg",
- "trainings": 0
- },
- {
- "id": 3653,
- "name": "№3653 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "21.089383",
- "latitude": "52.226258",
- "address": "1, Awionetki RWD, Gocław, Praga-Południe, Warsaw, Warszawa, Masovian Voivodeship, 03-982, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/3e4e77414ce203182118ba66d6d901f41436958073.jpg",
- "trainings": 0
- },
- {
- "id": 3654,
- "name": "№3654 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "2.499923",
- "latitude": "39.52512",
- "address": "Avinguda del Son Pillo, Galatzó, Santa Ponça, Calvià, Sierra de Tramontana, Islas Baleares, 07184, España (mare territorial)",
- "city_id": 7628,
- "country_id": 10,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/00840aeeac5040b8b659367ca3cb3c621436958123.jpg",
- "trainings": 0
- },
- {
- "id": 3655,
- "name": "№3655 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "21.00924",
- "latitude": "52.201468",
- "address": "82F, Jarosława Dąbrowskiego, Górny Mokotów, Mokotów, Warsaw, Warszawa, Masovian Voivodeship, 02-571, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/655cdb12385b1660eb07798b3e2478b81436958127.jpg",
- "trainings": 0
- },
- {
- "id": 3656,
- "name": "№3656 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "18.673008",
- "latitude": "53.020258",
- "address": "Orliki - Boisko do piłki nożnej, Mariana Sydowa, Na Skarpie, Toruń, Kuyavian-Pomeranian Voivodeship, 87-100, Poland",
- "city_id": 7627,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1507c7522334993607e802f0322257a41436958130.jpg",
- "trainings": 0
- },
- {
- "id": 3657,
- "name": "№3657 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "4.685827",
- "latitude": "51.793099",
- "address": "Indianendorp, Overkampweg, Dordrecht, South Holland, Netherlands, 3318AP, The Netherlands",
- "city_id": 7510,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/71f370b52cb58de127056a7c766827fd1436958183.jpg",
- "trainings": 0
- },
- {
- "id": 3658,
- "name": "№3658 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.44794",
- "latitude": "51.29209",
- "address": "45, Heiligenbergstraße, Süsterfeld-Helleböhn, Kassel, Regierungsbezirk Kassel, Hessen, 34134, Deutschland, Europa",
- "city_id": 7577,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/cb129951a4d67deadb95f975ab5c22571436958187.jpg",
- "trainings": 0
- },
- {
- "id": 3659,
- "name": "№3659 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "9.450895",
- "latitude": "51.29572",
- "address": "46, Meißnerstraße, Süsterfeld-Helleböhn, Kassel, Regierungsbezirk Kassel, Hessen, 34134, Deutschland, Europa",
- "city_id": 7577,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/d56fb5cc51e1b64eedc3183c383f7ace1436958191.jpg",
- "trainings": 0
- },
- {
- "id": 3660,
- "name": "№3660 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "17.797104",
- "latitude": "51.660646",
- "address": "35, Lotnicza, Szczygliczka, Parcele Zacharzewskie, Ostrów Wielkopolski, powiat ostrowski, Greater Poland Voivodeship, 63-400, Poland",
- "city_id": 7624,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8187d36489c18e292edbeae7fd480ae71436958243.jpg",
- "trainings": 0
- },
- {
- "id": 3661,
- "name": "№3661 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "19.462096",
- "latitude": "51.73228",
- "address": "5/7, Smocza, Piastów-Kurak, Łódź-Górna, Łódź, Łódź Voivodeship, 93-520, Poland",
- "city_id": 7565,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/416557450ec94762af0d07643a7d79d91436958246.jpg",
- "trainings": 0
- },
- {
- "id": 3662,
- "name": "№3662 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "11.648209",
- "latitude": "44.822866",
- "address": "Area sgambamento cani, Via Valle Campazzo, Villa Fulvia, Circoscrizione 4, Ferrara, FE, Emilia-Romagna, 44121, Italy",
- "city_id": 7622,
- "country_id": 31,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/579ffab6f5d87f9462ab3b9ca9e2bc231436958250.jpg",
- "trainings": 0
- },
- {
- "id": 3663,
- "name": "№3663 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "4.004489",
- "latitude": "49.283089",
- "address": "Parc Marcel Lemaire, Allée André Messager, Reims, Marne, Champagne-Ardenne, France métropolitaine, 51100, France",
- "city_id": 7621,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/60faee99b1521b23538222c8b89612f81436958303.jpg",
- "trainings": 0
- },
- {
- "id": 3664,
- "name": "№3664 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "24.149939",
- "latitude": "56.957958",
- "address": "24, Laboratorijas iela, Grīziņkalns, Riga, Rīga, Vidzeme, LV-1009, Latvia",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/3777c51eb7f40c8d4eb08646f8121cca1436958307.jpg",
- "trainings": 0
- },
- {
- "id": 3665,
- "name": "№3665 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "15.001183",
- "latitude": "51.145147",
- "address": "Parkowa, Ujazd, Zgorzelec Ujazd, Zgorzelec, powiat zgorzelecki, Lower Silesian Voivodeship, Poland",
- "city_id": 7619,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/83b1e17bea336379bce391d1cbaa41a51436958310.jpg",
- "trainings": 0
- },
- {
- "id": 3666,
- "name": "№3666 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "18.6808",
- "latitude": "50.667121",
- "address": "3, Grunwaldzka, Wesoła, Steblów, Lubliniec, powiat lubliniecki, Silesian Voivodeship, Poland",
- "city_id": 7618,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/22075adbb5a65184ab6a551e2adfe55c1436958362.jpg",
- "trainings": 0
- },
- {
- "id": 3667,
- "name": "№3667 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "19.999281",
- "latitude": "50.159735",
- "address": "Długa, Masłomiąca, gmina Michałowice, powiat krakowski, Lesser Poland Voivodeship, Poland",
- "city_id": 7617,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3deaa5efa00dd5cca4a462ab9dc993761436958367.jpg",
- "trainings": 0
- },
- {
- "id": 3668,
- "name": "№3668 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "18.13011",
- "latitude": "50.427869",
- "address": "r, Zdzieszowice-Osiedle, Zdzieszowice, gmina Zdzieszowice, powiat krapkowicki, Opole Voivodeship, Poland",
- "city_id": 7616,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/afcf635057556ac3facf7af0f9a27eeb1436958371.jpg",
- "trainings": 0
- },
- {
- "id": 3669,
- "name": "№3669 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "21.408789",
- "latitude": "50.054001",
- "address": "18, Bartosza Głowackiego, Piaski, Dębica, powiat dębicki, Subcarpathian Voivodeship, 39-200, Poland",
- "city_id": 7615,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/47ce0c85a5a88f5a3978aa383ae1f6c11436958422.jpg",
- "trainings": 0
- },
- {
- "id": 3670,
- "name": "№3670 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "21.98027",
- "latitude": "50.039085",
- "address": "Stanisława Witkacego, Osiedle Kmity, Staroniwa, Rzeszów, Subcarpathian Voivodeship, 35-111, Poland",
- "city_id": 7614,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7d665f01279d28a69d041bcc03e026ae1436958427.jpg",
- "trainings": 0
- },
- {
- "id": 3671,
- "name": "№3671 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "21.101267",
- "latitude": "52.228481",
- "address": "11, Generała Leopolda Okulickiego, Gocław, Praga-Południe, Warsaw, Warszawa, Masovian Voivodeship, 03-984, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c7c1bee044dc89efb9cc263c990de9701436958431.jpg",
- "trainings": 0
- },
- {
- "id": 3672,
- "name": "№3672 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "17.644647",
- "latitude": "49.032261",
- "address": "Stadion Lapač, Na Chmelnici, Uherský Brod, okres Uherské Hradiště, Zlínský kraj, Střední Morava, 68801, Czech Republic",
- "city_id": 7613,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6b07aa41854eeb416e866d2a5c6c20ce1436958482.jpg",
- "trainings": 0
- },
- {
- "id": 3673,
- "name": "№3673 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "11.560994",
- "latitude": "55.436137",
- "address": "15, Rådhusvej, Sorø, Sorø Municipality, Region Zealand, 4180, Denmark",
- "city_id": 7612,
- "country_id": 49,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/427c90959925d86f99f0fb58a7f250fb1436958487.jpg",
- "trainings": 0
- },
- {
- "id": 3674,
- "name": "№3674 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "12.58604",
- "latitude": "55.690639",
- "address": "Nyboder skole, Øster Voldgade, Frederiksstaden, Copenhagen, Copenhagen Municipality, Capital Region of Denmark, 1323, Denmark",
- "city_id": 7611,
- "country_id": 49,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f6ed6bec9bd4ad9922004661e5914b921436958492.jpg",
- "trainings": 0
- },
- {
- "id": 3675,
- "name": "№3675 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.739273",
- "latitude": "52.393123",
- "address": "26, Husarenstraße, Vahrenwald, Vahrenwald-List, Hannover, Region Hannover, Niedersachsen, 30163, Deutschland",
- "city_id": 7391,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f33d354cad7679dfa53897012573a6f61436958543.jpg",
- "trainings": 1
- },
- {
- "id": 3676,
- "name": "№3676 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "11.872682",
- "latitude": "51.526815",
- "address": "Kletterwald, Peißnitzinsel, Giebichenstein, Halle (Saale), Sachsen-Anhalt, 06108, Deutschland",
- "city_id": 7610,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/059275b48e6aa8f5a70ab292e33101b41436958547.jpg",
- "trainings": 0
- },
- {
- "id": 3677,
- "name": "№3677 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "7.08579",
- "latitude": "50.999895",
- "address": "Badstraße, Torringen, Hand, Bergisch Gladbach, Rheinisch-Bergischer Kreis, Regierungsbezirk Köln, Nordrhein-Westfalen, 51467, Deutschland",
- "city_id": 7609,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/eeb487589cf8f26682320d5d5ef7b31c1436958550.jpg",
- "trainings": 0
- },
- {
- "id": 3678,
- "name": "№3678 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "9.905839",
- "latitude": "57.063413",
- "address": "12, Gadegårdsvej, Lindholm, Hasseris, Aalborg, Aalborg Municipality, North Denmark Region, 9400, Denmark",
- "city_id": 7608,
- "country_id": 49,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9eca26389e5a3195e67aaf8871aecc541436958603.jpg",
- "trainings": 0
- },
- {
- "id": 3679,
- "name": "№3679 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "8.717262",
- "latitude": "52.105359",
- "address": "Tierpark, Stadtholzstraße, Waldfrieden, Herford, Kreis Herford, Regierungsbezirk Detmold, Nordrhein-Westfalen, 32049, Deutschland",
- "city_id": 7607,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0acab590ce607d0ccaef6f5ac319492c1436958609.jpg",
- "trainings": 0
- },
- {
- "id": 3680,
- "name": "№3680 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.533104",
- "latitude": "52.052273",
- "address": "73, Grasweg, Schildesche, Theesen, Bielefeld, Regierungsbezirk Detmold, Nordrhein-Westfalen, 33611, Deutschland",
- "city_id": 7606,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9682046a85a926284aaf267281b36d891436958614.jpg",
- "trainings": 0
- },
- {
- "id": 3681,
- "name": "№3681 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.326525",
- "latitude": "51.826294",
- "address": "Orientierungskarte, Röckinghausener Straße, Lintel, Rheda-Wiedenbrück, Kreis Gütersloh, Regierungsbezirk Detmold, Nordrhein-Westfalen, 33378, Deutschland",
- "city_id": 7605,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/cee6bb076bbbf4c0fbad6166a405ae3e1436958663.jpg",
- "trainings": 0
- },
- {
- "id": 3682,
- "name": "№3682 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "21.145327",
- "latitude": "52.234099",
- "address": "Łysakowska, Marysin Wawerski, Pocisk, Wawer, Warsaw, Warszawa, Masovian Voivodeship, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/90a0c3620cf013039671c70b8c1fdbfc1436958668.jpg",
- "trainings": 0
- },
- {
- "id": 3683,
- "name": "№3683 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "21.065356",
- "latitude": "52.183296",
- "address": "Park imienia Melchiora Szczubełka, Okrężna, Stegny Południowe, Mokotów, Warsaw, Warszawa, Masovian Voivodeship, 02-940, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/deba61f800b6a7ba53f52493b05da7061436958675.jpg",
- "trainings": 0
- },
- {
- "id": 3684,
- "name": "№3684 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "20.960951",
- "latitude": "52.203656",
- "address": "18, Usypiskowa, Szczęśliwice, Ochota, Warsaw, Warszawa, Masovian Voivodeship, 02-386, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6e75d84e8ec8cc0f98733f5d69b813a91436958723.jpg",
- "trainings": 0
- },
- {
- "id": 3685,
- "name": "№3685 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "21.056246",
- "latitude": "52.120908",
- "address": "Trufle, Łęczyca, Ursynów, Warsaw, Warszawa, Masovian Voivodeship, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/44d5bc927e49dfaccbe21630afe63be01436958731.jpg",
- "trainings": 0
- },
- {
- "id": 3686,
- "name": "№3686 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "21.008176",
- "latitude": "52.201622",
- "address": "1, Ludomira Różyckiego, Górny Mokotów, Mokotów, Warsaw, Warszawa, Masovian Voivodeship, 02-571, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6ce2c9b6a4546332069e39fe8d76c18e1436958733.jpg",
- "trainings": 0
- },
- {
- "id": 3688,
- "name": "№3688 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "20.989021",
- "latitude": "52.212243",
- "address": "Wawelska, Filtry, Ochota, Warsaw, Warszawa, Masovian Voivodeship, 02-076, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/4aeb4a15b4953498ab5e6d3f68a255541436958783.jpg",
- "trainings": 0
- },
- {
- "id": 3689,
- "name": "№3689 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "9.343056",
- "latitude": "51.342778",
- "address": "Essigberg Westblick, Rundweg 4, Ehlen, Habichtswald, Landkreis Kassel, Regierungsbezirk Kassel, Hessen, 34317, Deutschland, Europa",
- "city_id": 7604,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9dd5c14813c2e2cbccb6723750262b401436958788.jpg",
- "trainings": 0
- },
- {
- "id": 3690,
- "name": "№3690 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.814764",
- "latitude": "50.149153",
- "address": "Erich Kästner-Schule, 51, Adalbert-Stifter-Straße, Bischofsheim, Maintal, Main-Kinzig-Kreis, Regierungsbezirk Darmstadt, Hessen, 63477, Deutschland",
- "city_id": 7603,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/fa8240bb2d008ef120c794a23e5942e01436958794.jpg",
- "trainings": 0
- },
- {
- "id": 3691,
- "name": "№3691 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "14.469953",
- "latitude": "50.064053",
- "address": "463/16, Sedmidomky, Michle, Prague, okres Hlavní město Praha, Hlavní město Praha, Praha, 10100, Czech Republic",
- "city_id": 806,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0150a0f1eec1c90c662c0a6ee7d0942b1436958843.jpg",
- "trainings": 0
- },
- {
- "id": 3692,
- "name": "№3692 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.878956426511422",
- "latitude": "50.136630745057424",
- "address": "Maintaler Straße, Kesselstadt, Hanau, Main-Kinzig-Kreis, Regierungsbezirk Darmstadt, Hessen, 63454, Deutschland",
- "city_id": 7602,
- "country_id": 7,
- "comments_count": 8,
- "preview": "https://workout.su/uploads/userfiles/7c7d7d34188310ea3b09dfc3d93a7f691436958846.jpg",
- "trainings": 0
- },
- {
- "id": 3693,
- "name": "№3693 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "12.065198",
- "latitude": "49.001485",
- "address": "A 93, Margaretenau, Königswiesen Süd, Regensburg, Oberpfalz, Bayern, 93051, Deutschland",
- "city_id": 7601,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2537da3850f6bca71fe5e5e6615def6a1436958851.jpg",
- "trainings": 1
- },
- {
- "id": 3694,
- "name": "№3694 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "2.270261",
- "latitude": "48.735655",
- "address": "Voie de la Vallée de la Bièvre, Massy, Palaiseau, Essonne, Île-de-France, France métropolitaine, 91300, France",
- "city_id": 7600,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e286743645e9f519ebbd29a6daead5911436958903.jpg",
- "trainings": 0
- },
- {
- "id": 3695,
- "name": "№3695 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "6.640482",
- "latitude": "43.310184",
- "address": "Route du Muy, Sainte-Maxime, Draguignan, Var, Provence-Alpes-Côte d'Azur, France métropolitaine, 83120, France",
- "city_id": 7599,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d3e32661fcbd9ef9ce887f2479e2c2111436958909.jpg",
- "trainings": 0
- },
- {
- "id": 3696,
- "name": "№3696 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "6.230061",
- "latitude": "49.380305",
- "address": "Rue du Stade, Saint-François, Basse-Ham, Thionville-Est, Moselle, Lorraine, France métropolitaine, 57970, France",
- "city_id": 7598,
- "country_id": 24,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/14ec3d41e1f8a3402476fc2bcfc157f01436958913.jpg",
- "trainings": 0
- },
- {
- "id": 3698,
- "name": "№3698 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "20.939161",
- "latitude": "52.323826",
- "address": "Skatepark, Łącząca, Buczynek, Białołęka, Warsaw, Warszawa, Masovian Voivodeship, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2b79bb43e82204d82546ce5ec636b3641436958970.jpg",
- "trainings": 0
- },
- {
- "id": 3699,
- "name": "№3699 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "21.068818",
- "latitude": "52.155244",
- "address": "Orlik w dzielnicy Wilanów, Adama Worobczuka, Wilanów Wysoki, Wilanów, Warsaw, Warszawa, Masovian Voivodeship, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/19c0157a2d6bb970df8f11860b413dbe1436958974.jpg",
- "trainings": 0
- },
- {
- "id": 3700,
- "name": "№3700 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "20.891302",
- "latitude": "52.253929",
- "address": "Alberta Einsteina, Fort Radiowo, Bemowo, Warsaw, Warszawa, Masovian Voivodeship, 01-480, Poland",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0a44dadc3b95a32cea99e141ff69525a1436959023.jpg",
- "trainings": 0
- },
- {
- "id": 3701,
- "name": "№3701 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.79346",
- "latitude": "50.639953",
- "address": "Münstereifeler Straße, Stotzheim, Euskirchen, Kreis Euskirchen, Regierungsbezirk Köln, Nordrhein-Westfalen, 53881, Deutschland",
- "city_id": 7595,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d0a4731a640eca69b371c63859ee56981436959029.jpg",
- "trainings": 0
- },
- {
- "id": 3702,
- "name": "№3702 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "7.133028",
- "latitude": "50.530087",
- "address": "5408-766, Alte Königsfelder Straße, Bad Neuenahr, Neuenahr, Bad Neuenahr-Ahrweiler, Landkreis Ahrweiler, Rheinland-Pfalz, 53474, Deutschland",
- "city_id": 7594,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3ee155eb2ccf0d1fe5fe3dffafbfacf01436959035.jpg",
- "trainings": 0
- },
- {
- "id": 3703,
- "name": "№3703 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "13.610125",
- "latitude": "47.699563",
- "address": "Tennis, Kaltenbach, Rabennest, Bad Ischl, Gmunden, Upper Austria, 4820, Austria",
- "city_id": 7593,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/035378756bc0d1f5017828506c0396791436959083.jpg",
- "trainings": 0
- },
- {
- "id": 3704,
- "name": "№3704 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "10.847789",
- "latitude": "48.37315",
- "address": "Fitness-Parcous - 10 Übungen, Hagenmähderstraße, Stadtbergen, Landkreis Augsburg, Schwaben, Bayern, 86391, Deutschland",
- "city_id": 7592,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3ab80af5123e16ae8fc93738a7f8f3d81436959088.jpg",
- "trainings": 0
- },
- {
- "id": 3705,
- "name": "№3705 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "15.420879000000014",
- "latitude": "47.092305",
- "address": "Schwimmschulkai, Geidorf, Graz, Styria, 8045, Austria",
- "city_id": 7591,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/18dd9601fd5578f49f5dcd9b867b0fc31436959091.jpg",
- "trainings": 0
- },
- {
- "id": 3706,
- "name": "№3706 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.95742",
- "latitude": "50.03977",
- "address": "16a, Elisabeth-Selbert-Straße, Froschhausen, Seligenstadt, Landkreis Offenbach, Regierungsbezirk Darmstadt, Hessen, 63500, Deutschland",
- "city_id": 7590,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0dedb4259d191c4ce218ee08dd597d001436959143.jpg",
- "trainings": 0
- },
- {
- "id": 3707,
- "name": "№3707 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.794366",
- "latitude": "51.404129",
- "address": "Startturm, Masurenallee, Neudorf-Süd, Duisburg-Mitte, Duisburg, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 47055, Deutschland",
- "city_id": 7589,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/316203976b24cf5829146c8fa5f5afc21436959147.jpg",
- "trainings": 0
- },
- {
- "id": 3708,
- "name": "№3708 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.778908",
- "latitude": "51.516979",
- "address": "15, Seelhorststraße, Röttgersbach, Hamborn, Duisburg, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 47169, Deutschland",
- "city_id": 7588,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8ce9f15ea8772c564829ab4314e70ed41436959154.jpg",
- "trainings": 0
- },
- {
- "id": 3709,
- "name": "№3709 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "14.926907",
- "latitude": "50.414857",
- "address": "1129, Jilemnického, Mladá Boleslav, okres Mladá Boleslav, Středočeský kraj, Střední Čechy, 29301, Czech Republic",
- "city_id": 7466,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/47c8690932c4ae0a24395e4d047a54181436959203.jpg",
- "trainings": 0
- },
- {
- "id": 3710,
- "name": "№3710 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "14.493338",
- "latitude": "50.089107",
- "address": "2809/14b, Květinková, Žižkov, Prague, okres Hlavní město Praha, Hlavní město Praha, Praha, 13000, Czech Republic",
- "city_id": 806,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6524a9dd57a3db850259521176974b8d1436959206.jpg",
- "trainings": 0
- },
- {
- "id": 3711,
- "name": "№3711 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "7.6097",
- "latitude": "52.00101",
- "address": "Große Wiese, Kinderhaus-West, Kinderhaus, Münster-Nord, Münster, Regierungsbezirk Münster, Nordrhein-Westfalen, 48159, Deutschland",
- "city_id": 7587,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/98ed9bd530d7a4f507e3131d881c5a2c1436959209.jpg",
- "trainings": 0
- },
- {
- "id": 3712,
- "name": "№3712 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "7.598135",
- "latitude": "51.952673",
- "address": "Sentruper Straße, Sentruper Höhe, Münster-West, Münster, Regierungsbezirk Münster, Nordrhein-Westfalen, 48149, Deutschland",
- "city_id": 7587,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8cd0b1f4e3d290aa195791ced9f0866d1436959263.jpg",
- "trainings": 0
- },
- {
- "id": 3713,
- "name": "№3713 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.006584",
- "latitude": "50.865616",
- "address": "De Tovercirkel, Jerichostraat, De Erk, Heerlen, Parkstad Limburg, Province of Limburg, Netherlands, 6418EX, The Netherlands",
- "city_id": 7586,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/68bbdc2e6d871fa3adb5e7aaaee322711436959268.jpg",
- "trainings": 0
- },
- {
- "id": 3714,
- "name": "№3714 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "144.9618",
- "latitude": "-37.791665",
- "address": "Public Toilets, Princes Park Drive, Carlton North, Melbourne, City of Melbourne, Greater Melbourne, Victoria, 3000, Australia",
- "city_id": 7531,
- "country_id": 1,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7e814cd9d37d7673c9f164d1da105ca21436959271.jpg",
- "trainings": 0
- },
- {
- "id": 3715,
- "name": "№3715 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "5.620086",
- "latitude": "51.660418",
- "address": "1, Ereprijsstraat, Uden, North Brabant, Netherlands, 5402GA, The Netherlands",
- "city_id": 7585,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/31b4e4783f94d5c90d6eda601999d2511436959322.jpg",
- "trainings": 0
- },
- {
- "id": 3716,
- "name": "№3716 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.843906",
- "latitude": "51.91009",
- "address": "BO 942, Prozessionsweg, Weseke, Borken, Kreis Borken, Regierungsbezirk Münster, Nordrhein-Westfalen, 46325, Deutschland",
- "city_id": 7584,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8cec137688f4d72a705b74b708c5b9331436959326.jpg",
- "trainings": 0
- },
- {
- "id": 3717,
- "name": "№3717 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "16.307742",
- "latitude": "48.215703",
- "address": "Musilpark, Musilplatz, Wohnpark Sandleiten, Ottakring, Vienna, 1160, Austria",
- "city_id": 7542,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/22efa2bd13cb5fa7196d9c0d29ea41951436959334.jpg",
- "trainings": 0
- },
- {
- "id": 3718,
- "name": "№3718 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.273336",
- "latitude": "50.297467",
- "address": "Wassertretstelle, Badehausweg, Würges, Bad Camberg, Landkreis Limburg-Weilburg, Regierungsbezirk Gießen, Hessen, 65520, Deutschland",
- "city_id": 7583,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/83a7f72fc826d4323a79679fc169caea1436959382.jpg",
- "trainings": 0
- },
- {
- "id": 3719,
- "name": "№3719 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "12.357173",
- "latitude": "51.331617",
- "address": "Minigolfanlage AOK, Anton-Bruckner-Allee, Schleußig, Südwest, Leipzig, Sachsen, 04229, Deutschland",
- "city_id": 7506,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1d4ca980d996313d0bbcc07be44133c91436959387.jpg",
- "trainings": 0
- },
- {
- "id": 3720,
- "name": "№3720 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.935719",
- "latitude": "51.462191",
- "address": "111, Frintroper Straße, Borbeck-Mitte, Borbeck, Essen, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 45359, Deutschland",
- "city_id": 7582,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e4512914f67995086367ad78ae7d74d91436959392.jpg",
- "trainings": 0
- },
- {
- "id": 3721,
- "name": "№3721 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-0.10711",
- "latitude": "51.483118",
- "address": "Kennington Park Cafe, St. Agnes Place, Kennington, London Borough of Lambeth, London, Greater London, England, SE11 4AS, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/43e90742a495bb6efdcbd7ff68741ff41436959443.jpg",
- "trainings": 0
- },
- {
- "id": 3722,
- "name": "№3722 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "-0.160672",
- "latitude": "51.536337",
- "address": "Snowdon Aviary, Regent's Canal Towpath, City of Westminster, London, Greater London, England, NW1 4RY, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/94882b99a8070444f8ff9771b1c864081436959448.jpg",
- "trainings": 2
- },
- {
- "id": 3723,
- "name": "№3723 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.05287",
- "latitude": "49.97339",
- "address": "Sebastian Münster Gymnasium, Hans-Fluck-Straße, Auf dem Gänsberg, Nieder-Ingelheim, Ingelheim am Rhein, Landkreis Mainz-Bingen, Rheinland-Pfalz, 55218, Deutschland",
- "city_id": 7581,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a0d0f51186390ee70d894b4d99bb86651436959453.jpg",
- "trainings": 0
- },
- {
- "id": 3724,
- "name": "№3724 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.44159",
- "latitude": "49.03442",
- "address": "2, Neisser Straße, Waldstadt, Karlsruhe, Regierungsbezirk Karlsruhe, Baden-Württemberg, 76139, Deutschland",
- "city_id": 7515,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/15436f9350dcd9ec657bdae93e3e80b41436959503.jpg",
- "trainings": 0
- },
- {
- "id": 3725,
- "name": "№3725 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.36506",
- "latitude": "48.980441",
- "address": "Kapellenweg, Oberreut, Karlsruhe, Regierungsbezirk Karlsruhe, Baden-Württemberg, 76189, Deutschland",
- "city_id": 7515,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1fb3d978d9fcc6aa231b1faed6b8a5311436959506.jpg",
- "trainings": 0
- },
- {
- "id": 3726,
- "name": "№3726 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.592498",
- "latitude": "50.624147",
- "address": "Atletický areál, U stadionu, Meziboří u Litvínova, Meziboří, okres Most, Ústecký kraj, Severozápad, 43513, Czech Republic",
- "city_id": 7580,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/531b418555048fdb92cae0e9430335461436959509.jpg",
- "trainings": 0
- },
- {
- "id": 3727,
- "name": "№3727 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "14.908608",
- "latitude": "50.4293",
- "address": "1262, Nový park, Mladá Boleslav, okres Mladá Boleslav, Středočeský kraj, Střední Čechy, 29301, Czech Republic",
- "city_id": 7466,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/94feb161283c95c8f6765507372e754a1436959563.jpg",
- "trainings": 0
- },
- {
- "id": 3728,
- "name": "№3728 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "14.912865",
- "latitude": "50.41562",
- "address": "Dům dětí a mládeže Na Výstavišti - pavilon, Purkyňova, Mladá Boleslav, okres Mladá Boleslav, Středočeský kraj, Střední Čechy, 29360, Czech Republic",
- "city_id": 7466,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3a9a55d0edd4d9c1db163d595d0a3d401436959566.jpg",
- "trainings": 0
- },
- {
- "id": 3729,
- "name": "№3729 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "17.129621",
- "latitude": "49.774393",
- "address": "2970, Brníčko, Uničov, okres Olomouc, Olomouc Region, Střední Morava, 78391, Czech Republic",
- "city_id": 7578,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/02e7342225091cb35137055c5b23698a1436959569.jpg",
- "trainings": 0
- },
- {
- "id": 3730,
- "name": "№3730 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.4631",
- "latitude": "51.34156",
- "address": "Bolzwiese am Wäldchen, Kiefernweg, Jungfernkopf, Kassel, Regierungsbezirk Kassel, Hessen, 34128, Deutschland, Europa",
- "city_id": 7577,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/be619fef07d20a8d0221613fc9e94c781436959623.jpg",
- "trainings": 0
- },
- {
- "id": 3731,
- "name": "№3731 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "151.274054",
- "latitude": "-33.898908",
- "address": "Marks Lane, Tamarama, Sydney, New South Wales, 2026, Australia",
- "city_id": 698,
- "country_id": 1,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/71e0de9146ae30f665615b37fdb739351436959626.jpg",
- "trainings": 0
- },
- {
- "id": 3732,
- "name": "№3732 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "18.327497",
- "latitude": "49.125202",
- "address": "Marczibányiho záhrada, Námestie Slobody, Púchov, Region of Trenčín, Western Slovakia, 020 01, Slovakia",
- "city_id": 7576,
- "country_id": 43,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f59d8c13dcbfb9c444b44a623368500a1436959631.jpg",
- "trainings": 0
- },
- {
- "id": 3746,
- "name": "№3746 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "17.147079",
- "latitude": "48.170164",
- "address": "Tomášikova, Pasienky, Nové Mesto, Bratislava, Region of Bratislava, 83104, Slovakia",
- "city_id": 7459,
- "country_id": 43,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e85042b162ba954293d1030e9e599a2c1436960267.jpg",
- "trainings": 0
- },
- {
- "id": 3747,
- "name": "№3747 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "16.925592",
- "latitude": "49.776552",
- "address": "1175/3, Nová, Mohelnice, okres Šumperk, Olomouc Region, Střední Morava, 78985, Czech Republic",
- "city_id": 7575,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/676a8009fb73ab9e77b6e7e12fd2ad851436960274.jpg",
- "trainings": 0
- },
- {
- "id": 3748,
- "name": "№3748 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "15.798949",
- "latitude": "49.94403",
- "address": "466, Svatopluka Čecha, Kateřinské Předměstí, Chrudim, okres Chrudim, Pardubický kraj, Severovýchod, 53701, Czech Republic",
- "city_id": 7574,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f07f955f8ab221099edab52740db421a1436960283.jpg",
- "trainings": 0
- },
- {
- "id": 3750,
- "name": "№3750 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "14.513777",
- "latitude": "50.131563",
- "address": "Dobratická, Letňany, Prague, okres Hlavní město Praha, Hlavní město Praha, Praha, 19900, Czech Republic",
- "city_id": 806,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/84f09a6f5a6ff8369ed789ef2ae06c711436960291.jpg",
- "trainings": 0
- },
- {
- "id": 3751,
- "name": "№3751 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "17.144712",
- "latitude": "48.169859",
- "address": "Tomášikova, Pasienky, Nové Mesto, Bratislava, Region of Bratislava, 83104, Slovakia",
- "city_id": 7459,
- "country_id": 43,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/e85042b162ba954293d1030e9e599a2c1436960292.jpg",
- "trainings": 0
- },
- {
- "id": 3752,
- "name": "№3752 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "17.115559",
- "latitude": "48.141131",
- "address": "Faculty of Physical Education and Sports, 9, Nábrežie arm.gen.L.Svobodu, Rezidencia Machnáč, Staré Mesto, Bratislava - mestská časť Staré Mesto, District of Bratislava I, Bratislava, Region of Bratislava, 811 02, Slovaki",
- "city_id": 7459,
- "country_id": 43,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/859cd67265b2575c6778b36243f663641436960296.jpg",
- "trainings": 0
- },
- {
- "id": 3753,
- "name": "№3753 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.53655",
- "latitude": "51.38848",
- "address": "Johann-Junkers-Gedenkstein, Rennstieg, Hülser Berg, Krefeld, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 47802, Deutschland",
- "city_id": 7572,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4c603f7f48463e47ffac21cdb080387d1436960343.jpg",
- "trainings": 0
- },
- {
- "id": 3754,
- "name": "№3754 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.88549",
- "latitude": "51.4373",
- "address": "40, Engelbertusstraße, Mellinghofen, Altstadt II, Rechtsruhr-Süd, Mülheim, Mülheim an der Ruhr, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 45473, Deutschland",
- "city_id": 7571,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/54d960d47709c54ccb77bb1afe8cf8951436960346.jpg",
- "trainings": 0
- },
- {
- "id": 3755,
- "name": "№3755 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "151.280497",
- "latitude": "-33.88993",
- "address": "North Bondi Outdoor Gym, Eastern Beaches Coastal Walk, Bondi Beach, Sydney, New South Wales, 2026, Australia",
- "city_id": 698,
- "country_id": 1,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/d37189f1668889e11a7349ce770f2bb51436960353.jpg",
- "trainings": 0
- },
- {
- "id": 3756,
- "name": "№3756 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "139.812283",
- "latitude": "35.648483",
- "address": "遊具広場, 319, Canal court, お台場, Tokyo, Koto, Tokyo, Kanto, 1040052, Japan",
- "city_id": 7570,
- "country_id": 46,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/dbc62d25224c5aa5b3f41d2360ee68191436960403.jpg",
- "trainings": 0
- },
- {
- "id": 3757,
- "name": "№3757 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "6.284751",
- "latitude": "51.215046",
- "address": "26, Sechs Linden, Schwalmtal, Kreis Viersen, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 41366, Deutschland",
- "city_id": 7569,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/358e2da1c17e0eae8ee53273f1f736ae1436960411.jpg",
- "trainings": 0
- },
- {
- "id": 3758,
- "name": "№3758 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "151.232572",
- "latitude": "-33.875756",
- "address": "Rushcutters Bay Park, New Beach Road, Darling Point, Sydney, New South Wales, 2027, Australia",
- "city_id": 698,
- "country_id": 1,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/b9ba46b41525589f9bdda0a5f13c2e161436960415.jpg",
- "trainings": 0
- },
- {
- "id": 3759,
- "name": "№3759 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "16.416896",
- "latitude": "48.222841",
- "address": "36A, Kaisermühlenbrücke, Kaisermühlen, Donaustadt, Vienna, 1220, Austria",
- "city_id": 7542,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/66df18bd860475b4f651c8b150cf56141436960462.jpg",
- "trainings": 0
- },
- {
- "id": 3760,
- "name": "№3760 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "135.578246",
- "latitude": "34.630043",
- "address": "府道2号線, Yao, Minamikawachi District, Osaka Prefecture, Kinki Region, 5770816, Japan",
- "city_id": 7568,
- "country_id": 46,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/fd28d9641a91d16ac05f827c85e3b39c1436960465.jpg",
- "trainings": 0
- },
- {
- "id": 3761,
- "name": "№3761 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.204267",
- "latitude": "48.500124",
- "address": "Jugendhaus Bastille, 21, Rommelsbacher Straße, Sondelfingen, Reutlingen, Landkreis Reutlingen, Regierungsbezirk Tübingen, Baden-Württemberg, 72760, Deutschland",
- "city_id": 7567,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1528d13ad5157974eba331959a8ee4351436960472.jpg",
- "trainings": 0
- },
- {
- "id": 3762,
- "name": "№3762 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "9.185775",
- "latitude": "48.577021",
- "address": "Spielplatz Gniebel, Schulweg, Pliezhausen, Gemeindeverwaltungsverband Pliezhausen, Landkreis Reutlingen, Regierungsbezirk Tübingen, Baden-Württemberg, 72124, Deutschland",
- "city_id": 7566,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/286e8ef51ce29cc6bdec960da976d29e1436960523.jpg",
- "trainings": 0
- },
- {
- "id": 3763,
- "name": "№3763 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "19.49306",
- "latitude": "51.758301",
- "address": "Parkowa siłownia, Zbiorcza, Stary Widzew, Łódź-Widzew, Łódź, Łódź Voivodeship, 92-328, Poland",
- "city_id": 7565,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/576142f5575be431d759fef2226f34e71436960527.jpg",
- "trainings": 0
- },
- {
- "id": 3764,
- "name": "№3764 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "19.382626",
- "latitude": "51.794668",
- "address": "6, Lniana, Teofilów-Wielkopolska, Łódź-Bałuty, Łódź, Łódź Voivodeship, 91-213, Poland",
- "city_id": 7565,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4dc1f03483c7f09f64eb859bf07457731436960532.jpg",
- "trainings": 0
- },
- {
- "id": 3765,
- "name": "№3765 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "14.442682742810575",
- "latitude": "50.07997311160766",
- "address": "Riegrovy sady (RVL13)",
- "city_id": 806,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9c3b70992e1bb92908983fcc48733edc1436960582.jpg",
- "trainings": 0
- },
- {
- "id": 3766,
- "name": "№3766 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "14.427149999999983",
- "latitude": "50.011689",
- "address": "Daškova, Modřany, Prague, okres Hlavní město Praha, Hlavní město Praha, Praha, 14300, Czech Republic",
- "city_id": 806,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/bbdc14dbc67bee900ed4960f854df6d31436960592.jpg",
- "trainings": 2
- },
- {
- "id": 3767,
- "name": "№3767 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "14.462138",
- "latitude": "50.136998",
- "address": "Jelínkova, Kobylisy, Prague, okres Hlavní město Praha, Hlavní město Praha, Praha, 18200, Czech Republic",
- "city_id": 806,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0899fc07b7c77758a67ac8096c4dce6e1436960642.jpg",
- "trainings": 0
- },
- {
- "id": 3768,
- "name": "№3768 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "19.459206",
- "latitude": "51.725001",
- "address": "Siłownia na świeżym powietrzu, Karpacka, Piastów-Kurak, Łódź-Górna, Łódź, Łódź Voivodeship, 93-509, Poland",
- "city_id": 7565,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/975f15c6d3170e6eb91631172e1d31a41436960647.jpg",
- "trainings": 0
- },
- {
- "id": 3769,
- "name": "№3769 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "19.227288",
- "latitude": "54.339127",
- "address": "21, Piaskowa, Kąty Rybackie, gmina Sztutowo, powiat nowodworski, Pomeranian Voivodeship, 82-110, Poland",
- "city_id": 7564,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3ddefbb5b58648acca8f0493a171db441436960651.jpg",
- "trainings": 0
- },
- {
- "id": 3771,
- "name": "№3771 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "14.558551",
- "latitude": "50.047147",
- "address": "305, Boloňská, Horní Měcholupy, Prague, okres Hlavní město Praha, Hlavní město Praha, Praha, 10900, Czech Republic",
- "city_id": 806,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/faffd255e9cffdedf790a77ae639cca81436960708.jpg",
- "trainings": 0
- },
- {
- "id": 3772,
- "name": "№3772 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "12.41779",
- "latitude": "54.343281",
- "address": "2, Alfred-Partikel-Weg, Althagen, Ahrenshoop, Darß/Fischland, Landkreis Vorpommern-Rügen, Mecklenburg-Vorpommern, 18347, Deutschland",
- "city_id": 7563,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ec1e112d9382feb931777d2de285cda51436960763.jpg",
- "trainings": 0
- },
- {
- "id": 3773,
- "name": "№3773 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.03259",
- "latitude": "54.30881",
- "address": "Lindenallee, Grünthal-Viermorgen, Stadtgebiet Grünhufe, Stralsund, Landkreis Vorpommern-Rügen, Mecklenburg-Vorpommern, 18437, Deutschland",
- "city_id": 7562,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/bf286034e72760c0915036238480741c1436960769.jpg",
- "trainings": 0
- },
- {
- "id": 3774,
- "name": "№3774 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "18.595729",
- "latitude": "54.325027",
- "address": "Kaliska, Pieklisko, Łostowice, Ujeścisko - Łostowice, Gdańsk, Pomeranian Voivodeship, Poland",
- "city_id": 7561,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/55c524618f5b6286cddf26b8ccfd6e9b1436960773.jpg",
- "trainings": 0
- },
- {
- "id": 3775,
- "name": "№3775 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "23.142094",
- "latitude": "53.113788",
- "address": "11H, Pogodna, Słoboda, Osiedle Sienkiewicza, Białystok, Podlaskie Voivodeship, 15-364, Poland",
- "city_id": 7560,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2db905232a595f4b5c60399873aaa9051436960823.jpg",
- "trainings": 0
- },
- {
- "id": 3776,
- "name": "№3776 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "23.145314",
- "latitude": "53.11276",
- "address": "6, Kręta, Słoboda, Kawaleryjskie, Białystok, Podlaskie Voivodeship, 15-345, Poland",
- "city_id": 7560,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4b3b02434e9f6d0beda6a369c103f7611436960827.jpg",
- "trainings": 0
- },
- {
- "id": 3777,
- "name": "№3777 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "10.239328",
- "latitude": "53.519203",
- "address": "Kolk, Am Kolk, Schönningstedt, Reinbek, Kreis Stormarn, Schleswig-Holstein, 21465, Deutschland",
- "city_id": 7559,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3eae51f83900a7ec15e039f66518d6681436960831.jpg",
- "trainings": 0
- },
- {
- "id": 3778,
- "name": "№3778 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "12.41743",
- "latitude": "51.35322",
- "address": "26, Volksgartenstraße, Schönefeld, Schönefeld-Ost, Nordost, Leipzig, Sachsen, 04347, Deutschland",
- "city_id": 7506,
- "country_id": 7,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/b1cac56cdf6d8c43dd1522b1f23fb21a1436960883.jpg",
- "trainings": 2
- },
- {
- "id": 3779,
- "name": "№3779 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "21.027685",
- "latitude": "52.094951",
- "address": "Filia Szkoły Podstawowej Nr 5, 14, Nefrytowa, Zalesie Dolne, Piaseczno, gmina Piaseczno, powiat piaseczyński, Masovian Voivodeship, 05-500, Poland",
- "city_id": 7558,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/73b425e918c650df9b1b306d5378a0c71436960887.jpg",
- "trainings": 0
- },
- {
- "id": 3780,
- "name": "№3780 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "18.402831",
- "latitude": "47.575341",
- "address": "Kodály Zoltán Általános Iskola és AMI Telephelye, Herman Ottó Általános Iskola, 44/A, Köztársaság útja, Sárberki lakótelep, Tatabánya, Tatabányai",
- "city_id": 7557,
- "country_id": 48,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f61b49f06314f10c5083a2451a3b1a461436960892.jpg",
- "trainings": 0
- },
- {
- "id": 3781,
- "name": "№3781 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "19.060727",
- "latitude": "47.477905",
- "address": "Goldmann György tér, Lágymányos, 11. kerület, Budapest, Budapesti kistérség, Budapest, Central Hungary, Közép-Magyarország, 1093, Hungary",
- "city_id": 7556,
- "country_id": 48,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/036aa8f98002e8e43d246c357bfdd1d51436960943.jpg",
- "trainings": 1
- },
- {
- "id": 3782,
- "name": "№3782 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "16.260612",
- "latitude": "47.83073",
- "address": "Anton Wodica Park, Pottendorfer Straße, Musikantenviertel (Gartenstadt), Wiener Neustadt (Stadt), Lower Austria, 2493, Austria",
- "city_id": 7459,
- "country_id": 43,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b34e6b9ebbb5cd0cc86bd7cc2a75f7581436960948.jpg",
- "trainings": 0
- },
- {
- "id": 3783,
- "name": "№3783 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.233955",
- "latitude": "48.800775",
- "address": "Gottlieb-Daimler-Gymnasium, 8, Kattowitzer Straße, Winterhalde, Sommerrain, Bad Cannstatt, Stuttgart, Regierungsbezirk Stuttgart, Baden-Württemberg, 70374, Deutschland",
- "city_id": 7555,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7dc36dd48844b59b86fa03bfb84cef811436961003.jpg",
- "trainings": 0
- },
- {
- "id": 3784,
- "name": "№3784 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "13.788171",
- "latitude": "45.03947",
- "address": "Domenico Cenecca, Bale, Općina Bale, Istria, 52211, Croatia",
- "city_id": 7554,
- "country_id": 26,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7dc715033a33d80cbc0dfbc127d21cab1436961008.jpg",
- "trainings": 0
- },
- {
- "id": 3785,
- "name": "№3785 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.60994",
- "latitude": "52.29006",
- "address": "Weg am Nottekanal, Zeesen, Königs Wusterhausen, Landkreis Dahme-Spreewald, Brandenburg, 15711, Deutschland",
- "city_id": 7553,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/175740d0f1dc6a152517cd46129184f41436961012.jpg",
- "trainings": 0
- },
- {
- "id": 3786,
- "name": "№3786 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "5.974295",
- "latitude": "51.516154",
- "address": "Kantine SVVenray, 6, Sportlaan, Venray, Province of Limburg, Netherlands, 5801AH, The Netherlands",
- "city_id": 7552,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0c6f685f9bfaacb42cd739736c422c721436961062.jpg",
- "trainings": 0
- },
- {
- "id": 3787,
- "name": "№3787 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "4.664035",
- "latitude": "52.131741",
- "address": "57, Het Achterom, Alphen aan den Rijn, South Holland, Netherlands, 2406CH, The Netherlands",
- "city_id": 7551,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/02dbc0fc7f56c4351bcd3830f70f72611436961065.jpg",
- "trainings": 0
- },
- {
- "id": 3788,
- "name": "№3788 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "14.89701",
- "latitude": "51.29702",
- "address": "Spatzennest, Rothenburger Straße, Biehain, Horka, Weißer Schöps/Neiße, Landkreis Görlitz, Sachsen, 02923, Deutschland",
- "city_id": 7550,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f6740b1670443a909f5b5aea6039e90c1436961068.jpg",
- "trainings": 0
- },
- {
- "id": 3789,
- "name": "№3789 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "7.720929",
- "latitude": "47.981504",
- "address": "Freiburger Landstraße, Tiengen, Freiburg im Breisgau, Regierungsbezirk Freiburg, Baden-Württemberg, 79112, Deutschland",
- "city_id": 7549,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/63b94c5f9cae4347874a26951bd58ac61436961123.jpg",
- "trainings": 0
- },
- {
- "id": 3790,
- "name": "№3790 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.21214",
- "latitude": "51.242375",
- "address": "St. Peter, Born, Brüggen, Kreis Viersen, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 41379, Deutschland",
- "city_id": 7548,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/99983c0654b1a0cc561fcc761faac65d1436961126.jpg",
- "trainings": 0
- },
- {
- "id": 3791,
- "name": "№3791 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.016054",
- "latitude": "50.370637",
- "address": "Christianweg, Diez, Rhein-Lahn-Kreis, Rheinland-Pfalz, 65582, Deutschland",
- "city_id": 7547,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c75e0419c422b059355e64770c756f641436961132.jpg",
- "trainings": 0
- },
- {
- "id": 3792,
- "name": "№3792 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "12.094605",
- "latitude": "54.081016",
- "address": "Barnstorfer Anlagen, Tiergartenallee, Gartenstadt, Gartenstadt-Stadtweide, Ortsamt West, Rostock, Mecklenburg-Vorpommern, 18059, Deutschland",
- "city_id": 7528,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/82e00289c7c756c8621afb7f8e8b69051436961183.jpg",
- "trainings": 0
- },
- {
- "id": 3793,
- "name": "№3793 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.735067",
- "latitude": "47.502215",
- "address": "Skater Platz / Halfpipe, Mehrerauer Straße, Bregenz, Vorarlberg, 6900, Austria",
- "city_id": 7546,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1a9c5a13660b19f06826b69253a68aba1436961186.jpg",
- "trainings": 0
- },
- {
- "id": 3794,
- "name": "№3794 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.657547",
- "latitude": "47.48626",
- "address": "Müß, Fußach, Bregenz, Vorarlberg, 6972, Austria",
- "city_id": 7545,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/06f728fe06ffee6a4cc3111b400f420e1436961189.jpg",
- "trainings": 0
- },
- {
- "id": 3795,
- "name": "№3795 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.734994",
- "latitude": "47.484448",
- "address": "Achspieli Lauterach, Achweg, Lauterach, Bregenz, Vorarlberg, 6923, Austria",
- "city_id": 7544,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/45fa3853eeb7eaaf475c523227885a011436961243.jpg",
- "trainings": 0
- },
- {
- "id": 3796,
- "name": "№3796 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.749527",
- "latitude": "47.525839",
- "address": "Lindauer Straße, Am Stein, Lochau, Bregenz, Vorarlberg, 6911, Austria",
- "city_id": 7543,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/652a25aa3b219fe5b79f55ae8b6cc9501436961246.jpg",
- "trainings": 0
- },
- {
- "id": 3797,
- "name": "№3797 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "16.366851",
- "latitude": "48.224423",
- "address": "33, Roßauer Lände, Roßau, Alsergrund, Vienna, 1090, Austria",
- "city_id": 7542,
- "country_id": 47,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6d83c2e561aaf5f1a1990e672691908f1436961249.jpg",
- "trainings": 0
- },
- {
- "id": 3798,
- "name": "№3798 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "14.678582",
- "latitude": "49.394322",
- "address": "Na Bydžově, Na kopečku, Tábor, okres Tábor, Jihočeský kraj, Jihozápad, 39002, Czech Republic",
- "city_id": 7541,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9de6554bb769549d8c5013c5e4f675ee1436961303.jpg",
- "trainings": 0
- },
- {
- "id": 3799,
- "name": "№3799 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "14.434271",
- "latitude": "49.052254",
- "address": "Hamry, Hluboká nad Vltavou, okres České Budějovice, Jihočeský kraj, Jihozápad, 37341, Czech Republic",
- "city_id": 7540,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5445c7c00417808287551bdd66065bcd1436961311.jpg",
- "trainings": 0
- },
- {
- "id": 3800,
- "name": "№3800 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "14.724941",
- "latitude": "49.260204",
- "address": "435/19, Na Ohradě, Soběslav, okres Tábor, Jihočeský kraj, Jihozápad, 39201, Czech Republic",
- "city_id": 7539,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e443f70d34d567dfe8268a63547c87691436961316.jpg",
- "trainings": 0
- },
- {
- "id": 3801,
- "name": "№3801 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "14.69625",
- "latitude": "49.186194",
- "address": "617, Podhájek, Veselí nad Lužnicí, okres Tábor, Jihočeský kraj, Jihozápad, 39181, Czech Republic",
- "city_id": 7538,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ba18095cde10ea9f2094aff6f4b741c71436961362.jpg",
- "trainings": 0
- },
- {
- "id": 3802,
- "name": "№3802 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "14.29878",
- "latitude": "48.801275",
- "address": "Luční, Český Krumlov, okres Český Krumlov, Jihočeský kraj, Jihozápad, 38101, Czech Republic",
- "city_id": 7537,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a7e788c6bbe9564ec7d5f724cd943be11436961369.jpg",
- "trainings": 0
- },
- {
- "id": 3803,
- "name": "№3803 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "13.750343",
- "latitude": "51.030298",
- "address": "USZ Dresden, 18a, August-Bebel-Straße, Strehlen, Prohlis, Dresden, Sachsen, 01219, Deutschland",
- "city_id": 7536,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/35865e404b46045ac34b59025b4204cb1436961374.jpg",
- "trainings": 0
- },
- {
- "id": 3804,
- "name": "№3804 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "5.466982",
- "latitude": "51.456696",
- "address": "44, Frankrijkstraat, Kronehoef, Eindhoven, MRE, Samenwerkingsverband Regio Eindhoven, North Brabant, Netherlands, 5622AG, The Netherlands",
- "city_id": 7535,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/856510985222b69233fe7e51ad3f3aa11436961423.jpg",
- "trainings": 0
- },
- {
- "id": 3805,
- "name": "№3805 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "6.34578",
- "latitude": "51.2492",
- "address": "Sporthalle PRIMUS-Schule, Schulhof PRIMUS-Schule, Dülken, Viersen, Kreis Viersen, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 41751, Deutschland",
- "city_id": 7534,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/aa439a02cb8e62a9ab6d985be23cfbc81436961426.jpg",
- "trainings": 0
- },
- {
- "id": 3806,
- "name": "№3806 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "6.349089999999933",
- "latitude": "51.25306",
- "address": "Weiterbildungskolleg des Kreises Viersen Abendgymnasium -Zentrales Schulbüro-, Schulhof Berufskolleg Viersen, Dülken, Viersen, Kreis Viersen, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 41751, Deutschland",
- "city_id": 7534,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a02a6ec82aeab7f2a2bd56bca478f1ab1436961434.jpg",
- "trainings": 0
- },
- {
- "id": 3807,
- "name": "№3807 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "6.794507",
- "latitude": "51.23315",
- "address": "Berty-Albrecht-Park, Schinkelstraße, Pempelfort, Stadtbezirk 1, Düsseldorf, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 40211, Deutschland",
- "city_id": 7468,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/05207895dbd3e4fcfa4460269320bb951436961482.jpg",
- "trainings": 0
- },
- {
- "id": 3808,
- "name": "№3808 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-73.911732",
- "latitude": "40.810988",
- "address": "Saint Anns Avenue, Mott Haven, Bronx County, New York City, New York, 10456, United States of America",
- "city_id": 655,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9ccc407490aec9b9bcb737cf4daafd611436961486.jpg",
- "trainings": 0
- },
- {
- "id": 3809,
- "name": "№3809 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "11.348122",
- "latitude": "46.505984",
- "address": "Via Cadorna - Cadornastraße, S. Quirino - Quirein, Bolzano, South Tyrol, Trentino-Alto Adige/Südtirol, 39100, Italy",
- "city_id": 7533,
- "country_id": 31,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4a928219656662d26e59641116ada0731436961489.jpg",
- "trainings": 0
- },
- {
- "id": 3810,
- "name": "№3810 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-0.039654",
- "latitude": "51.534884",
- "address": "Athletics Track, Hawthorn Avenue, Bow, London Borough of Tower Hamlets, London, Greater London, England, E3 5JP, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b53de7007430871580c40e15831306f41436961542.jpg",
- "trainings": 1
- },
- {
- "id": 3811,
- "name": "№3811 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-0.236598",
- "latitude": "51.519944",
- "address": "Woodmans Mews, Shepherd's Bush, London Borough of Hammersmith and Fulham, London, Greater London, England, W12 0HR, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5e7908bd01fa884d10d0b323f82335d61436961548.jpg",
- "trainings": 0
- },
- {
- "id": 3812,
- "name": "№3812 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "-0.060151",
- "latitude": "51.540922",
- "address": "London Fields East Side, Hackney, London Borough of Hackney, London, Greater London, England, E8 4RA, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/fa71653361e64e1e906c76fdc43e43f11436961553.jpg",
- "trainings": 0
- },
- {
- "id": 3813,
- "name": "№3813 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "139.801217",
- "latitude": "35.713951",
- "address": "隅田公園, Edo-dori, 神田, Tokyo, Taito, Tokyo, Kanto, 111-0051, Japan",
- "city_id": 7532,
- "country_id": 46,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0f8e0c4ea1e8dec8debbd8194092dd611436961603.jpg",
- "trainings": 0
- },
- {
- "id": 3814,
- "name": "№3814 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "139.756163",
- "latitude": "35.673824",
- "address": "Hibiya-Koen, Japan",
- "city_id": 7532,
- "country_id": 46,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/97963c02d8a8ccd9f7937407c0a052fb1436961606.jpg",
- "trainings": 0
- },
- {
- "id": 3815,
- "name": "№3815 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "151.195409",
- "latitude": "-33.878323",
- "address": "Wentworth Park, Wentworth Park Road, The Block, Glebe, Sydney City, New South Wales, 2007, Australia",
- "city_id": 698,
- "country_id": 1,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/537a56dccf871d57a980d2b332d1dc241436961609.jpg",
- "trainings": 0
- },
- {
- "id": 3816,
- "name": "№3816 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "144.951375",
- "latitude": "-37.80729",
- "address": "Eades Park, King Street, West Melbourne, Melbourne, City of Melbourne, Greater Melbourne, Victoria, 3000, Australia",
- "city_id": 7531,
- "country_id": 1,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1a2c8dac5f2d8ccddd298bed08570d121436961663.jpg",
- "trainings": 0
- },
- {
- "id": 3817,
- "name": "№3817 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-0.041695",
- "latitude": "51.541428",
- "address": "Groombridge Road, Homerton, London Borough of Hackney, London, Greater London, England, E9 7LH, United Kingdom",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/b8f5b10a29c1d5e5859de2c3e46e84521436961668.jpg",
- "trainings": 0
- },
- {
- "id": 3818,
- "name": "№3818 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "8.252713",
- "latitude": "49.979722",
- "address": "Krähenweg, Bretzenheim, Mainz, Rheinland-Pfalz, 55128, Deutschland",
- "city_id": 7526,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/afbf41887646f37355f00cb39ea7b3881436961723.jpg",
- "trainings": 0
- },
- {
- "id": 3819,
- "name": "№3819 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "12.23176",
- "latitude": "51.83169",
- "address": "13, Mariannenstraße, Nord, Dessau-Roßlau, Sachsen-Anhalt, 06844, Deutschland",
- "city_id": 7530,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/fc326eee12684e7b763d2b277ee290d61436961728.jpg",
- "trainings": 0
- },
- {
- "id": 3820,
- "name": "№3820 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-16.313524",
- "latitude": "28.495718",
- "address": "Parque Pedro González González, Concepcion Salazar, La Manzanilla, San Cristóbal de La Laguna, Provincia de Santa Cruz de Tenerife, Canarias, España (mar territorial), 38201, España",
- "city_id": 7529,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/926ee6d61506bab8d722f35f3507fc501436961733.jpg",
- "trainings": 0
- },
- {
- "id": 3821,
- "name": "№3821 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "12.127758",
- "latitude": "54.071741",
- "address": "51, Erich-Schlesinger-Straße, Südstadt, Rostock, Ortsamt Mitte, Rostock, Mecklenburg-Vorpommern, 18059, Deutschland",
- "city_id": 7528,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5bb6ab7c9b7d7fae384b724f5e194b831436961783.jpg",
- "trainings": 0
- },
- {
- "id": 3822,
- "name": "№3822 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.10241",
- "latitude": "49.45579",
- "address": "Parkouranlage Klüpfel, Leitzstraße, Veilhof, Nürnberg, Mittelfranken, Bayern, 90489, Deutschland",
- "city_id": 7499,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9c82200ce354b387783982b82865e1eb1436961787.jpg",
- "trainings": 0
- },
- {
- "id": 3823,
- "name": "№3823 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "11.014421",
- "latitude": "49.580411",
- "address": "158, Nürnberger Straße, Sebaldussiedlung, Erlangen, Mittelfranken, Bayern, 91052, Deutschland",
- "city_id": 7527,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/81fb4bf2cae6a3c0c3db319a390f5b191436961791.jpg",
- "trainings": 0
- },
- {
- "id": 3824,
- "name": "№3824 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.262991",
- "latitude": "50.002902",
- "address": "Eduard Kreyssig, Kaiserstraße, Neustadt, Mainz, Rheinland-Pfalz, 55116, Deutschland",
- "city_id": 7526,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ce78f280a4d0ed61a4887b9412fa929c1436961843.jpg",
- "trainings": 0
- },
- {
- "id": 3825,
- "name": "№3825 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "13.139375",
- "latitude": "52.369371",
- "address": "Deutsche Telekom, Konrad-Wolf-Allee, Kirchsteigfeld, Drewitz, Potsdam, Brandenburg, 14480, Deutschland",
- "city_id": 7525,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4521223494bc7a6123b23fc605f5fe7a1436961846.jpg",
- "trainings": 0
- },
- {
- "id": 3826,
- "name": "№3826 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "13.09521",
- "latitude": "52.38043",
- "address": "Falkenhorst, Am Schlaatz, Potsdam, Brandenburg, 14478, Deutschland",
- "city_id": 7525,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/52fd1dbbf63ea9dd5fa8bc2889d63bd21436961849.jpg",
- "trainings": 0
- },
- {
- "id": 3827,
- "name": "№3827 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.021534",
- "latitude": "52.388736",
- "address": "Platte, Knobelsdorffstraße, Potsdam West, Potsdam, Brandenburg, 14471, Deutschland",
- "city_id": 7525,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/f1e743cf1f256bf43b557d9bd3e20f751436961903.jpg",
- "trainings": 0
- },
- {
- "id": 3828,
- "name": "№3828 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "121.535848",
- "latitude": "25.030009",
- "address": "沙坑, Section 3, Xinyi Road, 龍圓里, Da'an District, Taipei City, 10658, Republic of China",
- "city_id": 7476,
- "country_id": 34,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/34b949b7fe9d2812c34d26a6bd2a7d3e1436961908.jpg",
- "trainings": 0
- },
- {
- "id": 3829,
- "name": "№3829 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "10.15",
- "latitude": "53.483333",
- "address": "Margit-Zinke-Straße, Neuallermöhe, Bergedorf, Hamburg, 21035, Deutschland",
- "city_id": 7493,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/05ecf3ffeed0766cb9c46fd63af74bfd1436961914.jpg",
- "trainings": 0
- },
- {
- "id": 3830,
- "name": "№3830 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "7.71838",
- "latitude": "51.42164",
- "address": "Vereinsheim, Weideplatz, Iserlohn, Märkischer Kreis, Regierungsbezirk Arnsberg, Nordrhein-Westfalen, 58640, Deutschland",
- "city_id": 7513,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/960cb6f885d7d64a80adeccab6200a911436961963.jpg",
- "trainings": 0
- },
- {
- "id": 3831,
- "name": "№3831 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "6.67657",
- "latitude": "51.21765",
- "address": "15, Am Kotthauserweg, Weißenberg, Neuss, Rhein-Kreis Neuss, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 41462, Deutschland",
- "city_id": 7524,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/737d44a9b0355926987c327b9fb806e61436961968.jpg",
- "trainings": 0
- },
- {
- "id": 3832,
- "name": "№3832 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.49898",
- "latitude": "53.44484",
- "address": "Weserperle, Fährstraße, Loxstedt, Landkreis Cuxhaven, Niedersachsen, 27612, Deutschland",
- "city_id": 7523,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/59ba4b6c5b6daaf3d15232cfa0b619ac1436962023.jpg",
- "trainings": 0
- },
- {
- "id": 3833,
- "name": "№3833 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "7.23151",
- "latitude": "52.095863",
- "address": "Deutsche Telekom AG, Berliner Straße, Schöppingen, Kreis Borken, Regierungsbezirk Münster, Nordrhein-Westfalen, 48624, Deutschland",
- "city_id": 7522,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/23d8d6ff6d2c5dc60500a15d808ec7501436962029.jpg",
- "trainings": 0
- },
- {
- "id": 3834,
- "name": "№3834 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "7.337748",
- "latitude": "49.322693",
- "address": "Uhlandstraße, Erbach, Homburg, Saarpfalz-Kreis, Saarland, 66424, Deutschland",
- "city_id": 7521,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6a8cacc4364d3ce039ef9a35bd97acfc1436962033.jpg",
- "trainings": 0
- },
- {
- "id": 3835,
- "name": "№3835 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "6.992406",
- "latitude": "51.557827",
- "address": "46a, Eichendorffstraße, Butendorf, Gladbeck, Kreis Recklinghausen, Regierungsbezirk Münster, Nordrhein-Westfalen, 45968, Deutschland",
- "city_id": 7520,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/260771e8f8341604268b1ec221a317961436962083.jpg",
- "trainings": 0
- },
- {
- "id": 3836,
- "name": "№3836 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "13.238838",
- "latitude": "52.469677",
- "address": "Hüttenweg, Dahlem, Steglitz-Zehlendorf, Berlin, 14193, Deutschland",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/d53947cea1cb59d0419e742da5992dbc1436962088.jpg",
- "trainings": 0
- },
- {
- "id": 3837,
- "name": "№3837 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.596636",
- "latitude": "52.537451",
- "address": "Alt-Hellersdorf, Hellersdorf, Marzahn-Hellersdorf, Berlin, 12629, Deutschland",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/dd45b71a7447dcfff621f87024bc36461436962093.jpg",
- "trainings": 0
- },
- {
- "id": 3838,
- "name": "№3838 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.424083",
- "latitude": "52.469374",
- "address": "Wartheplatz, Schillerkiez, Neukölln, Berlin, 12051, Deutschland",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/7c7000e1e2a80e0134946e0c68b4de7d1436962143.jpg",
- "trainings": 1
- },
- {
- "id": 3839,
- "name": "№3839 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.33327",
- "latitude": "52.52569",
- "address": "6, Zwinglistraße, Moabit, Mitte, Berlin, 10555, Deutschland",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2c803a5aaa0fabd03db226aeb8c9037f1436962146.jpg",
- "trainings": 0
- },
- {
- "id": 3840,
- "name": "№3840 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.16744",
- "latitude": "52.54993",
- "address": "204A, Falkenseer Chaussee, Falkenhagener Feld, Spandau, Berlin, 13589, Deutschland",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/65db7a7ed1bfaf05a6d857385af7791b1436962151.jpg",
- "trainings": 0
- },
- {
- "id": 3841,
- "name": "№3841 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "12.05794",
- "latitude": "50.839521",
- "address": "Skaterpark, Werner-Petzold-Straße, Lusan, Gera, Thüringen, 07549, Deutschland",
- "city_id": 7519,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/df152b07066458f0fee607d140fd860c1436962203.jpg",
- "trainings": 0
- },
- {
- "id": 3842,
- "name": "№3842 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "8.707958",
- "latitude": "50.108299",
- "address": "Hafenpark, Mayfarthstraße, Ostend, Frankfurt am Main, Regierungsbezirk Darmstadt, Hessen, 60314, Deutschland",
- "city_id": 7518,
- "country_id": 7,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/e12b8327e12fa4622ed27db69a810b721436962208.jpg",
- "trainings": 0
- },
- {
- "id": 3843,
- "name": "№3843 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "5.586604",
- "latitude": "51.175549",
- "address": "Sportlaan, Bocholt, Maaseik, Limburg, Flanders, 3950, Belgium",
- "city_id": 7517,
- "country_id": 45,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3f9396a7e8180b46fa9b544236ba2bdf1436962213.jpg",
- "trainings": 0
- },
- {
- "id": 3844,
- "name": "№3844 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.771558",
- "latitude": "50.78618",
- "address": "109, Friedrich-Ebert-Straße, Richtsberg, Marburg, Landkreis Marburg-Biedenkopf, Regierungsbezirk Gießen, Hessen, 35039, Deutschland",
- "city_id": 7502,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/590644e53b922cddc7869ba1b7e49e421436962263.jpg",
- "trainings": 0
- },
- {
- "id": 3845,
- "name": "№3845 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.471568",
- "latitude": "49.466468",
- "address": "29, Pfalzplatz, Lindenhof, Mannheim, Regierungsbezirk Karlsruhe, Baden-Württemberg, 68163, Deutschland",
- "city_id": 7516,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9c0bbe9461f0ae55e9a6a4176b20b6b51436962268.jpg",
- "trainings": 1
- },
- {
- "id": 3846,
- "name": "№3846 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.42864",
- "latitude": "49.00821",
- "address": "38, Gerwigstraße, Oststadt, Karlsruhe, Regierungsbezirk Karlsruhe, Baden-Württemberg, 76131, Deutschland",
- "city_id": 7515,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7a9952c244bc34849b4949daac99cd751436962271.jpg",
- "trainings": 0
- },
- {
- "id": 3847,
- "name": "№3847 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.714443",
- "latitude": "51.724722",
- "address": "Ahörnchen-Bewegungspark, Laufstrecke Ahornpark, Elsen, Paderborn, Kreis Paderborn, Regierungsbezirk Detmold, Nordrhein-Westfalen, 33106, Deutschland",
- "city_id": 7514,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/aa5e6c4baf5b10b573b0f2c3fafd44b81436962322.jpg",
- "trainings": 0
- },
- {
- "id": 3848,
- "name": "№3848 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "7.705189",
- "latitude": "51.368332",
- "address": "Einsteinstraße, Nußberg, Iserlohn, Märkischer Kreis, Regierungsbezirk Arnsberg, Nordrhein-Westfalen, 58644, Deutschland",
- "city_id": 7513,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/787cde7024a3d0800b8a1e45065008ca1436962335.jpg",
- "trainings": 0
- },
- {
- "id": 3849,
- "name": "№3849 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "11.875782",
- "latitude": "48.214147",
- "address": "Ritterland, Ottenhofen, Waldhof, Ottenhofen, Oberneuching (VGem), Landkreis Erding, Oberbayern, Bayern, 85570, Deutschland",
- "city_id": 7512,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/11189f7a59e137d91b7f10731dca95741436962383.jpg",
- "trainings": 0
- },
- {
- "id": 3850,
- "name": "№3850 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "15.229147",
- "latitude": "44.111101",
- "address": "Gimnazija Jurja Barakovića, 3, Ulica kralja Dmitra Zvonimira, Višnjik, Voštarnica, Zadar, 23000, Croatia",
- "city_id": 7511,
- "country_id": 26,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/443c7ca6e7ac678a24b0daaac795f67e1436962387.jpg",
- "trainings": 0
- },
- {
- "id": 3851,
- "name": "№3851 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "12.325747",
- "latitude": "51.327222",
- "address": "Spelunke, Naumburger Straße, Plagwitz, Südwest, Leipzig, Sachsen, 04229, Deutschland",
- "city_id": 7506,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b3cd94ff6814e427c6a8b91aa5012b371436962390.jpg",
- "trainings": 0
- },
- {
- "id": 3852,
- "name": "№3852 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "4.680424",
- "latitude": "51.782879",
- "address": "Kinderspeelplaats, Blaauwweg, Sterrenburg, Dordrecht, South Holland, Netherlands, 3328XH, The Netherlands",
- "city_id": 7510,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/dc5c5b5024f9220e6c429f9f6ba00e3b1436962442.jpg",
- "trainings": 0
- },
- {
- "id": 3853,
- "name": "№3853 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "4.665594",
- "latitude": "51.805476",
- "address": "Charlotte van Praagpad, Dordrecht, South Holland, Netherlands, 3314LS, The Netherlands",
- "city_id": 7510,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/815acc8dea2e7ca08f58658c8411c2831436962445.jpg",
- "trainings": 0
- },
- {
- "id": 3854,
- "name": "№3854 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "4.966966",
- "latitude": "52.29996",
- "address": "Meernhof, Meerkerkdreef, Amsterdam, Zuidoost, Amsterdam Zuidoost, MRA, Stadsregio Amsterdam, North Holland, Netherlands, 1106LB, The Netherlands",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/b863a2238d5de051477285a156a204d71436962448.jpg",
- "trainings": 0
- },
- {
- "id": 3855,
- "name": "№3855 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "5.696401",
- "latitude": "50.844511",
- "address": "101, Maasboulevard, Maastricht, Province of Limburg, Netherlands, 6211JW, The Netherlands",
- "city_id": 695,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/b31bd8f856c5748386bd16174135ea1c1436962503.jpg",
- "trainings": 0
- },
- {
- "id": 3856,
- "name": "№3856 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "4.967201",
- "latitude": "52.352662",
- "address": "Buytenweg, Diemen-Noord, Diemen, MRA, Stadsregio Amsterdam, North Holland, Netherlands, 1111TB, The Netherlands",
- "city_id": 7508,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/05771e78c4e566bc4b4d76ec1226c98d1436962506.jpg",
- "trainings": 0
- },
- {
- "id": 3857,
- "name": "№3857 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "4.64685",
- "latitude": "52.301226",
- "address": "1252, IJweg, Floriande, Hoofddorp, Haarlemmermeer, MRA, Stadsregio Amsterdam, North Holland, Netherlands, 2133MJ, The Netherlands",
- "city_id": 7507,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1d8967c8b990dbc33c5908c7ab69cbd01436962509.jpg",
- "trainings": 0
- },
- {
- "id": 3858,
- "name": "№3858 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "12.35688",
- "latitude": "51.339381",
- "address": "Schrebers, 7, Aachener Straße, Bachviertel, Mitte, Leipzig, Sachsen, 04109, Deutschland",
- "city_id": 7506,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/94b67e45d2dfa3e6828166dfe48d01bd1436962622.jpg",
- "trainings": 0
- },
- {
- "id": 3859,
- "name": "№3859 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.189118",
- "latitude": "50.045989",
- "address": "3, Wupperstraße, Schierstein, Wiesbaden, Regierungsbezirk Darmstadt, Hessen, 65201, Deutschland",
- "city_id": 7504,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a9c2995508d6031029e4704ba678b55c1436962626.jpg",
- "trainings": 0
- },
- {
- "id": 3860,
- "name": "№3860 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "10.483587",
- "latitude": "43.307171",
- "address": "Via Arco, Bibbona, LI, Tuscany, 57020, Italy",
- "city_id": 7505,
- "country_id": 31,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/5f9bdef5a68777dec16940c40e9749dc1436962635.jpg",
- "trainings": 0
- },
- {
- "id": 3861,
- "name": "№3861 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.230602",
- "latitude": "50.084924",
- "address": "Riederbergschule, 26-28, Philippsbergstraße, Nordost, Wiesbaden, Regierungsbezirk Darmstadt, Hessen, 65195, Deutschland",
- "city_id": 7504,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/46a6c3340fdf8e76d8d4d865016efbcc1436962682.jpg",
- "trainings": 0
- },
- {
- "id": 3862,
- "name": "№3862 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.855159",
- "latitude": "50.082633",
- "address": "Tempelhofer Straße, Hausen, Obertshausen, Landkreis Offenbach, Regierungsbezirk Darmstadt, Hessen, 63179, Deutschland",
- "city_id": 7503,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/7a18c094de577c5ea30287dd795d34671436962687.jpg",
- "trainings": 0
- },
- {
- "id": 3863,
- "name": "№3863 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.766793",
- "latitude": "50.802173",
- "address": "Am Herrenfeld, Ockershausen, Marburg, Landkreis Marburg-Biedenkopf, Regierungsbezirk Gießen, Hessen, 35037, Deutschland",
- "city_id": 7502,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5e20cc56f20eb5ba6650dc71fa6b5f9e1436962690.jpg",
- "trainings": 0
- },
- {
- "id": 3864,
- "name": "№3864 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "8.78963",
- "latitude": "50.80192",
- "address": "Hansenhaus, links, 15, Sonnenblickallee, Ortenberg, Marburg, Landkreis Marburg-Biedenkopf, Regierungsbezirk Gießen, Hessen, 35039, Deutschland",
- "city_id": 7502,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1bcfd038e4f428e11e6e93612a548ee71436962742.jpg",
- "trainings": 0
- },
- {
- "id": 3865,
- "name": "№3865 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.796379",
- "latitude": "52.368849",
- "address": "Hexenspielplatz, Am Wolfsgraben, Kleefeld, Buchholz-Kleefeld, Hannover, Region Hannover, Niedersachsen, 30625, Deutschland",
- "city_id": 7391,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/50b91a8d5d98465d66541e56b3b7ffbd1436962749.jpg",
- "trainings": 0
- },
- {
- "id": 3866,
- "name": "№3866 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "7.299818",
- "latitude": "51.289437",
- "address": "69, Kaiserstraße, Möllenkotten, Schwelm, Ennepe-Ruhr-Kreis, Regierungsbezirk Arnsberg, Nordrhein-Westfalen, 58332, Deutschland",
- "city_id": 7501,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0405422cb44a924dbb703272943695c81436962755.jpg",
- "trainings": 0
- },
- {
- "id": 3867,
- "name": "№3867 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "6.947776",
- "latitude": "50.946523",
- "address": "Hansaplatz, Gereonswall, Ursula-Viertel, Altstadt-Nord, Innenstadt, Köln, Regierungsbezirk Köln, Nordrhein-Westfalen, 50667-51149, Deutschland",
- "city_id": 695,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/b36ad16fcc6a2aaec65ff5388e5d2a6e1436962803.jpg",
- "trainings": 0
- },
- {
- "id": 3868,
- "name": "№3868 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.892228",
- "latitude": "51.023825",
- "address": "Tiberstraße, Chorweiler, Langel, Köln, Regierungsbezirk Köln, Nordrhein-Westfalen, 50765, Deutschland",
- "city_id": 695,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/bbd3687844cbf96416011cb9f0f3e8c71436962809.jpg",
- "trainings": 0
- },
- {
- "id": 3869,
- "name": "№3869 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.887368",
- "latitude": "51.034406",
- "address": "149, Langenbergstraße, Blumenberg, Chorweiler, Langel, Köln, Regierungsbezirk Köln, Nordrhein-Westfalen, 50765, Deutschland",
- "city_id": 695,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/642d7c7ff9196e8ff95f1408f57619931436962814.jpg",
- "trainings": 0
- },
- {
- "id": 3870,
- "name": "№3870 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.472678",
- "latitude": "50.812826",
- "address": "Nordpark, Am Nordpark, Rölsdorf, Düren, Kreis Düren, Regierungsbezirk Köln, Nordrhein-Westfalen, 52349, Deutschland",
- "city_id": 7500,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0e818740f05e63a3c7bcff49e999ed0d1436962863.jpg",
- "trainings": 0
- },
- {
- "id": 3871,
- "name": "№3871 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.47175",
- "latitude": "52.49712",
- "address": "Haus an der Spree, 17, Bootsbauerstraße, Stralau, Friedrichshain, Friedrichshain-Kreuzberg, Berlin, 10245, Deutschland",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/28fc3f35a34366afadfd462aa2000a071436962868.jpg",
- "trainings": 0
- },
- {
- "id": 3872,
- "name": "№3872 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.31707",
- "latitude": "52.523208",
- "address": "Trimm-Dich-Pfad, Station 5, Trimm-Dich-Pfad, Moabit, Mitte, Berlin, 10553, Deutschland",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/a4f0397a743508f5b66f824bc3458e741436962873.jpg",
- "trainings": 0
- },
- {
- "id": 3873,
- "name": "№3873 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "11.04771",
- "latitude": "49.460546",
- "address": "Theodor-Heuss-Brücke, Wetzendorf, Nürnberg, Mittelfranken, Bayern, 90429, Deutschland",
- "city_id": 7499,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/716efb7ef5f5857bd58fd346b95d8e281436962922.jpg",
- "trainings": 0
- },
- {
- "id": 3874,
- "name": "№3874 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "6.93488",
- "latitude": "50.931891",
- "address": "35, Rathenauplatz, Neustadt/Süd, Innenstadt, Köln, Regierungsbezirk Köln, Nordrhein-Westfalen, 50674, Deutschland",
- "city_id": 695,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c827637be7897d1900d4270aca74cc0a1436962926.jpg",
- "trainings": 0
- },
- {
- "id": 3875,
- "name": "№3875 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.62179",
- "latitude": "50.88309",
- "address": "7, Ziegesarstraße, Lobeda Ost, Neulobeda, Jena, Thüringen, 07747, Deutschland",
- "city_id": 7498,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/690dd7713c3543a2e77b639368224ccb1436962931.jpg",
- "trainings": 0
- },
- {
- "id": 3876,
- "name": "№3876 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "7.750299",
- "latitude": "51.668165",
- "address": "Funsportpark Herringen, Ort der interreligiösen Begegnung, Isenbecker Hof, Herringen, Hamm, Regierungsbezirk Arnsberg, Nordrhein-Westfalen, 59077, Deutschland",
- "city_id": 7497,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/dcfda616ee9c5a28bcf950729d6829e41436962982.jpg",
- "trainings": 0
- },
- {
- "id": 3877,
- "name": "№3877 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "9.20552",
- "latitude": "47.67317",
- "address": "Jakobstraße, Staad, Konstanz, Verwaltungsgemeinschaft Konstanz, Landkreis Konstanz, Regierungsbezirk Freiburg, Baden-Württemberg, 78464, Deutschland",
- "city_id": 7496,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c8002effe98fb3507daa905224c304601436962988.jpg",
- "trainings": 0
- },
- {
- "id": 3878,
- "name": "№3878 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.55637",
- "latitude": "51.76716",
- "address": "Nordring, Lippling, Delbrück, Kreis Paderborn, Regierungsbezirk Detmold, Nordrhein-Westfalen, 33129, Deutschland",
- "city_id": 7495,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/fd7560eb41af530af57be5e0a0cb41bd1436962997.jpg",
- "trainings": 0
- },
- {
- "id": 3879,
- "name": "№3879 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.331452",
- "latitude": "50.986748",
- "address": "Am Spitalweg, Spitalweg, Jakobsvorstadt, Weimar, Thüringen, 99423, Deutschland",
- "city_id": 7494,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a10d1ac789aee57d1eb00e68bf8877fb1436963043.jpg",
- "trainings": 0
- },
- {
- "id": 3880,
- "name": "№3880 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "10.020696",
- "latitude": "53.596984",
- "address": "Planetarium, 1, Otto-Wels-Straße, Winterhude, Hamburg-Nord, Hamburg, 22303, Deutschland",
- "city_id": 7391,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0fe19f5079cf90576b2872adb077d5831436963046.jpg",
- "trainings": 0
- },
- {
- "id": 3881,
- "name": "№3881 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "11.00116",
- "latitude": "50.967561",
- "address": "Gothaer Straße, Brühlervorstadt, Erfurt, Thüringen, 99094, Deutschland, Europa",
- "city_id": 7492,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/3615f4edb32da0d4b8f4b66be2ea48991436963051.jpg",
- "trainings": 0
- },
- {
- "id": 3882,
- "name": "№3882 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "10.99889",
- "latitude": "50.966077",
- "address": "Gothaer Straße, Brühlervorstadt, Erfurt, Thüringen, 99094, Deutschland, Europa",
- "city_id": 7492,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/fc0b99fe070e7f6beaf5655281597f671436963103.jpg",
- "trainings": 0
- },
- {
- "id": 3883,
- "name": "№3883 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "7.198184",
- "latitude": "50.342156",
- "address": "Freizeitzentrum Mayen, Bürresheimer Straße, Mayen, Landkreis Mayen-Koblenz, Rheinland-Pfalz, 56727, Deutschland",
- "city_id": 7491,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/695017ffc45ee9d7d1cd8b2e6a4ccbeb1436963107.jpg",
- "trainings": 0
- },
- {
- "id": 3884,
- "name": "№3884 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.482666",
- "latitude": "50.548128",
- "address": "25, Silhöfer Aue, Dalheim, Wetzlar, Lahn-Dill-Kreis, Regierungsbezirk Gießen, Hessen, 35578, Deutschland",
- "city_id": 7490,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a187339dafd20d6080df0f1db8cbbf781436963110.jpg",
- "trainings": 0
- },
- {
- "id": 3885,
- "name": "№3885 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "8.838372",
- "latitude": "53.104072",
- "address": "Finnbahn, Neu-Schwachhausen, Schwachhausen, Stadtbezirk Bremen-Ost, Bremen, 28213, Deutschland",
- "city_id": 7414,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ba3dd844482d2b4cea7c6bde875ce1f51436963163.jpg",
- "trainings": 0
- },
- {
- "id": 3886,
- "name": "№3886 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.48623",
- "latitude": "51.31708",
- "address": "Corneliusstraße, Tönisvorst, Kreis Viersen, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 47918, Deutschland",
- "city_id": 7489,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e8b21011344ffd8fab3b20a52eb82e9c1436963166.jpg",
- "trainings": 0
- },
- {
- "id": 3888,
- "name": "№3888 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "6.339112",
- "latitude": "50.930759",
- "address": "Hasenfelder Weg, Jülich, Kreis Düren, Regierungsbezirk Köln, Nordrhein-Westfalen, 52428, Deutschland",
- "city_id": 7488,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c9b88d1a47ea20ca356ef8502cedd3821436963223.jpg",
- "trainings": 0
- },
- {
- "id": 3889,
- "name": "№3889 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.083274",
- "latitude": "50.786659",
- "address": "Buchenallee, Pontviertel, Aachen-Mitte, Aachen, Städteregion Aachen, Regierungsbezirk Köln, Nordrhein-Westfalen, 52070, Deutschland",
- "city_id": 7487,
- "country_id": 7,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/514eecde21df6e1b0603db5d6119abcd1436963226.jpg",
- "trainings": 0
- },
- {
- "id": 3890,
- "name": "№3890 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "9.59241",
- "latitude": "52.42841",
- "address": "Volkshochschule Hannover-Land, 8 - 16, Meyenfelder Straße, Garbsen-Mitte, Garbsen, Region Hannover, Niedersachsen, 30823, Deutschland",
- "city_id": 7485,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/cd8cc25e89d27de1d8451d34a5239f5a1436963231.jpg",
- "trainings": 0
- },
- {
- "id": 3891,
- "name": "№3891 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "6.47381",
- "latitude": "51.18058",
- "address": "Trimm Dich Pfad, Rheydt-Mitte, Tackhütte, Mönchengladbach, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 41238, Deutschland",
- "city_id": 7473,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6769057439343a2f0a9c01f4a2624a2a1436963283.jpg",
- "trainings": 0
- },
- {
- "id": 3892,
- "name": "№3892 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "7.221358",
- "latitude": "51.278385",
- "address": "Move U, Nordbahntrasse, Bergisches Plateau, Gemarkung Barmen, Wuppertal, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 42277, Deutschland",
- "city_id": 7479,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/52f77b7cf9a79cde70d481b233b700581436963293.jpg",
- "trainings": 0
- },
- {
- "id": 3893,
- "name": "№3893 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "119.912703",
- "latitude": "28.454235",
- "address": "莲都区, 丽水市, 莲都区 (Liandu), 丽水市, 浙江省, 中华人民共和国",
- "city_id": 7484,
- "country_id": 34,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a662b5115ea7dff7fbbc4e826c233d3d1436963298.jpg",
- "trainings": 0
- },
- {
- "id": 3894,
- "name": "№3894 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "6.45637",
- "latitude": "51.663928",
- "address": "Ostwall, Beek, Xanten, Kreis Wesel, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 46509, Deutschland",
- "city_id": 7483,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/a16998cae8cd7ea38c18f600dc7b14861436963343.jpg",
- "trainings": 0
- },
- {
- "id": 3895,
- "name": "№3895 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "7.268742",
- "latitude": "51.457116",
- "address": "73, Hustadtring, Querenburg, Bochum-Süd, Bochum, Regierungsbezirk Arnsberg, North Rhine-Westphalia, 44801, Germany",
- "city_id": 7482,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e3aa8d018ea138b113d2f164f7e4b0bd1436963347.jpg",
- "trainings": 0
- },
- {
- "id": 3896,
- "name": "№3896 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "13.37675",
- "latitude": "52.494458",
- "address": "Dennewitzstraße, Tiergarten, Mitte, Berlin, 10785, Germany",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6437606c7bfd32cbdea56a74ffba49fe1436963351.jpg",
- "trainings": 0
- },
- {
- "id": 3898,
- "name": "№3898 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "6.820398",
- "latitude": "51.281907",
- "address": "Gut Niederbeck, West, Ratingen, Kreis Mettmann, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 40880, Deutschland",
- "city_id": 7481,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/61cb734b5f0bb380e5f2f03a1e5d33da1436963406.jpg",
- "trainings": 0
- },
- {
- "id": 3899,
- "name": "№3899 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "13.39712",
- "latitude": "52.523423",
- "address": "Märchenhütte, Monbijoustraße, Scheunenviertel, Mitte, Berlin, 10117, Germany",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4bf069383307f564d6dd807aaf5a78711436963413.jpg",
- "trainings": 0
- },
- {
- "id": 3900,
- "name": "№3900 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.924167",
- "latitude": "50.9175",
- "address": "A 4, Sülz, Lindenthal, Köln, Regierungsbezirk Köln, Nordrhein-Westfalen, 50667-51149, Deutschland",
- "city_id": 695,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b3003b8893234d6f5644840ab247a65a1436963462.jpg",
- "trainings": 0
- },
- {
- "id": 3902,
- "name": "№3902 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "6.049101",
- "latitude": "51.216368",
- "address": "36, Graaf Wolff Metternichlaan, Swalmen, Roermond, Province of Limburg, Netherlands, 6071BL, The Netherlands",
- "city_id": 7480,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b1654df3fa052e51d3205484e5051bee1436963472.jpg",
- "trainings": 0
- },
- {
- "id": 3903,
- "name": "№3903 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.6321",
- "latitude": "51.90475",
- "address": "6, Am Hallenbad, Schloß Holte, Schloß Holte-Stukenbrock, Kreis Gütersloh, Regierungsbezirk Detmold, North Rhine-Westphalia, 33758, Germany",
- "city_id": 7478,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/34cd55df5f79333e0fc8b5e1248839041436963523.jpg",
- "trainings": 0
- },
- {
- "id": 3904,
- "name": "№3904 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "7.467297",
- "latitude": "51.482178",
- "address": "Rombergpark / Botanischer Garten, Hacheneyer Straße, Lücklemberg, Dortmund, Regierungsbezirk Arnsberg, North Rhine-Westphalia, 44265, Germany",
- "city_id": 7477,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0a78bc83eba2a531088e94698176a0711436963528.jpg",
- "trainings": 1
- },
- {
- "id": 3905,
- "name": "№3905 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "121.537357",
- "latitude": "25.020455",
- "address": "中央籃球場, 垂葉榕道, 學府里, Da'an District, Taipei City, 10617, Republic of China",
- "city_id": 7476,
- "country_id": 34,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/c9b7b3f65b06cdc981d01ecbcc4aec301436963532.jpg",
- "trainings": 0
- },
- {
- "id": 3906,
- "name": "№3906 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "6.92871",
- "latitude": "50.93283",
- "address": "Bachemer Straße, Neustadt/Süd, Innenstadt, Cologne, Regierungsbezirk Köln, North Rhine-Westphalia, 50667-51149, Germany",
- "city_id": 695,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b7063acbb9ea2281563306fe77563f111436963583.jpg",
- "trainings": 0
- },
- {
- "id": 3907,
- "name": "№3907 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "7.18356",
- "latitude": "50.77684",
- "address": "Arnold-Janssen-Straße, Ort, St. Augustin, Rhein-Sieg-Kreis, Regierungsbezirk Köln, North Rhine-Westphalia, 53757, Germany",
- "city_id": 7475,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4acfbc4ba47f4291961d26f59e3dd5f41436963588.jpg",
- "trainings": 0
- },
- {
- "id": 3908,
- "name": "№3908 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "6.788722",
- "latitude": "51.082752",
- "address": "Stadtmarketing- und Verkehrsgesellschaft Dormagen mbH, Im Tannenbusch, Delhoven, Dormagen, Rhein-Kreis Neuss, Regierungsbezirk Düsseldorf, North Rhine-Westphalia, 41540, Germany",
- "city_id": 7474,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4e195a8f6358614684a273e8902142fc1436963594.jpg",
- "trainings": 0
- },
- {
- "id": 3909,
- "name": "№3909 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "6.83272",
- "latitude": "51.267024",
- "address": "2, Staufenplatz, Grafenberg, Stadtbezirk 7, Düsseldorf, Regierungsbezirk Düsseldorf, North Rhine-Westphalia, 40629, Germany",
- "city_id": 7468,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/43387a8a3006fe8be15b63e39bb050ad1436963642.jpg",
- "trainings": 0
- },
- {
- "id": 3910,
- "name": "№3910 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.324417",
- "latitude": "51.194928",
- "address": "Die Waldameise, Brahmsstraße, Hardter Wald, Mönchengladbach, Regierungsbezirk Düsseldorf, North Rhine-Westphalia, 41169, Germany",
- "city_id": 7468,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e66a1bb454548c670862d72023b6e6c91436963649.jpg",
- "trainings": 0
- },
- {
- "id": 3911,
- "name": "№3911 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "6.96067",
- "latitude": "51.17861",
- "address": "Elberfelder Straße, Kalstert, Hilden, Kreis Mettmann, Regierungsbezirk Düsseldorf, North Rhine-Westphalia, 40724, Germany",
- "city_id": 7472,
- "country_id": 7,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/5bbc64fd3a94432f8cbe6b21ff4a5af31436963658.jpg",
- "trainings": 1
- },
- {
- "id": 3913,
- "name": "№3913 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "6.413442",
- "latitude": "51.304959",
- "address": "Oedter Straße, Tönisvorst, Kreis Viersen, Regierungsbezirk Düsseldorf, North Rhine-Westphalia, 47918, Germany",
- "city_id": 7471,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1c26822dd0392c34cdec24db1b9c3b921436963707.jpg",
- "trainings": 0
- },
- {
- "id": 3914,
- "name": "№3914 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "5.707438",
- "latitude": "51.2622",
- "address": "Poldermolen, Weert, Province of Limburg, Netherlands, 6003BC, The Netherlands",
- "city_id": 7470,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/e4dfbcf4a4a87403302bfca95651e3a41436963719.jpg",
- "trainings": 0
- },
- {
- "id": 3915,
- "name": "№3915 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.57075",
- "latitude": "48.185706",
- "address": "15, Korbinianplatz, Bezirksteil Milbertshofen, Stadtbezirk 11 Milbertshofen-Am Hart, Neuschwabing, Munich, Upper Bavaria, Free State of Bavaria, 80807, Germany",
- "city_id": 664,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2d692cdf8fb02985a7ff1e70122cd2701436963763.jpg",
- "trainings": 0
- },
- {
- "id": 3916,
- "name": "№3916 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "6.800472",
- "latitude": "51.217792",
- "address": "12, Velberter Straße, Oberbilk, Stadtbezirk 3, Düsseldorf, Regierungsbezirk Düsseldorf, North Rhine-Westphalia, 40227, Germany",
- "city_id": 7468,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/b5abe9b356edf9f9e2ea8994619620941436963770.jpg",
- "trainings": 0
- },
- {
- "id": 3917,
- "name": "№3917 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "6.747534",
- "latitude": "51.567426",
- "address": "Hünxer Straße, Lohberg, Dinslaken, Kreis Wesel, Regierungsbezirk Düsseldorf, Nordrhein-Westfalen, 46537, Deutschland",
- "city_id": 7467,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2be812e9103da8c4c8ed6f8cc7dd2f461436963775.jpg",
- "trainings": 0
- },
- {
- "id": 3918,
- "name": "№3918 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "4.848615",
- "latitude": "52.357804",
- "address": "S106, Slotervaart, Amsterdam, Nieuw-West, Amsterdam, MRA, Stadsregio Amsterdam, North Holland, Netherlands, 1058 GV, The Netherlands",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/e2fd102bb3a8c1a5669b63792b047e601436963822.jpg",
- "trainings": 0
- },
- {
- "id": 3919,
- "name": "№3919 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "14.928235",
- "latitude": "50.41079",
- "address": "Koupaliště Mladá Boleslav, Kollárova, Mladá Boleslav, okres Mladá Boleslav, Středočeský kraj, Střední Čechy, 29360, Czech Republic",
- "city_id": 7466,
- "country_id": 30,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5610b7ab60e900901a39017a11b4b29c1436963827.jpg",
- "trainings": 0
- },
- {
- "id": 3920,
- "name": "№3920 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "24.734885",
- "latitude": "42.128203",
- "address": "Petr Vaskov Street, Христо Ботев - север, Plovdiv, Plovdiv Region, 4000, Bulgaria",
- "city_id": 7465,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/bdc9ade7109af5ce47351253b058e7851436963831.jpg",
- "trainings": 0
- },
- {
- "id": 3921,
- "name": "№3921 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-4.02375",
- "latitude": "39.86448",
- "address": "Parque de Sisebuto, Calle del Cardenal Tavera, Santa Bárbara, Toledo, Castilla-La Mancha, 45003, España",
- "city_id": 7464,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0eebfec31092f8b6e8dd02c17fb7251a1436963882.jpg",
- "trainings": 0
- },
- {
- "id": 3922,
- "name": "№3922 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.36538",
- "latitude": "52.60197",
- "address": "Willenberg, Barlage, Diepholz, Landkreis Diepholz, Niedersachsen, 49356, Deutschland",
- "city_id": 7463,
- "country_id": 7,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/bc16a12976123967931937cda3bcd0c41436963887.jpg",
- "trainings": 1
- },
- {
- "id": 3930,
- "name": "№3930 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.559183",
- "latitude": "56.83134",
- "address": "Средняя общеобразовательная школа №74 ул. Крауля, 46, Екатеринбург, Свердловская область, Россия",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC_1724.jpg",
- "trainings": 2
- },
- {
- "id": 3931,
- "name": "№3931 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.914496",
- "latitude": "43.435735",
- "address": "ул Взлетная, 3, Адлер",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/uMELi9qxq_k.jpg",
- "trainings": 0
- },
- {
- "id": 3932,
- "name": "№3932 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.35900309",
- "latitude": "60.0493561",
- "address": "просп. Просвещения, 52 корпус 2, Санкт-Петербург, Россия",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/1437150632939_tmp.png",
- "trainings": 1
- },
- {
- "id": 3933,
- "name": "№3933 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.351277",
- "latitude": "60.051285",
- "address": "просп. Просвещения, 46 корпус 4, Санкт-Петербург, Россия",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/1437151498400_tmp.png",
- "trainings": 0
- },
- {
- "id": 3934,
- "name": "№3934 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.662356",
- "latitude": "55.710467",
- "address": "Автозаводская 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG-20150714-00223.jpg",
- "trainings": 1
- },
- {
- "id": 3936,
- "name": "№3936 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.716494",
- "latitude": "55.408844",
- "address": "Шибанкова,2а",
- "city_id": 85,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/1437302394348_tmp.png",
- "trainings": 1
- },
- {
- "id": 3937,
- "name": "№3937 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.42914836",
- "latitude": "59.97258253",
- "address": "ул. Буренина, 3, Санкт-Петербург, Россия",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1437308112686_tmp.png",
- "trainings": 0
- },
- {
- "id": 3938,
- "name": "№3938 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.930963",
- "latitude": "57.651262",
- "address": "просп. Авиаторов, 113, Ярославль, Ярославская область, Россия",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/1437318226256_tmp.png",
- "trainings": 0
- },
- {
- "id": 3939,
- "name": "№3939 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.595372",
- "latitude": "56.81057",
- "address": "Россия, г. Екатеринбург, ул. Серова 12",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_1755.jpg",
- "trainings": 1
- },
- {
- "id": 3940,
- "name": "№3940 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.70552299999997",
- "latitude": "54.020224",
- "address": "Городской стадион",
- "city_id": 7486,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/oF0TAqXYg6c1047.jpg",
- "trainings": 1
- },
- {
- "id": 3945,
- "name": "№3945 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.184433",
- "latitude": "51.662907",
- "address": "Свободы 67А",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/Place.JPG",
- "trainings": 2
- },
- {
- "id": 3966,
- "name": "№3966 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.7136",
- "latitude": "55.788557",
- "address": "Девятая Рота ул., 2 корпус 2, Москва",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_10447872.JPG",
- "trainings": 0
- },
- {
- "id": 3967,
- "name": "№3967 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.715161",
- "latitude": "55.788791",
- "address": "ул. Преображенский Вал, 26",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1050.JPG",
- "trainings": 0
- },
- {
- "id": 3973,
- "name": "№3973 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.515449680000074",
- "latitude": "55.77909155",
- "address": "Куусинена ул., 5, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1437560123212_tmp.png",
- "trainings": 1
- },
- {
- "id": 3974,
- "name": "№3974 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.391788536361936",
- "latitude": "55.896211627118106",
- "address": "Соколово-Мещерская ул., 14, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1437564552974_tmp.png",
- "trainings": 7
- },
- {
- "id": 3975,
- "name": "№3975 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.472",
- "latitude": "45.346288",
- "address": "ул Набережная",
- "city_id": 503,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2015-06-17 15.36.33.jpg",
- "trainings": 0
- },
- {
- "id": 3976,
- "name": "№3976 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.901542",
- "latitude": "55.040794",
- "address": "Красноярская 38",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/310.jpg",
- "trainings": 1
- },
- {
- "id": 3979,
- "name": "№3979 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "41.710857",
- "latitude": "54.027368",
- "address": "ул.Интернациональная д.1",
- "city_id": 7486,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC_0057 (1).jpg",
- "trainings": 2
- },
- {
- "id": 3983,
- "name": "№3983 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.06214889138937",
- "latitude": "55.824067899520216",
- "address": "Серова 12а",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/1438542301416_tmp.png",
- "trainings": 5
- },
- {
- "id": 3989,
- "name": "№3989 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.62958595",
- "latitude": "54.19581856",
- "address": "Никитская ул., 1, Тула, Тульская область, Россия",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-16-22-12-02-jrw.jpg",
- "trainings": 4
- },
- {
- "id": 4001,
- "name": "№4001 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.608601",
- "latitude": "55.714848",
- "address": "Лестева 26",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG-20150727-00236.jpg",
- "trainings": 3
- },
- {
- "id": 4002,
- "name": "№4002 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.96438339999997",
- "latitude": "55.03647401",
- "address": "Федосеева 12",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1438071302857_tmp.png",
- "trainings": 0
- },
- {
- "id": 4003,
- "name": "№4003 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.497379",
- "latitude": "55.694841",
- "address": "Мичуринский 31",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG-20150728-00239.jpg",
- "trainings": 1
- },
- {
- "id": 4004,
- "name": "№4004 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.62904319912195",
- "latitude": "55.8656687872538",
- "address": "Юрловский проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1438150902868_tmp.png",
- "trainings": 4
- },
- {
- "id": 4022,
- "name": "№4022 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.653151",
- "latitude": "55.647543",
- "address": "Пролетарский проспект 6к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150729_165915.jpg",
- "trainings": 1
- },
- {
- "id": 4026,
- "name": "№4026 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.11038678",
- "latitude": "59.21051321",
- "address": "Кадуй, Вологодская область, Россия",
- "city_id": 148,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1438244382358_tmp.png",
- "trainings": 0
- },
- {
- "id": 4027,
- "name": "№4027 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.016332",
- "latitude": "56.503849",
- "address": "Россия, Томская область, Томск, 51, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150715-[092146].jpg",
- "trainings": 0
- },
- {
- "id": 4028,
- "name": "№4028 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.016876",
- "latitude": "56.506702",
- "address": "Россия, Томская область, Томск, 19, Карский пер.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150715-[093115].jpg",
- "trainings": 0
- },
- {
- "id": 4029,
- "name": "№4029 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.018596",
- "latitude": "56.504445",
- "address": "Россия, Томская область, Томск, 53, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150715-[092616].jpg",
- "trainings": 0
- },
- {
- "id": 4033,
- "name": "№4033 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.980985",
- "latitude": "56.469431",
- "address": "Россия, Томская область, Томск, 73, просп. Комсомольский",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150711-[123427].jpg",
- "trainings": 0
- },
- {
- "id": 4034,
- "name": "№4034 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.059455",
- "latitude": "56.517899",
- "address": "Россия, Томская область, Томск, 1, ул. Бела Куна",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150705-[154209].jpg",
- "trainings": 0
- },
- {
- "id": 4036,
- "name": "№4036 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "76.89012140035629",
- "latitude": "43.241145527358945",
- "address": "Курмангазы Розыбакиева",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1438349243474_tmp.png",
- "trainings": 0
- },
- {
- "id": 4037,
- "name": "№4037 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.417793",
- "latitude": "55.860407",
- "address": "Вилиса Лациса д.27 к.3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2015-07-31 09.21.26_167.jpg",
- "trainings": 0
- },
- {
- "id": 4038,
- "name": "№4038 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.41742599999998",
- "latitude": "55.861512",
- "address": "Вилиса Лациса д.27 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2015-07-30 20.39.14_1.jpg",
- "trainings": 0
- },
- {
- "id": 4039,
- "name": "№4039 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.412734",
- "latitude": "55.862277",
- "address": "Вилиса Лациса д.26 стр.1 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2015-07-30 20.46.02_1.jpg",
- "trainings": 1
- },
- {
- "id": 4040,
- "name": "№4040 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.036334",
- "latitude": "56.512511",
- "address": "Россия, Томская область, Томск, Карский пер.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150705-[142332].jpg",
- "trainings": 0
- },
- {
- "id": 4041,
- "name": "№4041 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.041057",
- "latitude": "56.515937",
- "address": "Россия, Томская область, Томск, 109/3, ул. Ивана Черных",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150705-[144755].jpg",
- "trainings": 0
- },
- {
- "id": 4042,
- "name": "№4042 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02886962890625",
- "latitude": "56.50954055786133",
- "address": "Россия, Томская область, Томск, 1 строение 1, ул. Суворова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150731-[195209].jpg",
- "trainings": 0
- },
- {
- "id": 4043,
- "name": "№4043 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.50521199",
- "latitude": "55.68699885",
- "address": "Unnamed Rd, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1438502747085_tmp.png",
- "trainings": 1
- },
- {
- "id": 4044,
- "name": "№4044 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.376645065844055",
- "latitude": "59.94482577769692",
- "address": "Кирочная улица, 50, Санкт-Петербург, Россия",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1438546362804_tmp.png",
- "trainings": 6
- },
- {
- "id": 4045,
- "name": "№4045 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "135.09982518",
- "latitude": "48.43340827",
- "address": "ул. Вахова, 8Д, Хабаровск, Хабаровский край, Россия",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1438560511932_tmp.png",
- "trainings": 0
- },
- {
- "id": 4046,
- "name": "№4046 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.0510482788086",
- "latitude": "56.51557922363281",
- "address": "Россия, Томская область, Томск, 142, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150705-[152058].jpg",
- "trainings": 0
- },
- {
- "id": 4048,
- "name": "№4048 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.0531005859375",
- "latitude": "56.516502380371094",
- "address": "Россия, Томская область, Томск, 148, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150705-[152652].jpg",
- "trainings": 0
- },
- {
- "id": 4049,
- "name": "№4049 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.24503",
- "latitude": "60.013646",
- "address": "м. Комендантский Проспект, ул. Авиаконструкторов, 15к2, Школа №38",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150803_003.jpg",
- "trainings": 2
- },
- {
- "id": 4050,
- "name": "№4050 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.04873657226563",
- "latitude": "56.51613998413086",
- "address": "Россия, Томская область, Томск, 140/1, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150705-[151217].jpg",
- "trainings": 0
- },
- {
- "id": 4051,
- "name": "№4051 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.543437",
- "latitude": "55.801419",
- "address": "Старый Зыковский проезд д. 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150804_090452.jpg",
- "trainings": 1
- },
- {
- "id": 4052,
- "name": "№4052 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.53339299999993",
- "latitude": "55.804335",
- "address": "Усиевича д 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150804_0928591.jpg",
- "trainings": 3
- },
- {
- "id": 4053,
- "name": "№4053 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.556610999999975",
- "latitude": "55.802655",
- "address": "ул.Юннатов д.17 к.3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2015-08-04 10.29.25.jpg",
- "trainings": 1
- },
- {
- "id": 4054,
- "name": "№4054 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.655983",
- "latitude": "55.625185",
- "address": "ул. Бакинская 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/bakinskaya.jpg",
- "trainings": 3
- },
- {
- "id": 4055,
- "name": "№4055 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "109.19732666015625",
- "latitude": "12.23706340789795",
- "address": "Кханьхоа, Нячанг, Lộc Thọ, 50 Trần Phú",
- "city_id": 7625,
- "country_id": 33,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/20150804-[121325].jpg",
- "trainings": 0
- },
- {
- "id": 4056,
- "name": "№4056 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.217675",
- "latitude": "59.943709",
- "address": "Ул.Кораблестроителей, д.19, корп.1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image3617.jpg",
- "trainings": 0
- },
- {
- "id": 4057,
- "name": "№4057 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.55371805280447",
- "latitude": "55.913190856604416",
- "address": "Челобитьевское шоссе дом 10, к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1438788892588_tmp.png",
- "trainings": 3
- },
- {
- "id": 4058,
- "name": "№4058 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.485007",
- "latitude": "55.751093",
- "address": "Парк Фили",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG-20150805-00307.jpg",
- "trainings": 1
- },
- {
- "id": 4059,
- "name": "№4059 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.507474",
- "latitude": "55.7003",
- "address": "Мичуринский 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG-20150805-00266.jpg",
- "trainings": 1
- },
- {
- "id": 4061,
- "name": "№4061 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.796998",
- "latitude": "55.6888",
- "address": "Парк Кузьминки",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/_Kuzm285.jpg",
- "trainings": 5
- },
- {
- "id": 4062,
- "name": "№4062 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.787213",
- "latitude": "55.68638",
- "address": "Парк Кузьминки",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/_Kuzm1.jpg",
- "trainings": 7
- },
- {
- "id": 4063,
- "name": "№4063 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.779006",
- "latitude": "55.656391",
- "address": "ул Марьинский парк 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/_MarPark.jpg",
- "trainings": 3
- },
- {
- "id": 4064,
- "name": "№4064 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.57630666666667",
- "latitude": "55.810726666666675",
- "address": "Дмитровский пр., 6 корпус 1 строение 1, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1438938840560_tmp.png",
- "trainings": 4
- },
- {
- "id": 4065,
- "name": "№4065 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.576212",
- "latitude": "59.751585",
- "address": "проспект Ленина 31",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P_20150806_174421.jpg",
- "trainings": 2
- },
- {
- "id": 4066,
- "name": "№4066 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "45.967237553620876",
- "latitude": "51.60023133537245",
- "address": "просп. Строителей, 25, Саратов, Саратовская область, Россия",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1438962873264_tmp.png",
- "trainings": 2
- },
- {
- "id": 4067,
- "name": "№4067 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "109.1966781616211",
- "latitude": "12.244720458984375",
- "address": "Кханьхоа, Нячанг, Lộc Thọ, Trần Phú",
- "city_id": 7625,
- "country_id": 33,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150807-[095832].jpg",
- "trainings": 0
- },
- {
- "id": 4068,
- "name": "№4068 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "109.20296478271484",
- "latitude": "12.222403526306152",
- "address": "Кханьхоа, Нячанг, Vĩnh Nguyên, Trần Phú",
- "city_id": 7625,
- "country_id": 33,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150807-[201341].jpg",
- "trainings": 0
- },
- {
- "id": 4069,
- "name": "№4069 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.240881",
- "latitude": "60.00564",
- "address": "м. Комендантский Проспект, ул. Камышовая, 18, Школа №596",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/WP_20150809_002.jpg",
- "trainings": 2
- },
- {
- "id": 4070,
- "name": "№4070 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "109.20439910888672",
- "latitude": "12.220301628112793",
- "address": "Кханьхоа, Нячанг, Vĩnh Nguyên, Trần Phú",
- "city_id": 7625,
- "country_id": 33,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150807-[200501].jpg",
- "trainings": 0
- },
- {
- "id": 4071,
- "name": "№4071 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "109.20417785644531",
- "latitude": "12.220178604125977",
- "address": "Кханьхоа, Нячанг, Vĩnh Nguyên, Trần Phú",
- "city_id": 7625,
- "country_id": 33,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150807-[200540].jpg",
- "trainings": 0
- },
- {
- "id": 4072,
- "name": "№4072 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "109.19659423828125",
- "latitude": "12.251270294189453",
- "address": "Кханьхоа, Нячанг, Lộc Thọ, Trần Phú",
- "city_id": 7625,
- "country_id": 33,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150810-[091551].jpg",
- "trainings": 0
- },
- {
- "id": 4074,
- "name": "№4074 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "109.19667053222656",
- "latitude": "12.250930786132813",
- "address": "Кханьхоа, Нячанг, Lộc Thọ, Trần Phú",
- "city_id": 7625,
- "country_id": 33,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150810-[083130].jpg",
- "trainings": 0
- },
- {
- "id": 4075,
- "name": "№4075 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "55.091948",
- "latitude": "51.772462",
- "address": "парк им. Перовского",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1766 - копия.JPG",
- "trainings": 0
- },
- {
- "id": 4077,
- "name": "№4077 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.713498",
- "latitude": "55.776855",
- "address": "ул. Золотая, 10, к.3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_106094.JPG",
- "trainings": 1
- },
- {
- "id": 4078,
- "name": "№4078 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.797475",
- "latitude": "55.789375",
- "address": "9-я парковая, 1к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/WP_20150725_002.jpg",
- "trainings": 1
- },
- {
- "id": 4079,
- "name": "№4079 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.723135",
- "latitude": "55.780785",
- "address": "Благуша, д. 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_105431.JPG",
- "trainings": 1
- },
- {
- "id": 4080,
- "name": "№4080 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "55.163598",
- "latitude": "51.830792",
- "address": "лице №5 ул. Джангильдина,13/1( ул. Липовая 3/2)",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1767ххх.jpg",
- "trainings": 0
- },
- {
- "id": 4082,
- "name": "№4082 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.44139786809683",
- "latitude": "55.89235900571075",
- "address": "Пролетарская 19",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1439281304926_tmp.png",
- "trainings": 2
- },
- {
- "id": 4083,
- "name": "№4083 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.509238",
- "latitude": "55.798603",
- "address": "Песчаный пер. 12",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1070.JPG",
- "trainings": 2
- },
- {
- "id": 4084,
- "name": "№4084 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.478749",
- "latitude": "55.787267",
- "address": "улица Берзарина, 17к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1064.JPG",
- "trainings": 0
- },
- {
- "id": 4085,
- "name": "№4085 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.603116",
- "latitude": "55.777868",
- "address": "ул Долгоруковская 38",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Dolg.jpg",
- "trainings": 1
- },
- {
- "id": 4086,
- "name": "№4086 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.605112",
- "latitude": "55.777241",
- "address": "ул Краснопролетарская д. 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/KrasnoKaz.jpg",
- "trainings": 2
- },
- {
- "id": 4088,
- "name": "№4088 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.587179",
- "latitude": "55.650709",
- "address": "Зюзино парк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/7KuSpJco6wU.jpg",
- "trainings": 1
- },
- {
- "id": 4090,
- "name": "№4090 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.56311",
- "latitude": "59.744231",
- "address": "улица Танкистов 28А",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150806_19343619.jpg",
- "trainings": 1
- },
- {
- "id": 4091,
- "name": "№4091 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.578749",
- "latitude": "59.73235",
- "address": "улица Веры Слуцкой 54",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150806_201138.jpg",
- "trainings": 0
- },
- {
- "id": 4092,
- "name": "№4092 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.584843",
- "latitude": "59.731322",
- "address": "Заводской проспект 50",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150806_202038.jpg",
- "trainings": 0
- },
- {
- "id": 4094,
- "name": "№4094 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.404023",
- "latitude": "55.657321",
- "address": "Парк-Сквер напротив дома по ул. Богданова, 2 корпус 1, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1439440179192_tmp.png",
- "trainings": 1
- },
- {
- "id": 4095,
- "name": "№4095 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.402297",
- "latitude": "55.671445",
- "address": "Россия, г. Москва, ЗАО, район Солнцево, парк Мещерский",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/1439396103003_tmp.png",
- "trainings": 12
- },
- {
- "id": 4097,
- "name": "№4097 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.88836462",
- "latitude": "55.69922891",
- "address": "Шевлякова 23",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 10,
- "preview": "https://workout.su/uploads/userfiles/1439436595003_tmp.png",
- "trainings": 10
- },
- {
- "id": 4098,
- "name": "№4098 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.357134",
- "latitude": "61.776133",
- "address": "наб. Ла-Рошель, 17",
- "city_id": 102,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_2873.jpg",
- "trainings": 1
- },
- {
- "id": 4099,
- "name": "№4099 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "61.29593286663293",
- "latitude": "55.192929346854584",
- "address": "лыжная база",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1439452969886_tmp.png",
- "trainings": 1
- },
- {
- "id": 4100,
- "name": "№4100 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.665687",
- "latitude": "55.627321",
- "address": "Луганская ул д 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/Lug1.jpg",
- "trainings": 2
- },
- {
- "id": 4101,
- "name": "№4101 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.545975",
- "latitude": "55.585492",
- "address": "Лыжный городок зоны отдыха Битца",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6577.jpg",
- "trainings": 0
- },
- {
- "id": 4102,
- "name": "№4102 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.554386",
- "latitude": "55.614636",
- "address": "в начале дороги через парк Соловьиный пр - психушка.",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/Bitza1-2.jpg",
- "trainings": 3
- },
- {
- "id": 4104,
- "name": "№4104 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02428436279297",
- "latitude": "56.507877349853516",
- "address": "Россия, Томская область, Томск, 80, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150813-[175657].jpg",
- "trainings": 0
- },
- {
- "id": 4105,
- "name": "№4105 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02375793457031",
- "latitude": "56.508689880371094",
- "address": "Россия, Томская область, Томск, 5, Любы Шевцовой ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150813-[175446].jpg",
- "trainings": 0
- },
- {
- "id": 4107,
- "name": "№4107 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.00640106201172",
- "latitude": "56.503334045410156",
- "address": "Россия, Томская область, Томск, 2А, 1-я Рабочая ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150812-[175412].jpg",
- "trainings": 0
- },
- {
- "id": 4108,
- "name": "№4108 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.0066146850586",
- "latitude": "56.503143310546875",
- "address": "Россия, Томская область, Томск, 30/1, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150812-[175528].jpg",
- "trainings": 0
- },
- {
- "id": 4109,
- "name": "№4109 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.00679779052734",
- "latitude": "56.50351333618164",
- "address": "Россия, Томская область, Томск, 30/1, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150812-[175626].jpg",
- "trainings": 0
- },
- {
- "id": 4110,
- "name": "№4110 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.00749206542969",
- "latitude": "56.50352096557617",
- "address": "Россия, Томская область, Томск, 2, ул. Мичурина",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150812-[175807].jpg",
- "trainings": 0
- },
- {
- "id": 4111,
- "name": "№4111 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "49.628699",
- "latitude": "58.640603",
- "address": "ул. Дом трамплина, ул. Подгорная",
- "city_id": 55,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMAG032057.jpg",
- "trainings": 1
- },
- {
- "id": 4112,
- "name": "№4112 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.975499",
- "latitude": "55.029913",
- "address": "Федосеева 38 (Гимназия №11)",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/100_6474c.jpg",
- "trainings": 1
- },
- {
- "id": 4113,
- "name": "№4113 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.504272",
- "latitude": "56.35158",
- "address": "Тимирязева, 17",
- "city_id": 7706,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0119 - копия.JPG",
- "trainings": 1
- },
- {
- "id": 4114,
- "name": "№4114 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.515175",
- "latitude": "56.349419",
- "address": "пл. Юбилейная, 2",
- "city_id": 7706,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0126.JPG",
- "trainings": 1
- },
- {
- "id": 4115,
- "name": "№4115 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.511171",
- "latitude": "56.339905",
- "address": "о. Дятлинка, 1",
- "city_id": 7706,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_0149 - копия.JPG",
- "trainings": 1
- },
- {
- "id": 4117,
- "name": "№4117 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.145268",
- "latitude": "56.75226",
- "address": "Левый Берег (\"Тридцатка\")",
- "city_id": 37,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150815_10444481.jpg",
- "trainings": 3
- },
- {
- "id": 4118,
- "name": "№4118 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.537577",
- "latitude": "64.555743",
- "address": "проспект Советских Космонавтов, 179, Архангельск, Архангельская область, Россия, 163000",
- "city_id": 6,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150818_131953.jpg",
- "trainings": 0
- },
- {
- "id": 4119,
- "name": "№4119 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.58866",
- "latitude": "55.761339",
- "address": "вспольный переулок, д. 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/WP_20150818_001.jpg",
- "trainings": 1
- },
- {
- "id": 4120,
- "name": "№4120 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.525689",
- "latitude": "64.557015",
- "address": "ул. Шубина, 7к1, Архангельск, Архангельская обл., Россия, 163001",
- "city_id": 6,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150818_131123.jpg",
- "trainings": 0
- },
- {
- "id": 4121,
- "name": "№4121 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.567999",
- "latitude": "59.735465",
- "address": "бульвар Трудящихся 15к2",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150817_195308.jpg",
- "trainings": 1
- },
- {
- "id": 4122,
- "name": "№4122 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.56802",
- "latitude": "59.733886",
- "address": "Заводской проспект 18к2",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150817_195950.jpg",
- "trainings": 0
- },
- {
- "id": 4123,
- "name": "№4123 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.577934",
- "latitude": "59.736871",
- "address": "улица Веры Слуцкой 81к1",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150817_201746.jpg",
- "trainings": 1
- },
- {
- "id": 4124,
- "name": "№4124 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.596967",
- "latitude": "59.736643",
- "address": "ПКиО",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150817_203725.jpg",
- "trainings": 1
- },
- {
- "id": 4125,
- "name": "№4125 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.594584",
- "latitude": "59.734532",
- "address": "ПКиО",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150817_204553.jpg",
- "trainings": 0
- },
- {
- "id": 4126,
- "name": "№4126 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.56554499999993",
- "latitude": "55.672648",
- "address": "ул.Новочеремушкинская д.50 корпус 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/RIiTkOxT_d4.jpg",
- "trainings": 4
- },
- {
- "id": 4127,
- "name": "№4127 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "83.36709500000006",
- "latitude": "54.219066",
- "address": "Новосибирская область город Черепаново улица Цыцаркина, 1А",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Ssx6wsJL4Tc.jpg",
- "trainings": 1
- },
- {
- "id": 4128,
- "name": "№4128 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.369715",
- "latitude": "54.223798",
- "address": "Новосибирская область город Черепаново улица Толстого 6",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/CSwGJx3E6jg.jpg",
- "trainings": 1
- },
- {
- "id": 4129,
- "name": "№4129 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.84685282",
- "latitude": "55.62852238",
- "address": "ул. Ленина, 30, Дзержинский, Московская область, Россия",
- "city_id": 32,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150819_100112.jpg",
- "trainings": 0
- },
- {
- "id": 4130,
- "name": "№4130 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.94956814",
- "latitude": "55.71918777",
- "address": "С5, Поляны Пансионат, Московская область, Россия",
- "city_id": 670,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150820_095606.jpg",
- "trainings": 1
- },
- {
- "id": 4131,
- "name": "№4131 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.631927",
- "latitude": "55.743568",
- "address": "Большой Овчинниковский переулок, 11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_111953.JPG",
- "trainings": 2
- },
- {
- "id": 4132,
- "name": "№4132 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.674583",
- "latitude": "55.770453",
- "address": "Плетешковский переулок, 10, с2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1109.JPG",
- "trainings": 0
- },
- {
- "id": 4134,
- "name": "№4134 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.879695",
- "latitude": "55.753546",
- "address": "Юбилейный проспект, 51 (Во дворе дома)",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150820_093823.jpg",
- "trainings": 1
- },
- {
- "id": 4135,
- "name": "№4135 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.866618",
- "latitude": "55.75077",
- "address": "Городской парк города Реутов",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150820_095227.jpg",
- "trainings": 0
- },
- {
- "id": 4136,
- "name": "№4136 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "56.232147",
- "latitude": "52.414147",
- "address": " Оренбургская область, п. Ташла Тюльганского района, ул. Олимпийская, 1, ",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6891.jpg",
- "trainings": 0
- },
- {
- "id": 4137,
- "name": "№4137 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.513856",
- "latitude": "56.3408",
- "address": "о. Дятлинка, 1",
- "city_id": 7706,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0291 - копия.JPG",
- "trainings": 1
- },
- {
- "id": 4139,
- "name": "№4139 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.752693",
- "latitude": "50.502652",
- "address": "возле озера на пекарне",
- "city_id": 7931,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150820_200351.jpg",
- "trainings": 0
- },
- {
- "id": 4140,
- "name": "№4140 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.91752238",
- "latitude": "43.17268549",
- "address": "просп. 100-летия Владивостока, 104, Владивосток, Приморский край, Россия",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150821_090310.jpg",
- "trainings": 0
- },
- {
- "id": 4141,
- "name": "№4141 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "33.75713713909466",
- "latitude": "44.864418534404166",
- "address": "с. Песчаное",
- "city_id": 479,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/PXZa3eZlrY4.jpg",
- "trainings": 0
- },
- {
- "id": 4142,
- "name": "№4142 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.86931",
- "latitude": "55.749998",
- "address": "Юбилейный проспект 36 (двор дома)",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150821_08324332.jpg",
- "trainings": 0
- },
- {
- "id": 4143,
- "name": "№4143 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.868351",
- "latitude": "55.748273",
- "address": "Территория школы №5",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150821_083644.jpg",
- "trainings": 1
- },
- {
- "id": 4146,
- "name": "№4146 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.00968",
- "latitude": "55.033113",
- "address": "Лазурная 10",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150920_121525.jpg",
- "trainings": 0
- },
- {
- "id": 4147,
- "name": "№4147 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.4864574162472",
- "latitude": "55.82880971886251",
- "address": "Ленинградское ш., 25 корпус 3, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150819_174535.jpg",
- "trainings": 6
- },
- {
- "id": 4148,
- "name": "№4148 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.97418633999996",
- "latitude": "55.03993318",
- "address": "Кошурникова 37",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150824_120906.jpg",
- "trainings": 0
- },
- {
- "id": 4150,
- "name": "№4150 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.73540686815977",
- "latitude": "55.63180361066365",
- "address": "ул.Борисовские пруды д.6к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1440408767660_tmp.png",
- "trainings": 3
- },
- {
- "id": 4151,
- "name": "№4151 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.02761613000007",
- "latitude": "55.02666039",
- "address": "Высоцкого 62",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150824_173137.jpg",
- "trainings": 1
- },
- {
- "id": 4153,
- "name": "№4153 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.672146",
- "latitude": "55.636443",
- "address": "Кантемировская ул 17к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150819_145022.jpg",
- "trainings": 0
- },
- {
- "id": 4154,
- "name": "№4154 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.817624",
- "latitude": "32.087001",
- "address": "HaGiborim",
- "city_id": 798,
- "country_id": 9,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/_fUyn0sh3G4.jpg",
- "trainings": 3
- },
- {
- "id": 4156,
- "name": "№4156 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.521148",
- "latitude": "55.85063",
- "address": "Онежская ул. д.18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/58226.jpg",
- "trainings": 1
- },
- {
- "id": 4157,
- "name": "№4157 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "50.24061653927117",
- "latitude": "53.24573061842777",
- "address": "ул. Стара Загора, 235, Самара, Самарская область, Россия",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-22-11-08-56-glo.jpeg",
- "trainings": 1
- },
- {
- "id": 4158,
- "name": "№4158 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.6116",
- "latitude": "55.683181",
- "address": "Улица Нагорная, дом 2.",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/1471.jpg",
- "trainings": 0
- },
- {
- "id": 4159,
- "name": "№4159 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.42804",
- "latitude": "48.639892",
- "address": "ВолГУ ",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/WP_20150825_002.jpg",
- "trainings": 8
- },
- {
- "id": 4160,
- "name": "№4160 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.579393",
- "latitude": "55.770064",
- "address": "Средний Тишинский переулок, дом 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/image001.jpg",
- "trainings": 0
- },
- {
- "id": 4161,
- "name": "№4161 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.770653",
- "latitude": "55.647975",
- "address": "ул. Поречная, д. 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 8,
- "preview": "https://workout.su/uploads/userfiles/phoca_thumb_l__mg_8392-2400.jpg",
- "trainings": 16
- },
- {
- "id": 4162,
- "name": "№4162 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.718492",
- "latitude": "55.683831",
- "address": "ул. Гурьянова, д. 35",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150827_110256.jpg",
- "trainings": 0
- },
- {
- "id": 4163,
- "name": "№4163 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.718943",
- "latitude": "55.682766",
- "address": "ул. Гурьянова, д. 41",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150827_105827.jpg",
- "trainings": 0
- },
- {
- "id": 4164,
- "name": "№4164 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.60688",
- "latitude": "59.744369",
- "address": "Тверская улица 13",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150818_205711.jpg",
- "trainings": 1
- },
- {
- "id": 4165,
- "name": "№4165 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.604951",
- "latitude": "59.738021",
- "address": "Тверская улица 25",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150818_212411.jpg",
- "trainings": 0
- },
- {
- "id": 4166,
- "name": "№4166 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.61659",
- "latitude": "59.738401",
- "address": "Октябрьская улица 71к2",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150820_203955.jpg",
- "trainings": 0
- },
- {
- "id": 4167,
- "name": "№4167 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.623639",
- "latitude": "59.73381",
- "address": "Октябрьская улица 3",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150820_210517.jpg",
- "trainings": 1
- },
- {
- "id": 4168,
- "name": "№4168 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "92.92968",
- "latitude": "55.996467",
- "address": "На месте снесенного дома по ул. Семафорная, д. 285",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_0528.JPG",
- "trainings": 0
- },
- {
- "id": 4169,
- "name": "№4169 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.715687",
- "latitude": "55.678495",
- "address": "ул. Гурьянова, д. 73, рядом ВМХ велодром, в парке",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20150829_151033.jpg",
- "trainings": 2
- },
- {
- "id": 4170,
- "name": "№4170 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.717832",
- "latitude": "55.677834",
- "address": "ул. Гурьянова, д. 65,67, во дворе",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150829_151717.jpg",
- "trainings": 1
- },
- {
- "id": 4171,
- "name": "№4171 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.596304",
- "latitude": "55.675892",
- "address": "Улица Нагорная, дом 30А.",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1483.jpg",
- "trainings": 0
- },
- {
- "id": 4172,
- "name": "№4172 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.721382",
- "latitude": "55.679139",
- "address": "ул. Шоссейная, д. 50",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150829_181848.jpg",
- "trainings": 0
- },
- {
- "id": 4173,
- "name": "№4173 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.548118",
- "latitude": "55.931718",
- "address": "Северный район, Москва",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/1440825770133_tmp.png",
- "trainings": 1
- },
- {
- "id": 4174,
- "name": "№4174 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "58.968648",
- "latitude": "53.408207",
- "address": "Парк 3-х поколений",
- "city_id": 563,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_0800.JPG",
- "trainings": 2
- },
- {
- "id": 4175,
- "name": "№4175 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "55.137131",
- "latitude": "51.775076",
- "address": "ул. Туркестанская 55/5",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ 72.JPG",
- "trainings": 1
- },
- {
- "id": 4176,
- "name": "№4176 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "55.097168",
- "latitude": "51.808871",
- "address": "ул. Новая 17 а",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ Оренбург.JPG",
- "trainings": 0
- },
- {
- "id": 4178,
- "name": "№4178 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.656822",
- "latitude": "55.712189",
- "address": "ул. Ленинская Слобода, 26 строение 2, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2015-09-01 18.17.40.jpg",
- "trainings": 3
- },
- {
- "id": 4179,
- "name": "№4179 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.569238",
- "latitude": "55.703343",
- "address": "Ленинский проспект 40",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20150902_131105.jpg",
- "trainings": 1
- },
- {
- "id": 4180,
- "name": "№4180 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.562842",
- "latitude": "55.79863",
- "address": "ул.Юннатов д.6Ас1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2015-08-07 10.34.32.jpg",
- "trainings": 0
- },
- {
- "id": 4181,
- "name": "№4181 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "47.866354",
- "latitude": "56.639407",
- "address": "Йошкар-Ола Парк Победы",
- "city_id": 571,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/12333.jpg",
- "trainings": 8
- },
- {
- "id": 4182,
- "name": "№4182 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.37671899999998",
- "latitude": "59.931203",
- "address": "овсянниковский сад",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150902_213401.jpg",
- "trainings": 7
- },
- {
- "id": 4183,
- "name": "№4183 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "42.980573",
- "latitude": "44.105042",
- "address": "г Лермонтов Проезд Солнечный 5",
- "city_id": 727,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20150829_10254583.jpg",
- "trainings": 1
- },
- {
- "id": 4184,
- "name": "№4184 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.894252",
- "latitude": "43.46993",
- "address": "ул. Ленина, 219",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0612 - копия.JPG",
- "trainings": 1
- },
- {
- "id": 4187,
- "name": "№4187 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.7805",
- "latitude": "55.085865",
- "address": "Парк Мира",
- "city_id": 60,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/fotofakt_vorkaut_1.jpg",
- "trainings": 6
- },
- {
- "id": 4189,
- "name": "№4189 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "41.303091",
- "latitude": "56.337566",
- "address": "ул. Зои Космодемьянской 2/1",
- "city_id": 7426,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMAG0568.jpg",
- "trainings": 0
- },
- {
- "id": 4192,
- "name": "№4192 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "59.001623",
- "latitude": "53.412943",
- "address": "Лукоморье",
- "city_id": 563,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1103.JPG",
- "trainings": 1
- },
- {
- "id": 4193,
- "name": "№4193 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.893248",
- "latitude": "56.015283",
- "address": "Бебеля 55",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/mBZFF1UStb0.jpg",
- "trainings": 0
- },
- {
- "id": 4194,
- "name": "№4194 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.379976",
- "latitude": "48.707351",
- "address": "ул Лесная 1а",
- "city_id": 560,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/33314.jpg",
- "trainings": 0
- },
- {
- "id": 4195,
- "name": "№4195 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.268307",
- "latitude": "55.885397",
- "address": "Красногорский район, ЖК пятницкие кварталы",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/0_9bb4d_2f3c815e_XXL.jpg",
- "trainings": 2
- },
- {
- "id": 4196,
- "name": "№4196 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "41.951846",
- "latitude": "44.635212",
- "address": "3 интернационала 5",
- "city_id": 778,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150906_114740.jpg",
- "trainings": 1
- },
- {
- "id": 4197,
- "name": "№4197 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "58.947573",
- "latitude": "53.403315",
- "address": "парк Экологический",
- "city_id": 563,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_110941.JPG",
- "trainings": 0
- },
- {
- "id": 4198,
- "name": "№4198 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "58.949397",
- "latitude": "53.40549",
- "address": "парк Экологический",
- "city_id": 563,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1115.JPG",
- "trainings": 1
- },
- {
- "id": 4200,
- "name": "№4200 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "55.097873",
- "latitude": "51.813454",
- "address": "Оренбург, ул. Ноябрьская, 41",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ №3.JPG",
- "trainings": 0
- },
- {
- "id": 4201,
- "name": "№4201 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "55.221419",
- "latitude": "51.783807",
- "address": "Цветной бульвар, 31,п. Ростоши, г. Оренбург",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/. Ростоши.JPG",
- "trainings": 0
- },
- {
- "id": 4203,
- "name": "№4203 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "45.951512",
- "latitude": "51.51081",
- "address": "Огородная 78/90",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/087.jpg",
- "trainings": 1
- },
- {
- "id": 4204,
- "name": "№4204 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.76144340634346",
- "latitude": "55.62942597448826",
- "address": "ул. Братеевская д.8 к.4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1441679322066_tmp.png",
- "trainings": 1
- },
- {
- "id": 4205,
- "name": "№4205 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "55.068683",
- "latitude": "51.786538",
- "address": "ул. Культурная, 1а",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/. Культурная, 1.JPG",
- "trainings": 0
- },
- {
- "id": 4206,
- "name": "№4206 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.567878",
- "latitude": "55.70216",
- "address": "Ленинский проспект 40",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150903_131744.jpg",
- "trainings": 4
- },
- {
- "id": 4213,
- "name": "№4213 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "54.995681",
- "latitude": "51.537968",
- "address": "п.Первомайский, оренбургский р-н",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/PicsArt_1441731029845.jpg",
- "trainings": 1
- },
- {
- "id": 4214,
- "name": "№4214 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.58012272417545",
- "latitude": "55.70993895827701",
- "address": "Ленинский проспект 32",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1441746351153_tmp.png",
- "trainings": 3
- },
- {
- "id": 4217,
- "name": "№4217 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.620741",
- "latitude": "55.808676",
- "address": "Мурманский проезд, 18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150909_151359.jpg",
- "trainings": 1
- },
- {
- "id": 4218,
- "name": "№4218 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.619746",
- "latitude": "55.810352",
- "address": "Калибровская улица, 24А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150909_152956.jpg",
- "trainings": 0
- },
- {
- "id": 4219,
- "name": "№4219 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.492789",
- "latitude": "55.686886",
- "address": "м. Проспект Вернадского, улица Удальцова",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ Олимпийская Деревня (2).jpg",
- "trainings": 6
- },
- {
- "id": 4222,
- "name": "№4222 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.63271380215883",
- "latitude": "55.81599382350407",
- "address": "Звездный бульвар 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150909_094759304.jpg",
- "trainings": 2
- },
- {
- "id": 4223,
- "name": "№4223 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02545928955078",
- "latitude": "56.5225715637207",
- "address": "Россия, Томская область, Томск, 22, Междугородная ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150910-[121251].jpg",
- "trainings": 0
- },
- {
- "id": 4224,
- "name": "№4224 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.0283203125",
- "latitude": "56.522239685058594",
- "address": "Россия, Томская область, Томск, Сахалинский пер.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150910-[121529].jpg",
- "trainings": 0
- },
- {
- "id": 4225,
- "name": "№4225 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.01876831054688",
- "latitude": "56.52457809448242",
- "address": "Россия, Томская область, Томск, Азербайджанская ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150910-[123406].jpg",
- "trainings": 0
- },
- {
- "id": 4226,
- "name": "№4226 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02853393554688",
- "latitude": "56.5239372253418",
- "address": "Россия, Томская область, Томск, 3, Музыкальный пер.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150910-[125932].jpg",
- "trainings": 0
- },
- {
- "id": 4227,
- "name": "№4227 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02824401855469",
- "latitude": "56.52454376220703",
- "address": "Россия, Томская область, Томск, 15/1, ул. Репина",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150910-[122229].jpg",
- "trainings": 0
- },
- {
- "id": 4228,
- "name": "№4228 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02949523925781",
- "latitude": "56.52474594116211",
- "address": "Россия, Томская область, Томск, 23, Иртышская ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150910-[122016].jpg",
- "trainings": 0
- },
- {
- "id": 4229,
- "name": "№4229 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.0287094116211",
- "latitude": "56.52559280395508",
- "address": "Россия, Томская область, Томск, 5, ул. Александра Невского",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150910-[122520].jpg",
- "trainings": 0
- },
- {
- "id": 4230,
- "name": "№4230 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02645111083984",
- "latitude": "56.52214813232422",
- "address": "Россия, Томская область, Томск, Сахалинский пер.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150910-[121010].jpg",
- "trainings": 0
- },
- {
- "id": 4231,
- "name": "№4231 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.54607643932104",
- "latitude": "55.543985536638694",
- "address": "Бутово Венёвская 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20150910_151046.jpg",
- "trainings": 1
- },
- {
- "id": 4232,
- "name": "№4232 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.298115",
- "latitude": "55.682376",
- "address": "Можайское шоссе дом 84",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Cp0MeR9fE10.jpg",
- "trainings": 2
- },
- {
- "id": 4233,
- "name": "№4233 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.01606750488281",
- "latitude": "56.505821228027344",
- "address": "Россия, Томская область, Томск, 72А, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150909-[142814].jpg",
- "trainings": 0
- },
- {
- "id": 4234,
- "name": "№4234 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97006225585938",
- "latitude": "56.46992111206055",
- "address": "Россия, Томская область, Томск, 29, ул. Дзержинского",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[130423].jpg",
- "trainings": 0
- },
- {
- "id": 4235,
- "name": "№4235 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97193908691406",
- "latitude": "56.464927673339844",
- "address": "Россия, Томская область, Томск, 117/1, Тверская ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[133329].jpg",
- "trainings": 0
- },
- {
- "id": 4236,
- "name": "№4236 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97171783447266",
- "latitude": "56.464378356933594",
- "address": "Россия, Томская область, Томск, 56, ул. Усова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[133505].jpg",
- "trainings": 0
- },
- {
- "id": 4237,
- "name": "№4237 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97733306884766",
- "latitude": "56.46332550048828",
- "address": "Россия, Томская область, Томск, 25В, ул. Усова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[135342].jpg",
- "trainings": 0
- },
- {
- "id": 4238,
- "name": "№4238 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97451782226563",
- "latitude": "56.4632453918457",
- "address": "Россия, Томская область, Томск, 25/2, ул. Усова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[134434].jpg",
- "trainings": 1
- },
- {
- "id": 4240,
- "name": "№4240 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02790832519531",
- "latitude": "56.51640701293945",
- "address": "Россия, Томская область, Томск, 10/1, пер. Сергея Лазо",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150910-[115825].jpg",
- "trainings": 0
- },
- {
- "id": 4241,
- "name": "№4241 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97115325927734",
- "latitude": "56.46519088745117",
- "address": "Россия, Томская область, Томск, 56, ул. Дзержинского",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[132430].jpg",
- "trainings": 0
- },
- {
- "id": 4242,
- "name": "№4242 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.96611785888672",
- "latitude": "56.466796875",
- "address": "Россия, Томская область, Томск, 26, просп. Кирова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[123812].jpg",
- "trainings": 0
- },
- {
- "id": 4243,
- "name": "№4243 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97081756591797",
- "latitude": "56.46558380126953",
- "address": "Россия, Томская область, Томск, 54А, ул. Дзержинского",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[132259].jpg",
- "trainings": 0
- },
- {
- "id": 4244,
- "name": "№4244 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97012329101563",
- "latitude": "56.465972900390625",
- "address": "Россия, Томская область, Томск, 54А, ул. Дзержинского",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[133048].jpg",
- "trainings": 0
- },
- {
- "id": 4245,
- "name": "№4245 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97112274169922",
- "latitude": "56.46537399291992",
- "address": "Россия, Томская область, Томск, 56, ул. Дзержинского",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[133407].jpg",
- "trainings": 0
- },
- {
- "id": 4246,
- "name": "№4246 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.971435546875",
- "latitude": "56.46390151977539",
- "address": "Россия, Томская область, Томск, 52, ул. Усова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[134112].jpg",
- "trainings": 0
- },
- {
- "id": 4247,
- "name": "№4247 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.94573605060577",
- "latitude": "56.00812930372805",
- "address": "Красноярский рабочий, 92",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150912_173129.jpg",
- "trainings": 1
- },
- {
- "id": 4248,
- "name": "№4248 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.96685791015625",
- "latitude": "56.466957092285156",
- "address": "Россия, Томская область, Томск, 32, просп. Кирова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[123518].jpg",
- "trainings": 0
- },
- {
- "id": 4249,
- "name": "№4249 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.9706802368164",
- "latitude": "56.46505355834961",
- "address": "Россия, Томская область, Томск, 60, ул. Дзержинского",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[133845].jpg",
- "trainings": 0
- },
- {
- "id": 4250,
- "name": "№4250 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97248077392578",
- "latitude": "56.463714599609375",
- "address": "Россия, Томская область, Томск, 21, ул. Усова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[134407].jpg",
- "trainings": 0
- },
- {
- "id": 4251,
- "name": "№4251 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97490692138672",
- "latitude": "56.46234130859375",
- "address": "Россия, Томская область, Томск, 109/2, Киевская ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[134926].jpg",
- "trainings": 0
- },
- {
- "id": 4252,
- "name": "№4252 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97959899902344",
- "latitude": "56.46268081665039",
- "address": "Россия, Томская область, Томск, 3, ул. Артема",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[141051].jpg",
- "trainings": 0
- },
- {
- "id": 4253,
- "name": "№4253 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02728271484375",
- "latitude": "56.510643005371094",
- "address": "Россия, Томская область, Томск, 5 корпус 1, ул. Суворова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150913-[114218].jpg",
- "trainings": 0
- },
- {
- "id": 4254,
- "name": "№4254 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.0294189453125",
- "latitude": "56.511966705322266",
- "address": "Россия, Томская область, Томск, 83, ул. Ивана Черных",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150913-[114743].jpg",
- "trainings": 0
- },
- {
- "id": 4257,
- "name": "№4257 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "58.974092",
- "latitude": "53.378474",
- "address": "Карла Маркса 172/3",
- "city_id": 563,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/Attachment-164.jpeg",
- "trainings": 2
- },
- {
- "id": 4258,
- "name": "№4258 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "58.98077",
- "latitude": "53.370797",
- "address": "Ворошилова 18",
- "city_id": 563,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/Attachment-4.jpeg",
- "trainings": 1
- },
- {
- "id": 4260,
- "name": "№4260 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "47.899421",
- "latitude": "56.643417",
- "address": "ул. Волкова д. 68",
- "city_id": 571,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0819.JPG",
- "trainings": 1
- },
- {
- "id": 4261,
- "name": "№4261 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.43737326",
- "latitude": "55.80485375",
- "address": "просп. Ленина, 3, Электросталь, Московская область, Россия",
- "city_id": 153,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150914_070836.jpg",
- "trainings": 0
- },
- {
- "id": 4262,
- "name": "№4262 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.803736",
- "latitude": "56.907595",
- "address": "Исакова 22",
- "city_id": 10,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/22887.jpg",
- "trainings": 0
- },
- {
- "id": 4263,
- "name": "№4263 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.05328649",
- "latitude": "47.80920714",
- "address": "ул. Запорожского Казачества, 6, Запорожье, Запорожская область",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150915_075242.jpg",
- "trainings": 1
- },
- {
- "id": 4264,
- "name": "№4264 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.305813",
- "latitude": "60.057869",
- "address": "Выборгское шоссе 130 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/20150911_18374067.jpg",
- "trainings": 5
- },
- {
- "id": 4265,
- "name": "№4265 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.326812",
- "latitude": "61.781452",
- "address": "ул. Чкалова, 49",
- "city_id": 102,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_2930.jpg",
- "trainings": 0
- },
- {
- "id": 4266,
- "name": "№4266 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.327059",
- "latitude": "61.781989",
- "address": "ул. Чкалова, 49а",
- "city_id": 102,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_2934.jpg",
- "trainings": 0
- },
- {
- "id": 4267,
- "name": "№4267 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.71161200000006",
- "latitude": "55.756969",
- "address": "улица Энергетическая, 16, корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/6CA58AB6-2D00-4C90-9E9B-FCDD578C1DDC.jpg",
- "trainings": 2
- },
- {
- "id": 4268,
- "name": "№4268 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.69829000000004",
- "latitude": "55.758271",
- "address": "улица Красноказарменная, 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/505E04D4-E312-4A98-A81A-3F5DD3CFCBBE.jpg",
- "trainings": 0
- },
- {
- "id": 4271,
- "name": "№4271 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.81415",
- "latitude": "55.790658",
- "address": "14-я парковая, дом 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150917_003.jpg",
- "trainings": 1
- },
- {
- "id": 4272,
- "name": "№4272 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.639527",
- "latitude": "55.785478",
- "address": "банный переулок, 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/WP_20150904_001.jpg",
- "trainings": 1
- },
- {
- "id": 4273,
- "name": "№4273 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "56.18358690000002",
- "latitude": "57.9840442",
- "address": "шоссе космонавтов 141",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/33979D73-BFEE-488A-923E-6DDAF1F614C1.jpg",
- "trainings": 0
- },
- {
- "id": 4274,
- "name": "№4274 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "65.43776482343674",
- "latitude": "62.14546620097758",
- "address": "1 микрорайон, 1 дом",
- "city_id": 747,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150918_120532.jpg",
- "trainings": 2
- },
- {
- "id": 4277,
- "name": "№4277 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02487182617188",
- "latitude": "56.51447677612305",
- "address": "Россия, Томская область, Томск, 4/1, ул. Сергея Лазо",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150918-[120433].jpg",
- "trainings": 0
- },
- {
- "id": 4278,
- "name": "№4278 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.01808166503906",
- "latitude": "56.533363342285156",
- "address": "Россия, Томская область, Томск, 4/1, ул. Угрюмова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150918-[132122].jpg",
- "trainings": 0
- },
- {
- "id": 4279,
- "name": "№4279 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02888488769531",
- "latitude": "56.525657653808594",
- "address": "Россия, Томская область, Томск, 12, ул. Александра Невского",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150918-[140945].jpg",
- "trainings": 0
- },
- {
- "id": 4281,
- "name": "№4281 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.732745",
- "latitude": "55.70290166666667",
- "address": "Люблинская ул., 21 корпус 1, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150919_123040.jpg",
- "trainings": 1
- },
- {
- "id": 4282,
- "name": "№4282 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.21299823940717",
- "latitude": "51.65433198359295",
- "address": "Адмиралтейская площадь - Вогрэсовский мост, Воронеж, Воронежская область, Россия",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150919_151035.jpg",
- "trainings": 1
- },
- {
- "id": 4283,
- "name": "№4283 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.249928700000055",
- "latitude": "55.6910058",
- "address": "Парк отдыха имени Ларисы Лазутиной ",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0B35E78E-D02D-4DFE-BF86-56B153056D6E.jpg",
- "trainings": 2
- },
- {
- "id": 4284,
- "name": "№4284 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "(null)",
- "latitude": "(null)",
- "address": "(null)",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/89C5944E-C604-4526-ABC5-B0E18EDCB4DA.jpg",
- "trainings": 0
- },
- {
- "id": 4285,
- "name": "№4285 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.02543504000005",
- "latitude": "55.0294253",
- "address": "Высоцкого 42/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150920_112937.jpg",
- "trainings": 0
- },
- {
- "id": 4286,
- "name": "№4286 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.02284299999997",
- "latitude": "55.029445",
- "address": "Высоцкого 42",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150920_114657.jpg",
- "trainings": 3
- },
- {
- "id": 4287,
- "name": "№4287 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.00583899999992",
- "latitude": "55.032702",
- "address": "Лазурная 6",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150920_132200.jpg",
- "trainings": 0
- },
- {
- "id": 4288,
- "name": "№4288 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.862293",
- "latitude": "55.712224",
- "address": "оренбургская д.20 к.2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/9w47j1W5Prs69.jpg",
- "trainings": 2
- },
- {
- "id": 4289,
- "name": "№4289 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.856101",
- "latitude": "55.715053",
- "address": "Большая косинская д. 24",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/4OTMehpyWo4.jpg",
- "trainings": 4
- },
- {
- "id": 4290,
- "name": "№4290 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.613198",
- "latitude": "56.811241",
- "address": "степана разина 71",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/13274.jpg",
- "trainings": 0
- },
- {
- "id": 4291,
- "name": "№4291 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.578327",
- "latitude": "55.771115",
- "address": "Малый Тишинский пер, 20",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150828_163921.jpg",
- "trainings": 0
- },
- {
- "id": 4292,
- "name": "№4292 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.411534",
- "latitude": "44.663508",
- "address": "ул. Набережная, 2А",
- "city_id": 477,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20150918_132946.jpg",
- "trainings": 0
- },
- {
- "id": 4293,
- "name": "№4293 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.414459",
- "latitude": "44.676601",
- "address": "Ревкомовский переулок",
- "city_id": 477,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150919_140813.jpg",
- "trainings": 0
- },
- {
- "id": 4294,
- "name": "№4294 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.415923",
- "latitude": "44.677505",
- "address": "Ревкомовский переулок, рядом Дельфинарий «Немо»",
- "city_id": 477,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150919_140304.jpg",
- "trainings": 0
- },
- {
- "id": 4295,
- "name": "№4295 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.718543",
- "latitude": "55.680326",
- "address": "ул. Гурьянова, д. 57к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150922_104328.jpg",
- "trainings": 0
- },
- {
- "id": 4296,
- "name": "№4296 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.811471",
- "latitude": "55.791661",
- "address": "нижняя первомайская, 51",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/WP_20150919_001.jpg",
- "trainings": 1
- },
- {
- "id": 4297,
- "name": "№4297 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "55.203734",
- "latitude": "51.787303",
- "address": "Оренбург, п. Ростоши ул. Ясеневая, 13",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/. Ростоши ул Зорянка.JPG",
- "trainings": 1
- },
- {
- "id": 4298,
- "name": "№4298 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.72695",
- "latitude": "55.812436",
- "address": "бойцовая улица, 18к14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/WP_20150919_002.jpg",
- "trainings": 1
- },
- {
- "id": 4299,
- "name": "№4299 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.736565",
- "latitude": "55.804215",
- "address": "большая черкизовская, 23",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/WP_20150919_010.jpg",
- "trainings": 5
- },
- {
- "id": 4300,
- "name": "№4300 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.637229",
- "latitude": "55.785798",
- "address": "банный переулок, 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20150922_004.jpg",
- "trainings": 1
- },
- {
- "id": 4301,
- "name": "№4301 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.906092807650566",
- "latitude": "43.45391581188938",
- "address": "голубые дали дом 16",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0015.JPG",
- "trainings": 0
- },
- {
- "id": 4302,
- "name": "№4302 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.46915000000001",
- "latitude": "56.009896",
- "address": "улица Ленина, 29",
- "city_id": 73,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/E0E1C5AD-C344-4A8F-90AF-3676C852BBA5.jpg",
- "trainings": 1
- },
- {
- "id": 4303,
- "name": "№4303 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "86.12373500000001",
- "latitude": "55.32453",
- "address": "г. Кемерово, пр-т Молодежный, 9б",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2enBljTdUNw152.jpg",
- "trainings": 1
- },
- {
- "id": 4304,
- "name": "№4304 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.721866",
- "latitude": "55.677499",
- "address": "Шоссейная улица, 54к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150923_101307.jpg",
- "trainings": 0
- },
- {
- "id": 4305,
- "name": "№4305 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.724147",
- "latitude": "55.69225",
- "address": "ул. Гурьянова, д. 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150923_104406.jpg",
- "trainings": 1
- },
- {
- "id": 4306,
- "name": "№4306 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "56.19263799999999",
- "latitude": "57.990956",
- "address": "шоссе Космонавтов 120",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1698.jpg",
- "trainings": 1
- },
- {
- "id": 4315,
- "name": "№4315 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.18081",
- "latitude": "56.149277",
- "address": "г.Кстово ул. Кстовская 1",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/67.JPG",
- "trainings": 2
- },
- {
- "id": 4319,
- "name": "№4319 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.734134",
- "latitude": "55.717829",
- "address": "Грайвороновская ул., д.16 к.3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/5422.jpg",
- "trainings": 2
- },
- {
- "id": 4322,
- "name": "№4322 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.80285",
- "latitude": "48.015883",
- "address": "Донецк",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_2635Р60.jpg",
- "trainings": 1
- },
- {
- "id": 4323,
- "name": "№4323 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.476526",
- "latitude": "55.778169",
- "address": "ул. Народного Ополчения, д.21, к.2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/0143.jpg",
- "trainings": 1
- },
- {
- "id": 4326,
- "name": "№4326 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "58.966728",
- "latitude": "53.398756",
- "address": "Грязнова 11",
- "city_id": 563,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/AEEE568E-907B-4E27-9FD5-1FAA883DED4B.jpg",
- "trainings": 0
- },
- {
- "id": 4327,
- "name": "№4327 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.949577",
- "latitude": "44.63507",
- "address": "северная 18",
- "city_id": 778,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150925_143849.jpg",
- "trainings": 0
- },
- {
- "id": 4328,
- "name": "№4328 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "63.01899433135987",
- "latitude": "57.682101721912034",
- "address": "пос. Пионерский ул. Мира 12, г. Ирбит, Свердловская область ",
- "city_id": 7914,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/WP_20150905_10_59_04_Pro.jpg",
- "trainings": 1
- },
- {
- "id": 4329,
- "name": "№4329 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "32.048162268514574",
- "latitude": "54.774444952322256",
- "address": "просп. Гагарина, 11, Смоленск, Смоленская область, Россия",
- "city_id": 124,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150926_154114.jpg",
- "trainings": 0
- },
- {
- "id": 4330,
- "name": "№4330 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "32.05489744920568",
- "latitude": "54.77931816833253",
- "address": "ул. Маршала Жукова, 9, Смоленск, Смоленская область, Россия",
- "city_id": 124,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150926_160004.jpg",
- "trainings": 0
- },
- {
- "id": 4331,
- "name": "№4331 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.70693200000005",
- "latitude": "55.745877",
- "address": "Улица Душинская, 7, к.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image9116.jpg",
- "trainings": 1
- },
- {
- "id": 4332,
- "name": "№4332 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.70496000000003",
- "latitude": "55.744256",
- "address": "Улица Душинская 20",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/image7214.jpg",
- "trainings": 0
- },
- {
- "id": 4333,
- "name": "№4333 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.732856",
- "latitude": "55.621064",
- "address": "Шипиловская ул., д. 44/27",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_4261.JPG",
- "trainings": 0
- },
- {
- "id": 4334,
- "name": "№4334 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.453414",
- "latitude": "55.850783",
- "address": "ул. Свободы, д. 50",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/IMG_4374-1.jpg",
- "trainings": 2
- },
- {
- "id": 4336,
- "name": "№4336 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "63.012160062789924",
- "latitude": "57.68237506501611",
- "address": "пос. Пионерский ул. Ожиганова 10",
- "city_id": 7914,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/WP_20150926_003.jpg",
- "trainings": 1
- },
- {
- "id": 4337,
- "name": "№4337 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.62584666666667",
- "latitude": "47.22953333333333",
- "address": "ул. Зорге, 33 корпус 4, Ростов-на-Дону, Ростовская область, Россия",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150926_182938.jpg",
- "trainings": 5
- },
- {
- "id": 4338,
- "name": "№4338 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.864095",
- "latitude": "55.663152",
- "address": "Новая улица, 20",
- "city_id": 65,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150927_110337.jpg",
- "trainings": 0
- },
- {
- "id": 4340,
- "name": "№4340 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.96955905999994",
- "latitude": "55.82523601",
- "address": "ул. Объединения, 4, Балашиха, Московская область, Россия",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150927_173319.jpg",
- "trainings": 2
- },
- {
- "id": 4341,
- "name": "№4341 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "132.006451",
- "latitude": "43.173739",
- "address": "Бородинская, 27",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/image3090.jpg",
- "trainings": 3
- },
- {
- "id": 4350,
- "name": "№4350 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.28729",
- "latitude": "55.190212",
- "address": "Комсомольский проспект 112 А",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150929_070429.jpg",
- "trainings": 1
- },
- {
- "id": 4352,
- "name": "№4352 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.960449",
- "latitude": "55.665984",
- "address": "ул. Гаршина, д. 9А, корп. 14",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/image-1-125.jpg",
- "trainings": 0
- },
- {
- "id": 4353,
- "name": "№4353 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.10127",
- "latitude": "68.982536",
- "address": "г. Мурманск, ул. Кильдинская, д.1",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/UZT5kB50WDc.jpg",
- "trainings": 3
- },
- {
- "id": 4354,
- "name": "№4354 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.566361",
- "latitude": "56.982595",
- "address": "ул. Уральских рабочих 31_",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/XIAP7tFfCeE.jpg",
- "trainings": 1
- },
- {
- "id": 4356,
- "name": "№4356 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.042891",
- "latitude": "44.053131",
- "address": "Ул. Адмиральского, 35к2",
- "city_id": 735,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image3014.jpg",
- "trainings": 1
- },
- {
- "id": 4359,
- "name": "№4359 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.362196",
- "latitude": "55.818376",
- "address": "Красногорский бульвар, д. 3",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1194.JPG",
- "trainings": 1
- },
- {
- "id": 4360,
- "name": "№4360 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "83.10460019856691",
- "latitude": "54.866522639759395",
- "address": "полевая 5/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151001_164350.jpg",
- "trainings": 4
- },
- {
- "id": 4361,
- "name": "№4361 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.277336",
- "latitude": "58.520316",
- "address": "софийская набережная",
- "city_id": 14,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/13636.jpg",
- "trainings": 1
- },
- {
- "id": 4362,
- "name": "№4362 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.466411",
- "latitude": "55.807214",
- "address": "ул. Маршала Василевского, 13 корпус 1 строение 3, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2015-10-02 20.24.41.jpg",
- "trainings": 0
- },
- {
- "id": 4363,
- "name": "№4363 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "53.21444",
- "latitude": "56.868841",
- "address": "Северный переулок, 53 (лицей №22)",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMAG2328.jpg",
- "trainings": 3
- },
- {
- "id": 4364,
- "name": "№4364 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "53.214125",
- "latitude": "56.87073",
- "address": "Майская улица, 14а (школа №63)",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMAG2280.jpg",
- "trainings": 1
- },
- {
- "id": 4365,
- "name": "№4365 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.478484",
- "latitude": "64.43428",
- "address": "1 микрорайон, школа №1",
- "city_id": 7911,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151002_035939.jpg",
- "trainings": 2
- },
- {
- "id": 4366,
- "name": "№4366 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "50.267986666666665",
- "latitude": "53.23574",
- "address": "Самара",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151003_084826.jpg",
- "trainings": 2
- },
- {
- "id": 4367,
- "name": "№4367 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.71123642",
- "latitude": "55.76970202",
- "address": "улица Крюковская 23",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151003_155128.jpg",
- "trainings": 1
- },
- {
- "id": 4368,
- "name": "№4368 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.35571700000003",
- "latitude": "55.643907",
- "address": "район Ново-Переделкино, Москва",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/5275.jpg",
- "trainings": 2
- },
- {
- "id": 4369,
- "name": "№4369 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.722185",
- "latitude": "55.68996",
- "address": "ул. Гурьянова, д. 15, школа №2028 (1085)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151003_154028.jpg",
- "trainings": 0
- },
- {
- "id": 4370,
- "name": "№4370 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.24962",
- "latitude": "60.557014",
- "address": "Первомайская ул., Сосново, Ленинградская область, Россия",
- "city_id": 127,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151004_130534.jpg",
- "trainings": 0
- },
- {
- "id": 4371,
- "name": "№4371 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.730468",
- "latitude": "47.203534",
- "address": "Гребной канал",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image9448.jpg",
- "trainings": 1
- },
- {
- "id": 4372,
- "name": "№4372 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.51696",
- "latitude": "50.459396",
- "address": "Андреевский спуск 34",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_3029.jpg",
- "trainings": 1
- },
- {
- "id": 4373,
- "name": "№4373 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.514725",
- "latitude": "50.45729",
- "address": "Десятинный переулок 7а",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_3034.jpg",
- "trainings": 0
- },
- {
- "id": 4374,
- "name": "№4374 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.51582099999996",
- "latitude": "50.456013",
- "address": "Большая Житомирская 8",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_3036.jpg",
- "trainings": 0
- },
- {
- "id": 4375,
- "name": "№4375 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.518200999999976",
- "latitude": "50.457309",
- "address": "Владимирская 5",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_3038.jpg",
- "trainings": 0
- },
- {
- "id": 4376,
- "name": "№4376 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.52334",
- "latitude": "50.461053",
- "address": "Игоревская 7",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_3069.jpg",
- "trainings": 0
- },
- {
- "id": 4377,
- "name": "№4377 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.524987",
- "latitude": "50.461813",
- "address": "Набережно-хрещатицкая 7",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_3070.jpg",
- "trainings": 0
- },
- {
- "id": 4378,
- "name": "№4378 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.521471",
- "latitude": "50.467271",
- "address": "сковороды 13/19",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_3071.jpg",
- "trainings": 0
- },
- {
- "id": 4379,
- "name": "№4379 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.519485",
- "latitude": "50.467634",
- "address": "Волошская 18/17",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_3072.jpg",
- "trainings": 0
- },
- {
- "id": 4380,
- "name": "№4380 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.518292",
- "latitude": "50.467014",
- "address": "Спасская 13",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_3075.jpg",
- "trainings": 1
- },
- {
- "id": 4381,
- "name": "№4381 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.515393",
- "latitude": "50.46759",
- "address": "межигорская 16",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_3076.jpg",
- "trainings": 4
- },
- {
- "id": 4382,
- "name": "№4382 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.519452",
- "latitude": "50.466076",
- "address": "Сковороды 5",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_3077.jpg",
- "trainings": 0
- },
- {
- "id": 4383,
- "name": "№4383 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "39.802641",
- "latitude": "47.237731",
- "address": "40-летия Победы, 13/7",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image7592.jpg",
- "trainings": 3
- },
- {
- "id": 4384,
- "name": "№4384 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.365144999999984",
- "latitude": "55.816093",
- "address": "Красногорский бульвар, д. 9",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_122087.JPG",
- "trainings": 1
- },
- {
- "id": 4385,
- "name": "№4385 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.340913",
- "latitude": "55.822664",
- "address": "Оптический пер, 3",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1232.JPG",
- "trainings": 0
- },
- {
- "id": 4386,
- "name": "№4386 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.339696",
- "latitude": "55.821345",
- "address": "Оптический пер., 2",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1231.JPG",
- "trainings": 0
- },
- {
- "id": 4387,
- "name": "№4387 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.672401",
- "latitude": "67.610736",
- "address": "г. Кировск, пос. Кукисвумчорр, ул. Советская, д.8",
- "city_id": 56,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151005_135023.JPG",
- "trainings": 0
- },
- {
- "id": 4392,
- "name": "№4392 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "49.613914",
- "latitude": "58.647777",
- "address": "ул. Свердлова 4",
- "city_id": 55,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMAG0349.jpg",
- "trainings": 0
- },
- {
- "id": 4393,
- "name": "№4393 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.247584",
- "latitude": "47.715503",
- "address": "пер. Енисейский 26",
- "city_id": 598,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/16099.jpg",
- "trainings": 1
- },
- {
- "id": 4403,
- "name": "№4403 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.541135",
- "latitude": "56.852446",
- "address": "тейково",
- "city_id": 44,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ZosccrDQe5s.jpg",
- "trainings": 0
- },
- {
- "id": 4407,
- "name": "№4407 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.382848",
- "latitude": "59.875634",
- "address": "Пражская 13",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/433543.jpg",
- "trainings": 1
- },
- {
- "id": 4409,
- "name": "№4409 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.83736552",
- "latitude": "55.73415873",
- "address": "ул. Реутовская, д. 16А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMAG1847.jpg",
- "trainings": 1
- },
- {
- "id": 4410,
- "name": "№4410 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.083530999999994",
- "latitude": "68.977406",
- "address": "Челюскинцев 14 (гимназия #3)",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/A4477BB6-C8BF-48A1-BAA4-3B0617D210C6.jpg",
- "trainings": 1
- },
- {
- "id": 4411,
- "name": "№4411 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-16.72437100000002",
- "latitude": "28.060315",
- "address": "Лос Кристианос",
- "city_id": 7529,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/0096.jpg",
- "trainings": 0
- },
- {
- "id": 4412,
- "name": "№4412 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "58.96524666666667",
- "latitude": "53.40307166666667",
- "address": "Suvorova ulitsa",
- "city_id": 563,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/E9A92398-11A5-476C-80B2-5FB075E32AF0.jpg",
- "trainings": 0
- },
- {
- "id": 4413,
- "name": "№4413 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.00694126000008",
- "latitude": "55.03077391",
- "address": "Лазурная 6",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151012_163752.jpg",
- "trainings": 0
- },
- {
- "id": 4423,
- "name": "№4423 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.61461626",
- "latitude": "55.85681846",
- "address": "Отрадная ул., 11Б, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151014_064341.jpg",
- "trainings": 4
- },
- {
- "id": 4440,
- "name": "№4440 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.672541",
- "latitude": "55.62757",
- "address": "Ереванская 20 к 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMAG0983.jpg",
- "trainings": 1
- },
- {
- "id": 4441,
- "name": "№4441 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.705428",
- "latitude": "55.778758",
- "address": "Семеновская наб. 3/1 к.5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1239.JPG",
- "trainings": 2
- },
- {
- "id": 4442,
- "name": "№4442 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.70260499999995",
- "latitude": "55.746995",
- "address": "улица Шепелюгинская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/33929499-2BDB-4F22-9D82-907875C920E7.jpg",
- "trainings": 0
- },
- {
- "id": 4444,
- "name": "№4444 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-16.26189899999997",
- "latitude": "28.465424",
- "address": "Проспект Асунсьон",
- "city_id": 7529,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_2710 — копия.JPG",
- "trainings": 0
- },
- {
- "id": 4445,
- "name": "№4445 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.360124",
- "latitude": "55.841578",
- "address": "Дубравная 41 к.3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20151016_131330_resized.jpg",
- "trainings": 4
- },
- {
- "id": 4446,
- "name": "№4446 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.81533695",
- "latitude": "55.70441871",
- "address": "Ташкентская ул., 14 корпус 2, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151017_110059.jpg",
- "trainings": 2
- },
- {
- "id": 4447,
- "name": "№4447 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.99344300000007",
- "latitude": "55.748408",
- "address": "Площадка в новых домах Чайка",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151017_135920.jpg",
- "trainings": 2
- },
- {
- "id": 4448,
- "name": "№4448 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.795402",
- "latitude": "55.820438",
- "address": "ул. Уральская 19 (Школа №319)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/mR7k0vTsdak.jpg",
- "trainings": 1
- },
- {
- "id": 4450,
- "name": "№4450 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.869392",
- "latitude": "55.749122",
- "address": "Турники рядом с детской площадкой",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151018_112605.jpg",
- "trainings": 0
- },
- {
- "id": 4451,
- "name": "№4451 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.5540167838335",
- "latitude": "55.87632574790004",
- "address": "Бескудниковский проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/AF1E81C3-21F7-4999-A514-EAD8D78889C8.jpg",
- "trainings": 1
- },
- {
- "id": 4452,
- "name": "№4452 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.463720634579662",
- "latitude": "59.86664149800414",
- "address": "Шелгунова, 6",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20151010_100803.jpg",
- "trainings": 0
- },
- {
- "id": 4459,
- "name": "№4459 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.548641",
- "latitude": "55.636778",
- "address": "миклухо-маклая 65",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20150125_1317277759.jpg",
- "trainings": 2
- },
- {
- "id": 4464,
- "name": "№4464 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.836667",
- "latitude": "55.325733",
- "address": "Мкр. Белые Столбы, ул. Авенариуса, д.1, Спортивный стадион",
- "city_id": 36,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image49.jpeg",
- "trainings": 1
- },
- {
- "id": 4466,
- "name": "№4466 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.669378",
- "latitude": "64.623018",
- "address": "Нефтебаза",
- "city_id": 6,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151016_152243.jpg",
- "trainings": 1
- },
- {
- "id": 4468,
- "name": "№4468 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.530421",
- "latitude": "64.564204",
- "address": "проезд Выборнова, 3",
- "city_id": 6,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151017_164547.jpg",
- "trainings": 4
- },
- {
- "id": 4470,
- "name": "№4470 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.41507",
- "latitude": "55.759253",
- "address": "Осенний бульвар д. 12 к. 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151018_1545401.jpg",
- "trainings": 2
- },
- {
- "id": 4471,
- "name": "№4471 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.708265",
- "latitude": "55.790052",
- "address": "Буженинова 28, с.2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_1249.JPG",
- "trainings": 0
- },
- {
- "id": 4472,
- "name": "№4472 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.710294",
- "latitude": "55.786358",
- "address": "Суворовская, 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1256.JPG",
- "trainings": 0
- },
- {
- "id": 4473,
- "name": "№4473 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.70199224352837",
- "latitude": "55.61795330091627",
- "address": "улица Шипиловская, д. 5, кор.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/A12357A7-44DE-4913-B557-C511D1C8669E.jpg",
- "trainings": 1
- },
- {
- "id": 4475,
- "name": "№4475 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.728645",
- "latitude": "55.61245333333333",
- "address": "Ореховый бульвар",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/3226F8EA-04A4-4333-AE28-8A65F5D026D9.jpg",
- "trainings": 1
- },
- {
- "id": 4476,
- "name": "№4476 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.70302",
- "latitude": "55.61848",
- "address": "улица Шипиловская, д. 5, корп. 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/0BDDFF88-F10B-4356-A40C-602E45FBF45C.jpg",
- "trainings": 1
- },
- {
- "id": 4477,
- "name": "№4477 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.70099166666667",
- "latitude": "55.6189",
- "address": "улица Маршала Захарова, д. 25, корп. 2, стр. 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ACFF4EFB-561E-4D95-B6AF-6215B4F375EE.jpg",
- "trainings": 2
- },
- {
- "id": 4478,
- "name": "№4478 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.69975333333333",
- "latitude": "55.619595",
- "address": "улица Маршала Захарова, д. 25",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/E945AEB0-EE42-40DD-824E-B4E70F543C81.jpg",
- "trainings": 3
- },
- {
- "id": 4479,
- "name": "№4479 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.69864666666667",
- "latitude": "55.61837",
- "address": "улица Маршала Захарова, д. 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/A8E05726-0829-4125-81F2-050ACEBC7FF0.jpg",
- "trainings": 0
- },
- {
- "id": 4480,
- "name": "№4480 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.724948935210705",
- "latitude": "55.539809282609525",
- "address": "Завидная, 4",
- "city_id": 15,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151025_131031-1.jpg",
- "trainings": 2
- },
- {
- "id": 4481,
- "name": "№4481 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.71294",
- "latitude": "55.788336",
- "address": "ул. 9 рота, д. 2/1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1261.JPG",
- "trainings": 0
- },
- {
- "id": 4482,
- "name": "№4482 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.716122",
- "latitude": "55.786017",
- "address": "ул. Малая Семеновская, д. 15/17, к.3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1263.JPG",
- "trainings": 1
- },
- {
- "id": 4484,
- "name": "№4484 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.711322",
- "latitude": "55.784076",
- "address": "Малая Семеновская, д. 12/2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1265.JPG",
- "trainings": 1
- },
- {
- "id": 4485,
- "name": "№4485 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.128888",
- "latitude": "51.656318",
- "address": " Воронеж, Южно-Моравская ул., 18",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/211020151872.jpg",
- "trainings": 3
- },
- {
- "id": 4499,
- "name": "№4499 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.474632",
- "latitude": "55.782978",
- "address": "ул. Маршала Тухачевского, д.33, с.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0160.JPG",
- "trainings": 3
- },
- {
- "id": 4500,
- "name": "№4500 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.354503",
- "latitude": "55.734577",
- "address": "Московская обл. с. Ромашково, улица советская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151028_201003_20151028201939611_20151028201955386.jpg",
- "trainings": 1
- },
- {
- "id": 4503,
- "name": "№4503 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.59195227175951",
- "latitude": "55.89459301543383",
- "address": "Шенкурский проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/A37331D9-04FE-4145-B7FA-13731DBFB51C.jpg",
- "trainings": 1
- },
- {
- "id": 4506,
- "name": "№4506 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.586715",
- "latitude": "54.187283",
- "address": "г. Тула, Центральный парк культуры и отдыха им. П.П. Белоусова, возле выезда из парка на ул. Первомайская",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151030_122756_1.jpg",
- "trainings": 4
- },
- {
- "id": 4507,
- "name": "№4507 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.584875",
- "latitude": "54.181507",
- "address": "г. Тула, Центральный парк культуры и отдыха им. П.П. Белоусова, спортивный городок",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151030_123507_1.jpg",
- "trainings": 4
- },
- {
- "id": 4508,
- "name": "№4508 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.432354",
- "latitude": "55.846708",
- "address": "ул. аэродромная 11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/IMG_2368_1500x1120.jpg",
- "trainings": 2
- },
- {
- "id": 4509,
- "name": "№4509 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.70045",
- "latitude": "55.61667166666667",
- "address": "улица Шипиловская, д. 6, корп. 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/B8BED653-B8C6-4958-BF38-583FBD2AB4BF.jpg",
- "trainings": 1
- },
- {
- "id": 4513,
- "name": "№4513 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.201512",
- "latitude": "56.14609",
- "address": "г.Кстово пер.Энергетиков 15",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/265.jpg",
- "trainings": 1
- },
- {
- "id": 4514,
- "name": "№4514 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.715312",
- "latitude": "55.769793",
- "address": "ул. Боровая, 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_1272.JPG",
- "trainings": 0
- },
- {
- "id": 4515,
- "name": "№4515 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.713334",
- "latitude": "55.771011",
- "address": "ул. Ухтомская, 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_1271.JPG",
- "trainings": 1
- },
- {
- "id": 4516,
- "name": "№4516 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.714755",
- "latitude": "55.767512",
- "address": "ул. Ухтомская, 20",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_1284.JPG",
- "trainings": 1
- },
- {
- "id": 4517,
- "name": "№4517 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.715518",
- "latitude": "55.766173",
- "address": "ул. Сторожевая, 25",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1286.JPG",
- "trainings": 1
- },
- {
- "id": 4519,
- "name": "№4519 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.711291",
- "latitude": "55.754469",
- "address": "ул. Лапина, 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1304.JPG",
- "trainings": 1
- },
- {
- "id": 4520,
- "name": "№4520 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.711749000000054",
- "latitude": "55.752622",
- "address": "Красноказарменная, 14А, с.10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_1314.JPG",
- "trainings": 0
- },
- {
- "id": 4521,
- "name": "№4521 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.325575",
- "latitude": "55.808004",
- "address": "ул. Заводская, 31",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_131790.JPG",
- "trainings": 0
- },
- {
- "id": 4522,
- "name": "№4522 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "53.269907",
- "latitude": "56.874546",
- "address": "Ворошилова, 58",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/-0093_1.jpg",
- "trainings": 0
- },
- {
- "id": 4532,
- "name": "№4532 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.616158",
- "latitude": "54.171314",
- "address": "г.Тула, Центральный р-н, ул. Демьянова, д. 26а Парк им. 250 летия Тульских оружейных заводов",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/148.jpg",
- "trainings": 8
- },
- {
- "id": 4535,
- "name": "№4535 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.784844",
- "latitude": "46.751197",
- "address": "улица Горького",
- "city_id": 481,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/nzfnv0Q.jpg",
- "trainings": 1
- },
- {
- "id": 4537,
- "name": "№4537 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.605291",
- "latitude": "54.171348",
- "address": "Территория стадиона \"Арсенал\"",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151105_123730_1.jpg",
- "trainings": 1
- },
- {
- "id": 4538,
- "name": "№4538 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.33971",
- "latitude": "45.187084",
- "address": "Евпатория, ул. Полупанова, 25",
- "city_id": 493,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20151104_134737.jpg",
- "trainings": 1
- },
- {
- "id": 4539,
- "name": "№4539 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.53618653",
- "latitude": "55.88870579",
- "address": "Софьи Ковалевской ул., 22 строение 1, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151105_152235.jpg",
- "trainings": 1
- },
- {
- "id": 4542,
- "name": "№4542 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.523145",
- "latitude": "52.613125",
- "address": "ул. Орджоникидзе",
- "city_id": 7809,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Np5_vY-28h0.jpg",
- "trainings": 0
- },
- {
- "id": 4543,
- "name": "№4543 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "33.850121",
- "latitude": "44.741694",
- "address": "Крым, Бахчисарай, Техническое училище",
- "city_id": 479,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151105_171102.jpg",
- "trainings": 0
- },
- {
- "id": 4544,
- "name": "№4544 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.531376",
- "latitude": "55.830366",
- "address": "ул. Большая Академическая д. 33",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/0056.jpg",
- "trainings": 6
- },
- {
- "id": 4546,
- "name": "№4546 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.622865000000004",
- "latitude": "47.229231666666664",
- "address": "ул. Ерёменко, 56Д, Ростов-на-Дону, Ростовская область, Россия",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151107_170513.jpg",
- "trainings": 3
- },
- {
- "id": 4548,
- "name": "№4548 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.999234",
- "latitude": "47.871283",
- "address": "тараса бульбы 10",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20151107_134924.jpg",
- "trainings": 0
- },
- {
- "id": 4553,
- "name": "№4553 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.34090060740709",
- "latitude": "59.835629606979076",
- "address": "московское шоссе",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151101_162501.jpg",
- "trainings": 2
- },
- {
- "id": 4558,
- "name": "№4558 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.329675",
- "latitude": "55.81704",
- "address": "ул. Жуковского, 6",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1336.JPG",
- "trainings": 0
- },
- {
- "id": 4559,
- "name": "№4559 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.324077",
- "latitude": "55.838195",
- "address": "ул. Речная, д. 37. с.2",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1321.JPG",
- "trainings": 2
- },
- {
- "id": 4560,
- "name": "№4560 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.324805",
- "latitude": "55.834683",
- "address": "Первомайская улица, 13",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1331.JPG",
- "trainings": 0
- },
- {
- "id": 4562,
- "name": "№4562 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.25391648709774",
- "latitude": "55.69237118660681",
- "address": "Одинцовский район, Одинцово",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/78111F6F-1911-41C5-A83B-1ACF33D8F8A6.jpg",
- "trainings": 1
- },
- {
- "id": 4563,
- "name": "№4563 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "45.893056",
- "latitude": "51.478631",
- "address": "Саратов парк им.Гагарина",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/yGkcMOLRUiY92.jpg",
- "trainings": 2
- },
- {
- "id": 4564,
- "name": "№4564 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.994282999999996",
- "latitude": "55.750626",
- "address": "Площадка во дворе дома",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151104_155249.jpg",
- "trainings": 1
- },
- {
- "id": 4565,
- "name": "№4565 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.06659400000001",
- "latitude": "55.364966",
- "address": "4-й мкр, дом 23, МСУ \"Теремок-2\"",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/0mPijA90k7w.jpg",
- "trainings": 4
- },
- {
- "id": 4566,
- "name": "№4566 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "46.115822",
- "latitude": "51.492064",
- "address": "Волоха 16",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/qeP5Aod0-W8.jpg",
- "trainings": 2
- },
- {
- "id": 4567,
- "name": "№4567 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "46.120115",
- "latitude": "51.493343",
- "address": "Волоха 12",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/pUt9P38JNA0.jpg",
- "trainings": 2
- },
- {
- "id": 4568,
- "name": "№4568 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "46.135043",
- "latitude": "51.491811",
- "address": "Рабочая 107",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/Sa9anzKW_WQ.jpg",
- "trainings": 1
- },
- {
- "id": 4569,
- "name": "№4569 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "46.119875",
- "latitude": "51.504136",
- "address": "Пл.Ленина 4",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/-Z_b27ShhiY.jpg",
- "trainings": 1
- },
- {
- "id": 4570,
- "name": "№4570 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "46.127998",
- "latitude": "51.483288",
- "address": "Тельмана 136",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/0-v1jFnIpTM.jpg",
- "trainings": 1
- },
- {
- "id": 4571,
- "name": "№4571 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.564445",
- "latitude": "55.891486",
- "address": "Керамический проезд, напротив дома 73к1 в парке",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0944-1.jpg",
- "trainings": 3
- },
- {
- "id": 4572,
- "name": "№4572 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.700897",
- "latitude": "55.771809",
- "address": "ул. Новая Дорога, д. 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1344.JPG",
- "trainings": 1
- },
- {
- "id": 4573,
- "name": "№4573 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.708822",
- "latitude": "55.773675",
- "address": "ул. Госпитальный Вал, д. 5. с.2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1350.JPG",
- "trainings": 1
- },
- {
- "id": 4574,
- "name": "№4574 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.70900400000005",
- "latitude": "55.776227",
- "address": "ул. Гольяновская, д. 3Ас4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_135665.JPG",
- "trainings": 2
- },
- {
- "id": 4575,
- "name": "№4575 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.707919",
- "latitude": "55.776413",
- "address": "ул. Гольяновская, д. 3Ас4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1360.JPG",
- "trainings": 2
- },
- {
- "id": 4576,
- "name": "№4576 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.67949186265469",
- "latitude": "55.7856816018562",
- "address": "улица 1-я Сокольническая",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/C0C22E18-512B-4CBA-A273-07ABF7C2C524.jpg",
- "trainings": 3
- },
- {
- "id": 4578,
- "name": "№4578 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "104.339776",
- "latitude": "52.256723",
- "address": "Байкальская, 247",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6Ia5XpX_9Oc.jpg",
- "trainings": 1
- },
- {
- "id": 4579,
- "name": "№4579 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "104.31459",
- "latitude": "52.276379",
- "address": "Карла Либкнехта, 131",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150609_144240.jpg",
- "trainings": 0
- },
- {
- "id": 4580,
- "name": "№4580 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.320058",
- "latitude": "52.277003",
- "address": "Депутатская, 15",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150811_111553.jpg",
- "trainings": 2
- },
- {
- "id": 4581,
- "name": "№4581 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "104.305018",
- "latitude": "52.286974",
- "address": "Байкальская, 198",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20150912_112402.jpg",
- "trainings": 1
- },
- {
- "id": 4582,
- "name": "№4582 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "104.27822000000003",
- "latitude": "52.271582",
- "address": "Остров Юность",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/fileYwdGtN.jpg",
- "trainings": 9
- },
- {
- "id": 4583,
- "name": "№4583 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "46.000644",
- "latitude": "51.520429",
- "address": "2-я Садовая 23",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/095.jpg",
- "trainings": 0
- },
- {
- "id": 4584,
- "name": "№4584 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "45.954335",
- "latitude": "51.500671",
- "address": "ул. Орджоникидзе 2",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/097.jpg",
- "trainings": 1
- },
- {
- "id": 4590,
- "name": "№4590 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.516645",
- "latitude": "57.87069",
- "address": "парк отдыха",
- "city_id": 801,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_0045-1.jpg",
- "trainings": 2
- },
- {
- "id": 4592,
- "name": "№4592 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.5752954185009",
- "latitude": "55.676738235735",
- "address": "ул.Кржижановского, 24/35, корп.6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151128_142328.jpg",
- "trainings": 9
- },
- {
- "id": 4593,
- "name": "№4593 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "44.17401",
- "latitude": "56.132885",
- "address": "Кстовская 1 Лесной массив",
- "city_id": 7922,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ 528.jpg",
- "trainings": 1
- },
- {
- "id": 4594,
- "name": "№4594 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "46.135136",
- "latitude": "51.475783",
- "address": "Ленинградская 5",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151123_092430.jpg",
- "trainings": 2
- },
- {
- "id": 4595,
- "name": "№4595 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "",
- "latitude": "",
- "address": "ек",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151117_160228.jpg",
- "trainings": 0
- },
- {
- "id": 4596,
- "name": "№4596 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.59516400000007",
- "latitude": "55.903149",
- "address": "Лескова 3а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/image95.jpeg",
- "trainings": 7
- },
- {
- "id": 4597,
- "name": "№4597 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "46.117859",
- "latitude": "51.499965",
- "address": "Горького 13",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151124_150627.jpg",
- "trainings": 1
- },
- {
- "id": 4598,
- "name": "№4598 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "46.122562",
- "latitude": "51.491124",
- "address": "Маяковского 48",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/dk1fKVNbbCs.jpg",
- "trainings": 1
- },
- {
- "id": 4599,
- "name": "№4599 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.447054",
- "latitude": "55.783682",
- "address": "Набережная Новикова-Прибоя, д.3, к.2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1373.JPG",
- "trainings": 3
- },
- {
- "id": 4600,
- "name": "№4600 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.447196",
- "latitude": "55.786716",
- "address": "Набережная Новикова-Прибоя, д.7, к.2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1378.JPG",
- "trainings": 1
- },
- {
- "id": 4601,
- "name": "№4601 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.447082",
- "latitude": "55.792452",
- "address": "ул. Живописная, д. 21, с. 22",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_1381.JPG",
- "trainings": 6
- },
- {
- "id": 4602,
- "name": "№4602 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.421941",
- "latitude": "55.773514",
- "address": "проспект Маршала Жукова, Живописный мост",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/IMG_1384.JPG",
- "trainings": 6
- },
- {
- "id": 4603,
- "name": "№4603 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.332061",
- "latitude": "55.822025",
- "address": "ул. Школьная, 11А",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1370.JPG",
- "trainings": 0
- },
- {
- "id": 4604,
- "name": "№4604 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.332562",
- "latitude": "55.823489",
- "address": "ул. Пионерская, 17",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1372.JPG",
- "trainings": 0
- },
- {
- "id": 4605,
- "name": "№4605 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.335597",
- "latitude": "55.82258",
- "address": "ул. Октябрьская, 4",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1365.JPG",
- "trainings": 0
- },
- {
- "id": 4606,
- "name": "№4606 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.52983968704939",
- "latitude": "55.68422103507218",
- "address": "ул. Крупской 8к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151128_141218.jpg",
- "trainings": 1
- },
- {
- "id": 4607,
- "name": "№4607 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.76974",
- "latitude": "55.827002",
- "address": "ул. Открытое шоссе, 28к6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20141027_141121.jpg",
- "trainings": 2
- },
- {
- "id": 4608,
- "name": "№4608 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.523922",
- "latitude": "55.805253",
- "address": "Ул. Усиевича 23",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151130_094437.jpg",
- "trainings": 0
- },
- {
- "id": 4609,
- "name": "№4609 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.76227321475744",
- "latitude": "55.82541598981226",
- "address": "ул. Открытое шоссе, 26к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151130_154520.jpg",
- "trainings": 0
- },
- {
- "id": 4610,
- "name": "№4610 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.486057",
- "latitude": "50.37715",
- "address": "21 Павильон ВДНХ",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/15015.jpg",
- "trainings": 1
- },
- {
- "id": 4611,
- "name": "№4611 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "46.11637",
- "latitude": "51.46741",
- "address": "1 микрорайон Урицкого 5",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/M56VVK0QBog.jpg",
- "trainings": 1
- },
- {
- "id": 4612,
- "name": "№4612 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.656397",
- "latitude": "46.838046",
- "address": "1 ая Каховская",
- "city_id": 7926,
- "country_id": 15,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1201151119a.jpg",
- "trainings": 1
- },
- {
- "id": 4614,
- "name": "№4614 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.03610229492188",
- "latitude": "56.51122283935547",
- "address": "Россия, Томская область, Томск, 112, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150922-[155933].jpg",
- "trainings": 0
- },
- {
- "id": 4615,
- "name": "№4615 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02972412109375",
- "latitude": "56.519901275634766",
- "address": "Россия, Томская область, Томск, 24, ул. Беринга",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150918-[121447].jpg",
- "trainings": 0
- },
- {
- "id": 4616,
- "name": "№4616 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02385711669922",
- "latitude": "56.522682189941406",
- "address": "Россия, Томская область, Томск, 26, ул. Междугородная",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150918-[121923].jpg",
- "trainings": 0
- },
- {
- "id": 4617,
- "name": "№4617 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02323913574219",
- "latitude": "56.52314376831055",
- "address": "Россия, Томская область, Томск, 20, ул. Междугородная",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150918-[122031].jpg",
- "trainings": 0
- },
- {
- "id": 4618,
- "name": "№4618 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.03437042236328",
- "latitude": "56.51327133178711",
- "address": "Россия, Томская область, Томск, 101А, ул. Ивана Черных",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150922-[160424].jpg",
- "trainings": 0
- },
- {
- "id": 4619,
- "name": "№4619 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.00826263427734",
- "latitude": "56.50587463378906",
- "address": "Россия, Томская область, Томск, 8/1, ул. Мичурина",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151009-[140458].jpg",
- "trainings": 0
- },
- {
- "id": 4620,
- "name": "№4620 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.00948333740234",
- "latitude": "56.5075798034668",
- "address": "Россия, Томская область, Томск, 17, 2-я Рабочая ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151009-[142333].jpg",
- "trainings": 0
- },
- {
- "id": 4621,
- "name": "№4621 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.00841522216797",
- "latitude": "56.50813293457031",
- "address": "Россия, Томская область, Томск, 17, 2-я Рабочая ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151009-[142002].jpg",
- "trainings": 0
- },
- {
- "id": 4622,
- "name": "№4622 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.01919555664063",
- "latitude": "56.51075744628906",
- "address": "Россия, Томская область, Томск, 28, ул. Ивана Черных",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20151009-[144116].jpg",
- "trainings": 0
- },
- {
- "id": 4623,
- "name": "№4623 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.01419830322266",
- "latitude": "56.509117126464844",
- "address": "Россия, Томская область, Томск, 33, Новосибирская ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151009-[143418].jpg",
- "trainings": 0
- },
- {
- "id": 4624,
- "name": "№4624 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.00698852539063",
- "latitude": "56.50577926635742",
- "address": "Россия, Томская область, Томск, 11, 2-я Рабочая ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151009-[140202].jpg",
- "trainings": 0
- },
- {
- "id": 4626,
- "name": "№4626 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.01499938964844",
- "latitude": "56.50567626953125",
- "address": "Россия, Томская область, Томск, 13, пер. Карский",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151010-[153248].jpg",
- "trainings": 0
- },
- {
- "id": 4627,
- "name": "№4627 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.03265380859375",
- "latitude": "56.52745819091797",
- "address": "Россия, Томская область, Томск, 4А, Центральная ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150918-[135239].jpg",
- "trainings": 0
- },
- {
- "id": 4628,
- "name": "№4628 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.03203582763672",
- "latitude": "56.526100158691406",
- "address": "Россия, Томская область, Томск, 9, ул. Александра Невского",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150918-[135829].jpg",
- "trainings": 0
- },
- {
- "id": 4629,
- "name": "№4629 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.054849",
- "latitude": "56.509028",
- "address": "Томская область, Томск (ваааще в лесу :)",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151003-[160740].jpg",
- "trainings": 1
- },
- {
- "id": 4630,
- "name": "№4630 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.00743103027344",
- "latitude": "56.506813049316406",
- "address": "Россия, Томская область, Томск, 13, 2-я Рабочая ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151009-[141004].jpg",
- "trainings": 0
- },
- {
- "id": 4631,
- "name": "№4631 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.00789642333984",
- "latitude": "56.50751495361328",
- "address": "Россия, Томская область, Томск, 15, 2-я Рабочая ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151009-[141645].jpg",
- "trainings": 0
- },
- {
- "id": 4632,
- "name": "№4632 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.00768280029297",
- "latitude": "56.50685119628906",
- "address": "Россия, Томская область, Томск, 13, 2-я Рабочая ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151009-[140844].jpg",
- "trainings": 0
- },
- {
- "id": 4633,
- "name": "№4633 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.00824737548828",
- "latitude": "56.50694274902344",
- "address": "Россия, Томская область, Томск, 13, 2-я Рабочая ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151009-[141205].jpg",
- "trainings": 0
- },
- {
- "id": 4634,
- "name": "№4634 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02587127685547",
- "latitude": "56.52305221557617",
- "address": "Россия, Томская область, Томск, 26, ул. Междугородная",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150910-[125301].jpg",
- "trainings": 0
- },
- {
- "id": 4635,
- "name": "№4635 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.98030853271484",
- "latitude": "56.463035583496094",
- "address": "Россия, Томская область, Томск, 3, ул. Артема",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[140703].jpg",
- "trainings": 0
- },
- {
- "id": 4636,
- "name": "№4636 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.983642578125",
- "latitude": "56.4631233215332",
- "address": "Россия, Томская область, Томск, 53/6, Кирова просп.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[141701].jpg",
- "trainings": 0
- },
- {
- "id": 4637,
- "name": "№4637 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.9842529296875",
- "latitude": "56.46363830566406",
- "address": "Россия, Томская область, Томск, 57, Кирова просп.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150911-[141925].jpg",
- "trainings": 0
- },
- {
- "id": 4638,
- "name": "№4638 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.03820037841797",
- "latitude": "56.51445388793945",
- "address": "Россия, Томская область, Томск, 3/2, ул. Беринга",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[144201].jpg",
- "trainings": 0
- },
- {
- "id": 4639,
- "name": "№4639 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.05550384521484",
- "latitude": "56.516387939453125",
- "address": "Россия, Томская область, Томск, 152, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[153305].jpg",
- "trainings": 0
- },
- {
- "id": 4640,
- "name": "№4640 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.0559310913086",
- "latitude": "56.51728439331055",
- "address": "Россия, Томская область, Томск, 4, ул. Бела Куна",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[153645].jpg",
- "trainings": 0
- },
- {
- "id": 4641,
- "name": "№4641 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.06501007080078",
- "latitude": "56.51970291137695",
- "address": "Россия, Томская область, Томск, 176, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[154912].jpg",
- "trainings": 0
- },
- {
- "id": 4642,
- "name": "№4642 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.06177520751953",
- "latitude": "56.51853942871094",
- "address": "Россия, Томская область, Томск, 160, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[155351].jpg",
- "trainings": 0
- },
- {
- "id": 4643,
- "name": "№4643 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.05418395996094",
- "latitude": "56.51756286621094",
- "address": "Россия, Томская область, Томск, 8, ул. Бела Куна",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[160630].jpg",
- "trainings": 0
- },
- {
- "id": 4644,
- "name": "№4644 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.05378723144531",
- "latitude": "56.51703643798828",
- "address": "Россия, Томская область, Томск, 8/1, ул. Бела Куна",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[161033].jpg",
- "trainings": 0
- },
- {
- "id": 4645,
- "name": "№4645 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.0517807006836",
- "latitude": "56.51777648925781",
- "address": "Россия, Томская область, Томск, 12, ул. Бела Куна",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[161324].jpg",
- "trainings": 0
- },
- {
- "id": 4646,
- "name": "№4646 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.05044555664063",
- "latitude": "56.51813507080078",
- "address": "Россия, Томская область, Томск, 16, ул. Бела Куна",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[161620].jpg",
- "trainings": 0
- },
- {
- "id": 4647,
- "name": "№4647 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.04523468017578",
- "latitude": "56.51478958129883",
- "address": "Россия, Томская область, Томск, 2А, ул. Лазарева",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[162348].jpg",
- "trainings": 0
- },
- {
- "id": 4648,
- "name": "№4648 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.0450439453125",
- "latitude": "56.51390075683594",
- "address": "Россия, Томская область, Томск, 126, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[162618].jpg",
- "trainings": 0
- },
- {
- "id": 4649,
- "name": "№4649 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.04120635986328",
- "latitude": "56.51388931274414",
- "address": "Россия, Томская область, Томск, 1/5, ул. Беринга",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[163154].jpg",
- "trainings": 0
- },
- {
- "id": 4650,
- "name": "№4650 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.03933715820313",
- "latitude": "56.5129508972168",
- "address": "Россия, Томская область, Томск, 1/1, ул. Беринга",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[163542].jpg",
- "trainings": 0
- },
- {
- "id": 4651,
- "name": "№4651 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.99118041992188",
- "latitude": "56.50094985961914",
- "address": "Россия, Томская область, Томск, 52В, ул. Пушкина",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150708-[201515].jpg",
- "trainings": 0
- },
- {
- "id": 4652,
- "name": "№4652 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.99038696289063",
- "latitude": "56.50244903564453",
- "address": "Россия, Томская область, Томск, 5-7, ул. Железнодорожная",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150708-[202505].jpg",
- "trainings": 0
- },
- {
- "id": 4653,
- "name": "№4653 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.9921875",
- "latitude": "56.5038948059082",
- "address": "Россия, Томская область, Томск, 60, ул. Железнодорожная",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150708-[203639].jpg",
- "trainings": 0
- },
- {
- "id": 4654,
- "name": "№4654 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.99063873291016",
- "latitude": "56.503173828125",
- "address": "Россия, Томская область, Томск, 41, ул. Вокзальная",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150708-[204352].jpg",
- "trainings": 0
- },
- {
- "id": 4655,
- "name": "№4655 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.9762191772461",
- "latitude": "56.468631744384766",
- "address": "Россия, Томская область, Томск, 43/72, ул. Карташова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150711-[122520].jpg",
- "trainings": 0
- },
- {
- "id": 4656,
- "name": "№4656 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.9782943725586",
- "latitude": "56.469390869140625",
- "address": "Россия, Томская область, Томск, 19/2, Енисейская ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150711-[123736].jpg",
- "trainings": 0
- },
- {
- "id": 4657,
- "name": "№4657 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97954559326172",
- "latitude": "56.49705505371094",
- "address": "Россия, Томская область, Томск, 25, Партизанская ул.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150711-[130752].jpg",
- "trainings": 0
- },
- {
- "id": 4658,
- "name": "№4658 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.01336669921875",
- "latitude": "56.50336837768555",
- "address": "Россия, Томская область, Томск, 37/1, ул. Иркутский тракт",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150713-[091135].jpg",
- "trainings": 0
- },
- {
- "id": 4659,
- "name": "№4659 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.98605346679688",
- "latitude": "56.50139236450195",
- "address": "Россия, Томская область, Томск, 21, ул. Вокзальная",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150708-[205045].jpg",
- "trainings": 0
- },
- {
- "id": 4660,
- "name": "№4660 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.9864501953125",
- "latitude": "56.501922607421875",
- "address": "Россия, Томская область, Томск, 23, ул. Вокзальная",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150708-[205240].jpg",
- "trainings": 0
- },
- {
- "id": 4661,
- "name": "№4661 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.98748016357422",
- "latitude": "56.50211715698242",
- "address": "Россия, Томская область, Томск, 25, ул. Вокзальная",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150708-[205500].jpg",
- "trainings": 0
- },
- {
- "id": 4662,
- "name": "№4662 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.98811340332031",
- "latitude": "56.50113296508789",
- "address": "Россия, Томская область, Томск, 1, ул. Железнодорожная",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150708-[205933].jpg",
- "trainings": 0
- },
- {
- "id": 4663,
- "name": "№4663 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.98714447021484",
- "latitude": "56.50057601928711",
- "address": "Россия, Томская область, Томск, 52, ул. Пушкина",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150708-[210212].jpg",
- "trainings": 0
- },
- {
- "id": 4664,
- "name": "№4664 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97895050048828",
- "latitude": "56.469322204589844",
- "address": "Россия, Томская область, Томск, 68/1, ул. Карташова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150711-[123910].jpg",
- "trainings": 0
- },
- {
- "id": 4665,
- "name": "№4665 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97430419921875",
- "latitude": "56.46866989135742",
- "address": "Россия, Томская область, Томск, 39, ул. Карташова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150704-[125151].jpg",
- "trainings": 1
- },
- {
- "id": 4666,
- "name": "№4666 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.0430908203125",
- "latitude": "56.515846252441406",
- "address": "Россия, Томская область, Томск, 6Б, ул. Лазарева",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[145137].jpg",
- "trainings": 0
- },
- {
- "id": 4667,
- "name": "№4667 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.0497817993164",
- "latitude": "56.51752853393555",
- "address": "Россия, Томская область, Томск, 18, ул. Бела Куна",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[150714].jpg",
- "trainings": 0
- },
- {
- "id": 4668,
- "name": "№4668 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.04586791992188",
- "latitude": "56.5164680480957",
- "address": "Россия, Томская область, Томск, 7, ул. Лазарева",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150705-[150010].jpg",
- "trainings": 0
- },
- {
- "id": 4669,
- "name": "№4669 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.99240112304688",
- "latitude": "56.50215530395508",
- "address": "Россия, Томская область, Томск, 54А, ул. Пушкина",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150708-[203040].jpg",
- "trainings": 0
- },
- {
- "id": 4670,
- "name": "№4670 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.97938537597656",
- "latitude": "56.46892166137695",
- "address": "Россия, Томская область, Томск, 68, ул. Карташова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150711-[123013].jpg",
- "trainings": 1
- },
- {
- "id": 4671,
- "name": "№4671 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.045325",
- "latitude": "56.516431",
- "address": "Россия, Томская область, Томск, 7, ул. Лазарева",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20150705-[145806].jpg",
- "trainings": 0
- },
- {
- "id": 4672,
- "name": "№4672 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.975278",
- "latitude": "56.468569",
- "address": "Россия, Томская область, Томск, 41/101, ул. Карташова",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150711-[122110].jpg",
- "trainings": 0
- },
- {
- "id": 4673,
- "name": "№4673 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.71759666666662",
- "latitude": "55.73414666666667",
- "address": "улица Верхняя Хохловка",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/80043555-3562-4D83-8C96-B025101C080B.jpg",
- "trainings": 0
- },
- {
- "id": 4674,
- "name": "№4674 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.701065205037594",
- "latitude": "55.73836336303845",
- "address": "улица Рогожский Поселок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6E368000-1608-46A0-863B-19E83C0E1CE6.jpg",
- "trainings": 1
- },
- {
- "id": 4677,
- "name": "№4677 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.756418",
- "latitude": "55.824693",
- "address": "ул. Открытое шоссе, 21к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151202_144652.jpg",
- "trainings": 4
- },
- {
- "id": 4679,
- "name": "№4679 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.042946",
- "latitude": "56.52078",
- "address": "Россия, Томская область, Томск, 26/3, ул. Сергея Лазо",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150625-[202620].jpg",
- "trainings": 0
- },
- {
- "id": 4686,
- "name": "№4686 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.04959800000006",
- "latitude": "55.379811",
- "address": "ул. 9-го января, дом 69",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151206_143728.jpg",
- "trainings": 2
- },
- {
- "id": 4688,
- "name": "№4688 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.013102",
- "latitude": "56.482397",
- "address": "Россия, Томская область, Томск, 116, ул. Сибирская",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20151206-[063029].jpg",
- "trainings": 0
- },
- {
- "id": 4689,
- "name": "№4689 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "46.131384",
- "latitude": "51.47888",
- "address": "Энгельс строительная 32",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151207_122904.jpg",
- "trainings": 1
- },
- {
- "id": 4692,
- "name": "№4692 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.328319",
- "latitude": "55.827944",
- "address": "стадион Зоркий",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1409.JPG",
- "trainings": 0
- },
- {
- "id": 4693,
- "name": "№4693 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.32828089999998",
- "latitude": "55.8297269",
- "address": "ул. Пионерская, 33",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1413.JPG",
- "trainings": 0
- },
- {
- "id": 4697,
- "name": "№4697 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "74.57436903439338",
- "latitude": "42.87070372482056",
- "address": "Молодой Гвардии бульвар, 8 (СШ №8)",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/W_1kDTiV0fk.jpg",
- "trainings": 1
- },
- {
- "id": 4698,
- "name": "№4698 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "74.620589",
- "latitude": "42.83258",
- "address": "7 микрорайон, 40",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/SoMsEt6SFLg.jpg",
- "trainings": 0
- },
- {
- "id": 4699,
- "name": "№4699 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.465044",
- "latitude": "59.72762",
- "address": "Санкт-Петербург, п. Шушары (п. Детскосельский), ул. Центральная, д. 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC04679.JPG",
- "trainings": 4
- },
- {
- "id": 4700,
- "name": "№4700 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.210088",
- "latitude": "54.858323",
- "address": "Стадион Протва ",
- "city_id": 7401,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/iioHObrNDWw.jpg",
- "trainings": 3
- },
- {
- "id": 4704,
- "name": "№4704 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "85.02899932861328",
- "latitude": "56.517704010009766",
- "address": "Россия, Томская область, Томск, 14/2, ул. Сергея Лазо",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20151209-[151728].jpg",
- "trainings": 0
- },
- {
- "id": 4720,
- "name": "№4720 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.315478",
- "latitude": "55.175947",
- "address": "Челябинск, 40 лет Победы, 57",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/1.2015-12-12 12-56-13.JPG",
- "trainings": 2
- },
- {
- "id": 4721,
- "name": "№4721 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.470287",
- "latitude": "55.779845",
- "address": "б-р Генерала Карбышева, д.12",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_0163.JPG",
- "trainings": 3
- },
- {
- "id": 4724,
- "name": "№4724 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "46.134906",
- "latitude": "51.48221",
- "address": "148 Черниговской дивизии 4а",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151216_140246.jpg",
- "trainings": 1
- },
- {
- "id": 4725,
- "name": "№4725 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.80636666666669",
- "latitude": "55.8055",
- "address": "улица 11-я Парковая",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/922C9B16-E589-4A12-BE5F-7B50C7B464E3.jpg",
- "trainings": 2
- },
- {
- "id": 4726,
- "name": "№4726 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "32.004139",
- "latitude": "46.971603",
- "address": "Пролетарский сквер ",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/7QfxpEOBTMs.jpg",
- "trainings": 3
- },
- {
- "id": 4727,
- "name": "№4727 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.355538",
- "latitude": "56.13383",
- "address": "худо",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2015-12-15 19-29-57.JPG",
- "trainings": 0
- },
- {
- "id": 4728,
- "name": "№4728 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.322459",
- "latitude": "59.887383",
- "address": "Московский проспект, 136к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0539.JPG",
- "trainings": 4
- },
- {
- "id": 4729,
- "name": "№4729 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.80520100000001",
- "latitude": "55.80722",
- "address": "11-я Парковая ул., 50",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/12004835_906794466067344_2016273455611863571_n.jpg",
- "trainings": 3
- },
- {
- "id": 4730,
- "name": "№4730 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.48478159308434",
- "latitude": "55.8570484171219",
- "address": "улица Фестивальная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/21333F0E-0EEF-4F1C-AE54-7882ACEAE38E.jpg",
- "trainings": 0
- },
- {
- "id": 4731,
- "name": "№4731 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.48569166666667",
- "latitude": "55.86607",
- "address": "улица Лавочкина",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/1EF51E21-8A83-4B4C-ACF7-7860B9800689.jpg",
- "trainings": 7
- },
- {
- "id": 4732,
- "name": "№4732 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.86679000000004",
- "latitude": "55.750993",
- "address": "Площадка для сдачи нормативов ГТО",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 9,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151226_135831.jpg",
- "trainings": 5
- },
- {
- "id": 4734,
- "name": "№4734 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.696626",
- "latitude": "55.772461",
- "address": "Госпитальная наб., Спорткомплекс МГТУ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20151228_151510.jpg",
- "trainings": 2
- },
- {
- "id": 4735,
- "name": "№4735 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.698493",
- "latitude": "55.773366",
- "address": "Госпитальная наб, 4., Спорткомплекс МГТУ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20151228_152215.jpg",
- "trainings": 1
- },
- {
- "id": 4736,
- "name": "№4736 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.734985",
- "latitude": "44.462915",
- "address": "ул. Спорта, парк Юность.",
- "city_id": 4817,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151229_134827.jpg",
- "trainings": 0
- },
- {
- "id": 4737,
- "name": "№4737 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.980505",
- "latitude": "55.803991",
- "address": "Чехова 10",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151211_135959.jpg",
- "trainings": 0
- },
- {
- "id": 4739,
- "name": "№4739 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.424704",
- "latitude": "59.716829",
- "address": "Санкт-Петербург, Пушкин, Софийский бульвар, д. 9",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC05221.JPG",
- "trainings": 0
- },
- {
- "id": 4740,
- "name": "№4740 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.415566",
- "latitude": "59.718298",
- "address": "Санкт-Петербург, Пушкин, ул. Госпитальная, д. 24 литер \"А\"",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC05214.JPG",
- "trainings": 0
- },
- {
- "id": 4742,
- "name": "№4742 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.411813",
- "latitude": "60.04042",
- "address": "Санкт-Петербург, проспект Просвещения, д. 80 К 2, лит ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC0523571.JPG",
- "trainings": 1
- },
- {
- "id": 4743,
- "name": "№4743 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.405108",
- "latitude": "60.040702",
- "address": "Санкт-Петербург, ул. Брянцева, д. 24",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC05241.JPG",
- "trainings": 1
- },
- {
- "id": 4744,
- "name": "№4744 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.41098",
- "latitude": "60.040104",
- "address": "Санкт-Петербург, ул. Ушинского, д. 16",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC05237.JPG",
- "trainings": 0
- },
- {
- "id": 4745,
- "name": "№4745 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "106.691907",
- "latitude": "10.775247",
- "address": "Хошимин",
- "city_id": 7932,
- "country_id": 33,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151225_185545.jpg",
- "trainings": 0
- },
- {
- "id": 4746,
- "name": "№4746 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.076629",
- "latitude": "48.513728",
- "address": "Артековская 26а",
- "city_id": 491,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160106_105734.jpg",
- "trainings": 1
- },
- {
- "id": 4747,
- "name": "№4747 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.486045",
- "latitude": "56.004267",
- "address": "ул. 40 лет Октября 2",
- "city_id": 73,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_000467.jpg",
- "trainings": 1
- },
- {
- "id": 4748,
- "name": "№4748 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "44.47829559445381",
- "latitude": "40.20565364336431",
- "address": "ул. Маргарян, парк Буэнос-Айрес",
- "city_id": 366,
- "country_id": 3,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160108_125919.jpg",
- "trainings": 1
- },
- {
- "id": 4749,
- "name": "№4749 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.555236000000036",
- "latitude": "56.869561",
- "address": "Пехотинцев 7",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/ 747.jpg",
- "trainings": 1
- },
- {
- "id": 4750,
- "name": "№4750 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "32.038901",
- "latitude": "54.782134",
- "address": "Лопатенский сад ",
- "city_id": 124,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6729.jpg",
- "trainings": 5
- },
- {
- "id": 4752,
- "name": "№4752 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.980456",
- "latitude": "56.474612",
- "address": "Россия, Томская область, Томск, 55/5, Комсомольский просп.",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160111-[144259].jpg",
- "trainings": 0
- },
- {
- "id": 4753,
- "name": "№4753 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.644432999999935",
- "latitude": "55.763655",
- "address": "м. Чистые пруды, Большой Харитоньевский пер., 4с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 13,
- "preview": "https://workout.su/uploads/userfiles/image96.jpeg",
- "trainings": 4
- },
- {
- "id": 4754,
- "name": "№4754 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.711686",
- "latitude": "54.61902",
- "address": "Рязань 2 линия 46",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160115_142128.jpg",
- "trainings": 0
- },
- {
- "id": 4757,
- "name": "№4757 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.9950597284302",
- "latitude": "55.41396136353274",
- "address": "Егорьевский район,Московсая область,поселок Новый,дом 17",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160117_153121.jpg",
- "trainings": 1
- },
- {
- "id": 4758,
- "name": "№4758 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.737803",
- "latitude": "55.787353",
- "address": "ул. Борисовская, 8А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160119_141701.jpg",
- "trainings": 0
- },
- {
- "id": 4759,
- "name": "№4759 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.733502",
- "latitude": "55.790247",
- "address": "ул. Лечебная, д. 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160119_142342.jpg",
- "trainings": 0
- },
- {
- "id": 4760,
- "name": "№4760 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.734253",
- "latitude": "55.792648",
- "address": "ул. Мироновская, 46с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160119_142746.jpg",
- "trainings": 0
- },
- {
- "id": 4761,
- "name": "№4761 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.824034",
- "latitude": "43.279635",
- "address": "Алгабас микрорайон, 62",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG-20160122-WA0002.jpeg",
- "trainings": 1
- },
- {
- "id": 4762,
- "name": "№4762 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.73844699999995",
- "latitude": "32.013646",
- "address": "derech Ben Gurion, 10",
- "city_id": 766,
- "country_id": 9,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-09-21-10-08-dhw.jpg",
- "trainings": 1
- },
- {
- "id": 4763,
- "name": "№4763 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.73762999999997",
- "latitude": "32.01499",
- "address": "Набережная",
- "city_id": 766,
- "country_id": 9,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Image 3765.jpg",
- "trainings": 1
- },
- {
- "id": 4764,
- "name": "№4764 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "53.641858",
- "latitude": "63.572411",
- "address": "Проспект Ленина д.77",
- "city_id": 596,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160122_204302.jpg",
- "trainings": 0
- },
- {
- "id": 4765,
- "name": "№4765 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.561325",
- "latitude": "55.747758",
- "address": "Кутузовский проспект, 11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P_20160125_14493518.jpg",
- "trainings": 1
- },
- {
- "id": 4766,
- "name": "№4766 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.712944",
- "latitude": "55.78273",
- "address": "Семеновский пер., 18А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P_20160125_154510.jpg",
- "trainings": 1
- },
- {
- "id": 4767,
- "name": "№4767 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "64.04271843995957",
- "latitude": "67.49437999837323",
- "address": "ул. Парковая, Городской парк",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/WP_20160126_00480.jpg",
- "trainings": 1
- },
- {
- "id": 4768,
- "name": "№4768 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "64.046365",
- "latitude": "67.506834",
- "address": "Республика Коми, г. Воркута, ул. Димитрова, д. 9",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-06-23-01-20-f9r.jpg",
- "trainings": 1
- },
- {
- "id": 4769,
- "name": "№4769 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "64.061316",
- "latitude": "67.50414",
- "address": "Республика Коми, г. Воркута, пл. Центральная",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/WP_20160127_008.jpg",
- "trainings": 1
- },
- {
- "id": 4770,
- "name": "№4770 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "64.07218",
- "latitude": "67.506404",
- "address": "Республика Коми, г. Воркута, ул. Возейская, д. 8",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/WP_20160127_014.jpg",
- "trainings": 1
- },
- {
- "id": 4771,
- "name": "№4771 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.897854",
- "latitude": "43.46566",
- "address": "ул. Ленина, 219",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20151221_133508.jpg",
- "trainings": 1
- },
- {
- "id": 4773,
- "name": "№4773 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.729744",
- "latitude": "55.781672",
- "address": "ул. Щербаковская, д. 32/7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P_20160128_110442.jpg",
- "trainings": 2
- },
- {
- "id": 4774,
- "name": "№4774 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.606023",
- "latitude": "55.68205",
- "address": "нагорная 12 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2016128143816.jpg",
- "trainings": 1
- },
- {
- "id": 4776,
- "name": "№4776 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.49540531635284",
- "latitude": "52.0718798621819",
- "address": "микрорайон Северный",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/P_20160129_140314.jpg",
- "trainings": 0
- },
- {
- "id": 4778,
- "name": "№4778 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.531113000000005",
- "latitude": "55.826985",
- "address": "Большая Академическая, 26",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/IMG_0896.JPG",
- "trainings": 3
- },
- {
- "id": 4779,
- "name": "№4779 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.910589",
- "latitude": "59.871956",
- "address": "Эрлеровский бульвар, д. 14",
- "city_id": 101,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/V__D6E0.JPG",
- "trainings": 0
- },
- {
- "id": 4780,
- "name": "№4780 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.808837",
- "latitude": "56.847519",
- "address": "50 лет октября 20Б",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/qx5sry490nm_550x395_c44.jpg",
- "trainings": 0
- },
- {
- "id": 4781,
- "name": "№4781 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.863189",
- "latitude": "56.826025",
- "address": "дружинная, 6",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/img-4145_550x395_c44.jpg",
- "trainings": 0
- },
- {
- "id": 4782,
- "name": "№4782 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.916608",
- "latitude": "56.83841",
- "address": "Склизкова, 52а (Возле ПМЦ) ",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/d-r75t0j2ei_550x395_c44.jpg",
- "trainings": 0
- },
- {
- "id": 4783,
- "name": "№4783 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.905198",
- "latitude": "56.828725",
- "address": "Королева (Южный парк)",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/img-4110_550x395_c44.jpg",
- "trainings": 4
- },
- {
- "id": 4784,
- "name": "№4784 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.334362",
- "latitude": "56.263805",
- "address": "Советская площадь (В парке за памятником Ленину)",
- "city_id": 793,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/9955.jpg",
- "trainings": 0
- },
- {
- "id": 4785,
- "name": "№4785 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.958228",
- "latitude": "56.863631",
- "address": "Академика Туполева, д.105 (ДК \"Затверецкий)",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/tpTsQbi4HMA.jpg",
- "trainings": 0
- },
- {
- "id": 4786,
- "name": "№4786 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.917596",
- "latitude": "56.858721",
- "address": "Бобачевская роща (мкр Чайка)",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/7668.jpg",
- "trainings": 3
- },
- {
- "id": 4787,
- "name": "№4787 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "35.837676",
- "latitude": "56.874356",
- "address": "Петербургское шоссе, д.95 (Возле ДС \"Юность\")",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/309034.jpg",
- "trainings": 2
- },
- {
- "id": 4788,
- "name": "№4788 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.839875",
- "latitude": "56.886479",
- "address": "П.Савельевой, д.52 (во дворе)",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/00336.jpg",
- "trainings": 1
- },
- {
- "id": 4789,
- "name": "№4789 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "35.856864",
- "latitude": "56.847165",
- "address": "ул. Восстания (Парк Текстильщиков)",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/5096.jpg",
- "trainings": 1
- },
- {
- "id": 4790,
- "name": "№4790 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.849778",
- "latitude": "56.877627",
- "address": "П. Савельевой, д.4 (Территория школы №40)",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/40 школа.JPG",
- "trainings": 0
- },
- {
- "id": 4791,
- "name": "№4791 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.891921",
- "latitude": "56.867402",
- "address": "Площадка для параворкаута (Территория городского пляжа)",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/cDMRTPH3mq99yfYUz4HyErdrSFmDRG.jpg",
- "trainings": 1
- },
- {
- "id": 4792,
- "name": "№4792 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.924901",
- "latitude": "56.850932",
- "address": "Смоленский пер., д. 10 (Территория школы №22)",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/22 школа.JPG",
- "trainings": 1
- },
- {
- "id": 4793,
- "name": "№4793 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.862446",
- "latitude": "56.884331",
- "address": "ул. 2-я Красина, д.78 (Мобильный комплекс в фитнес-клубе \"Атлетик Джим\"",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/173.jpg",
- "trainings": 0
- },
- {
- "id": 4794,
- "name": "№4794 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "57.14413333333334",
- "latitude": "65.12367216666667",
- "address": "Печора",
- "city_id": 8143,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/563DA36D-617B-47C4-8DA1-E6C2E8C085D0.jpg",
- "trainings": 0
- },
- {
- "id": 4795,
- "name": "№4795 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.484301",
- "latitude": "50.447053",
- "address": "просп. Победы 7а",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/place.jpg",
- "trainings": 0
- },
- {
- "id": 4796,
- "name": "№4796 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.750340999999935",
- "latitude": "55.775436",
- "address": "Московский проспект",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/1773.jpg",
- "trainings": 13
- },
- {
- "id": 4797,
- "name": "№4797 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "132.34516580000002",
- "latitude": "43.1124743",
- "address": "большой камень",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/F577CF5D-2DD8-4C10-BAF2-EC2651A8BEA4.jpg",
- "trainings": 0
- },
- {
- "id": 4798,
- "name": "№4798 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "132.3520605638623",
- "latitude": "43.11576493189003",
- "address": "улица Академика Крылова",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/E7F8CA4B-03E9-496A-A1EF-1C0F88DC0F8F.jpg",
- "trainings": 0
- },
- {
- "id": 4800,
- "name": "№4800 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.45642833333329",
- "latitude": "55.84399666666667",
- "address": "улица Свободы",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-18-18-10-54-xkc.jpg",
- "trainings": 0
- },
- {
- "id": 4801,
- "name": "№4801 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.57451400000002",
- "latitude": "55.652895",
- "address": "улица Каховка, 21к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/20160108_113927.jpg",
- "trainings": 4
- },
- {
- "id": 4802,
- "name": "№4802 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.843783",
- "latitude": "55.92281",
- "address": "г. Королев, ул. 50 лет ВЛКСМ 10б",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/bSpYfXBek4w1.jpg",
- "trainings": 3
- },
- {
- "id": 4803,
- "name": "№4803 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.61840589344501",
- "latitude": "55.64945061642484",
- "address": "Варшавское шоссе",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/B277BC2A-C3C9-474F-9231-698BF2F8675E.jpg",
- "trainings": 1
- },
- {
- "id": 4804,
- "name": "№4804 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.71605607122183",
- "latitude": "55.76266583257721",
- "address": "улица 2-я Синичкина",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/19F70780-727C-458D-A0D9-ADFE4855095A.jpg",
- "trainings": 3
- },
- {
- "id": 4806,
- "name": "№4806 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.615672",
- "latitude": "55.645173",
- "address": "Черноморский бульвар",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/3C33229D-5E0D-4C3B-87F3-71B7E1A5EC9E.jpg",
- "trainings": 5
- },
- {
- "id": 4807,
- "name": "№4807 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "24.171408",
- "latitude": "56.913782",
- "address": "Kaņiera iela",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160206_111438.jpg",
- "trainings": 2
- },
- {
- "id": 4808,
- "name": "№4808 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.896321",
- "latitude": "59.871616",
- "address": "ул. Озерковая, дом 45",
- "city_id": 101,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20160206_002.jpg",
- "trainings": 1
- },
- {
- "id": 4809,
- "name": "№4809 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.90484",
- "latitude": "59.87912",
- "address": "ул. Самсониевская, д. 5",
- "city_id": 101,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20160206_00985.jpg",
- "trainings": 0
- },
- {
- "id": 4810,
- "name": "№4810 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.911371",
- "latitude": "59.879936",
- "address": "Санкт-Петербургский пр., д. 43",
- "city_id": 101,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20160206_015.jpg",
- "trainings": 0
- },
- {
- "id": 4811,
- "name": "№4811 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.92031",
- "latitude": "59.876491",
- "address": "ул. Аврова, дом 13-Б",
- "city_id": 101,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20160207_001.jpg",
- "trainings": 0
- },
- {
- "id": 4812,
- "name": "№4812 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.92161",
- "latitude": "59.877154",
- "address": "ул. Аврова, дом 11",
- "city_id": 101,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20160207_007.jpg",
- "trainings": 0
- },
- {
- "id": 4813,
- "name": "№4813 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.923845",
- "latitude": "59.87667",
- "address": "ул. Аврова, дом 10",
- "city_id": 101,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20160207_009.jpg",
- "trainings": 0
- },
- {
- "id": 4814,
- "name": "№4814 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.918135",
- "latitude": "59.871088",
- "address": "Эрлеровский бульвар, д. 1/35",
- "city_id": 101,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20160207_020.jpg",
- "trainings": 0
- },
- {
- "id": 4815,
- "name": "№4815 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.914818",
- "latitude": "59.869909",
- "address": "ул. Путешественника Козлова, д. 7",
- "city_id": 101,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20160207_024.jpg",
- "trainings": 0
- },
- {
- "id": 4816,
- "name": "№4816 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.910567",
- "latitude": "59.870993",
- "address": "ул. Братьев Горкушенко, д. 5/1",
- "city_id": 101,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20160207_025.jpg",
- "trainings": 0
- },
- {
- "id": 4817,
- "name": "№4817 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.51194166666667",
- "latitude": "53.90992",
- "address": "Minsk",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/B5280641-D713-4155-919C-5E6F7F47AFBC.jpg",
- "trainings": 1
- },
- {
- "id": 4818,
- "name": "№4818 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.577325",
- "latitude": "55.90608666666667",
- "address": "улица Хотьковская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/75F9E63A-D79E-4355-A489-B5E5E785BDBF.jpg",
- "trainings": 7
- },
- {
- "id": 4819,
- "name": "№4819 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "58.302381",
- "latitude": "52.596169",
- "address": "Россия, Баймак, Проспект Салават Юлаева 19/1",
- "city_id": 7936,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ivobHT3woBE.jpg",
- "trainings": 0
- },
- {
- "id": 4821,
- "name": "№4821 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.05936139080492",
- "latitude": "55.9592185356244",
- "address": "проспект Мира д19/1",
- "city_id": 143,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/BE35FE85-06B3-47E8-94E8-0B79046DE145.jpg",
- "trainings": 0
- },
- {
- "id": 4822,
- "name": "№4822 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.52654200000006",
- "latitude": "55.824295",
- "address": "улица Зои и Александра Космодемьянских, дом 38",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_0922.JPG",
- "trainings": 0
- },
- {
- "id": 4824,
- "name": "№4824 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.452398300000027",
- "latitude": "60.0469792",
- "address": "Angliyskaya ulitsa",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/EACE6E4E-6EC7-4D4F-8F67-8BFAA3F8E273.jpg",
- "trainings": 4
- },
- {
- "id": 4825,
- "name": "№4825 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "29.007625",
- "latitude": "47.768473",
- "address": "ул. Победы 16",
- "city_id": 7934,
- "country_id": 15,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ 198.JPG",
- "trainings": 1
- },
- {
- "id": 4829,
- "name": "№4829 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.041957",
- "latitude": "57.852881",
- "address": "Стадион Салют",
- "city_id": 611,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSCN5967.jpg",
- "trainings": 1
- },
- {
- "id": 4836,
- "name": "№4836 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.474926",
- "latitude": "59.739801",
- "address": "Санкт-Петербург, п. Шушары, ул. Ростовская, д. 17",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/DSC05268.JPG",
- "trainings": 2
- },
- {
- "id": 4839,
- "name": "№4839 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.899925",
- "latitude": "59.876295",
- "address": "ул. Разводная, дом 19",
- "city_id": 101,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20160214_006.jpg",
- "trainings": 1
- },
- {
- "id": 4840,
- "name": "№4840 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.037360000000035",
- "latitude": "55.385416",
- "address": "ул. Лейтенанта Шмидта, дом 32/16",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160211_14595668.jpg",
- "trainings": 0
- },
- {
- "id": 4841,
- "name": "№4841 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.528101",
- "latitude": "55.892081",
- "address": "САО, Дмитровский район, ул. Лобненская, 12к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160212_160301.jpg",
- "trainings": 0
- },
- {
- "id": 4842,
- "name": "№4842 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.897478",
- "latitude": "59.874932",
- "address": "ул. Разводная, дом 25",
- "city_id": 101,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20160214_01257.jpg",
- "trainings": 0
- },
- {
- "id": 4843,
- "name": "№4843 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.51690705120563",
- "latitude": "56.78691367527808",
- "address": "Павла Шаманова 19",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/7647_usNYsVCe.jpg",
- "trainings": 4
- },
- {
- "id": 4844,
- "name": "№4844 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.51744550466538",
- "latitude": "56.786697703492585",
- "address": "Павла Шаманова 19",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/7647_usNYsVCe.jpg",
- "trainings": 2
- },
- {
- "id": 4845,
- "name": "№4845 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.82230708748102",
- "latitude": "55.74371522899495",
- "address": "улица Кетчерская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/F4082806-D1AA-4A65-BF9E-B57DA6C9F4C1.jpg",
- "trainings": 1
- },
- {
- "id": 4848,
- "name": "№4848 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.385013",
- "latitude": "59.730722",
- "address": "г.Пушкин. Академический проспект 31",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160217_143159.jpg",
- "trainings": 1
- },
- {
- "id": 4849,
- "name": "№4849 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.256605",
- "latitude": "60.005852",
- "address": "Камышовая 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/73225706_cJbOgSGNoa-tVq6XIUEcwY0CwLaJ9Ytn-T7uj7vXIlo.jpg",
- "trainings": 1
- },
- {
- "id": 4851,
- "name": "№4851 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "76.929499",
- "latitude": "43.264941",
- "address": "Маметовой (проспект Сейфуллина, сбоку MEGA)",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P60217-16001686.jpg",
- "trainings": 4
- },
- {
- "id": 4852,
- "name": "№4852 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.15041917562484",
- "latitude": "59.78926937091141",
- "address": "Красносельское шоссе",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DB87D561-274A-4489-A5C7-57A4C1625A97.jpg",
- "trainings": 5
- },
- {
- "id": 4853,
- "name": "№4853 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.699767",
- "latitude": "55.795065",
- "address": "ВАО, р-он Сокольники, улица Стромынка, 21к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160218_14050780.jpg",
- "trainings": 0
- },
- {
- "id": 4855,
- "name": "№4855 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.331562",
- "latitude": "54.576077",
- "address": "Нагорная 2а",
- "city_id": 7894,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160220_094921_1_p.jpg",
- "trainings": 1
- },
- {
- "id": 4856,
- "name": "№4856 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.302147",
- "latitude": "54.638507",
- "address": "Центральный микрорайон 11",
- "city_id": 7894,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160220_104626_1_p.jpg",
- "trainings": 1
- },
- {
- "id": 4857,
- "name": "№4857 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.303038",
- "latitude": "54.638094",
- "address": "Центральный микрорайон 23",
- "city_id": 7894,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160220_105022_1_p.jpg",
- "trainings": 1
- },
- {
- "id": 4858,
- "name": "№4858 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.265746",
- "latitude": "59.896902",
- "address": "Гладкова 25",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160220_090355.jpg",
- "trainings": 0
- },
- {
- "id": 4859,
- "name": "№4859 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.20711400000005",
- "latitude": "55.431908",
- "address": "с.Саввино , мкр. Восточный, дом 8, территория \"Саввинской школы им. С. А. Калабалина\"",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20160221_135442.jpg",
- "trainings": 0
- },
- {
- "id": 4860,
- "name": "№4860 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.04799400000002",
- "latitude": "55.376447",
- "address": "ул. Рабочая, дом 2А",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20160221_132410.jpg",
- "trainings": 1
- },
- {
- "id": 4861,
- "name": "№4861 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.05983400000002",
- "latitude": "55.372298",
- "address": "1-й мкр., дом 13А",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160221_11155261.jpg",
- "trainings": 1
- },
- {
- "id": 4862,
- "name": "№4862 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.062967999999955",
- "latitude": "55.372618",
- "address": "1 мкр., дом 20, МСЦ Теремок-1",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/GOPR224163.JPG",
- "trainings": 10
- },
- {
- "id": 4863,
- "name": "№4863 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.525405",
- "latitude": "55.82566166666667",
- "address": "улица Зои и Александра Космодемьянских, 35А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/5E6B7806-32D1-4303-B970-7B9A190B8AFF.jpg",
- "trainings": 0
- },
- {
- "id": 4864,
- "name": "№4864 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.51930333333333",
- "latitude": "55.82549166666666",
- "address": "улица Приорова, дом 40",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/F4BA5853-DB3E-4E22-AF97-F63558D814AA.jpg",
- "trainings": 0
- },
- {
- "id": 4865,
- "name": "№4865 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.520695",
- "latitude": "55.82538333333333",
- "address": "Новопетровская улица, 10Ас1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/42D0A002-AB58-4501-A407-EBD50CC2E92D.jpg",
- "trainings": 0
- },
- {
- "id": 4866,
- "name": "№4866 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.52732500000002",
- "latitude": "55.82682833333333",
- "address": "Матроса Железняка бульвар, дом 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/CA3B5DEC-D334-4E67-9DB6-67E279CF6C58.jpg",
- "trainings": 0
- },
- {
- "id": 4867,
- "name": "№4867 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.61035088449717",
- "latitude": "55.65040123999418",
- "address": "улица Ялтинская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5F580CB2-D472-4330-A450-4C4672C3EB5D.jpg",
- "trainings": 1
- },
- {
- "id": 4869,
- "name": "№4869 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "55.816882252693176",
- "latitude": "54.70106108886844",
- "address": "ул. баланово",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160222_160741.jpg",
- "trainings": 0
- },
- {
- "id": 4870,
- "name": "№4870 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "28.48237082362175",
- "latitude": "49.24421444224556",
- "address": "вул. стрілецька",
- "city_id": 486,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2015-06-25 19-48-14.JPG",
- "trainings": 2
- },
- {
- "id": 4877,
- "name": "№4877 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "46.128152",
- "latitude": "51.475822",
- "address": "ул. Минская, 29, Энгельс, Саратовская область, Россия",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160223_173721.jpg",
- "trainings": 2
- },
- {
- "id": 4878,
- "name": "№4878 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "41.898776",
- "latitude": "45.016311",
- "address": "Тухачевского 30",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160223_151428_HDR.jpg",
- "trainings": 7
- },
- {
- "id": 4880,
- "name": "№4880 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "55.817717760801315",
- "latitude": "54.70137164776788",
- "address": "ул. Грозненская, 10",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160222_160720.jpg",
- "trainings": 0
- },
- {
- "id": 4881,
- "name": "№4881 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.01206666666667",
- "latitude": "45.10490833333333",
- "address": "улица Бийская",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/CAE03E64-EB65-44EB-BCE0-2C0232A55765.jpg",
- "trainings": 4
- },
- {
- "id": 4882,
- "name": "№4882 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.907853",
- "latitude": "45.013049",
- "address": "Тухачевского 20/6",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160224_170524_HDR.jpg",
- "trainings": 0
- },
- {
- "id": 4884,
- "name": "№4884 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.90294645726681",
- "latitude": "45.01378082228985",
- "address": "Тухачевского 26/8",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160224_165548_HDR.jpg",
- "trainings": 0
- },
- {
- "id": 4885,
- "name": "№4885 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.904672",
- "latitude": "45.016891",
- "address": "Тухачевского 21/3",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160224_171237_HDR.jpg",
- "trainings": 0
- },
- {
- "id": 4887,
- "name": "№4887 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.900085",
- "latitude": "45.013869",
- "address": "Тухачевского 28/8",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160225_122228_HDR.jpg",
- "trainings": 0
- },
- {
- "id": 4891,
- "name": "№4891 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.555281",
- "latitude": "55.74806",
- "address": "Кутузовский проспект, 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160219_143626.jpg",
- "trainings": 0
- },
- {
- "id": 4892,
- "name": "№4892 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.55226",
- "latitude": "55.747435",
- "address": "Кутузовский проспект, 18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160219_141111.jpg",
- "trainings": 0
- },
- {
- "id": 4893,
- "name": "№4893 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.564096",
- "latitude": "55.750899",
- "address": "Кутузовский проспект, 2/1к1А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160220_142034.jpg",
- "trainings": 0
- },
- {
- "id": 4894,
- "name": "№4894 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.563272",
- "latitude": "55.752082",
- "address": "Кутузовский проспект, 2/1к1Б",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160220_142519.jpg",
- "trainings": 0
- },
- {
- "id": 4895,
- "name": "№4895 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.531537999999955",
- "latitude": "55.82562",
- "address": "Народный парк \"Вишневый сад\"",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 11,
- "preview": "https://workout.su/uploads/userfiles/IMG_091037.JPG",
- "trainings": 2
- },
- {
- "id": 4896,
- "name": "№4896 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "47.493848",
- "latitude": "42.975271",
- "address": "Алиева ",
- "city_id": 616,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/image14.jpeg",
- "trainings": 0
- },
- {
- "id": 4897,
- "name": "№4897 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.15681116666666",
- "latitude": "55.65686333333333",
- "address": "Одинцовский район, Жаворонковское",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/AABF0926-4F94-4BAA-A1A4-8F3C72E7AB84.jpg",
- "trainings": 0
- },
- {
- "id": 4898,
- "name": "№4898 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.90122950822115",
- "latitude": "45.01696982406314",
- "address": "Тухачевского 23/1",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160226_141136_HDR.jpg",
- "trainings": 0
- },
- {
- "id": 4900,
- "name": "№4900 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "34.74071",
- "latitude": "32.026606",
- "address": "Набережная, derech Ben Gurion, 47",
- "city_id": 766,
- "country_id": 9,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/Image 671.jpg",
- "trainings": 1
- },
- {
- "id": 4901,
- "name": "№4901 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "43.455214",
- "latitude": "56.244929",
- "address": "парк пионеров",
- "city_id": 31,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSCN7788.JPG",
- "trainings": 2
- },
- {
- "id": 4903,
- "name": "№4903 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.938712",
- "latitude": "57.765494",
- "address": "Кострома, ул. Смоленская, 28а (школьный двор)",
- "city_id": 64,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/235.png",
- "trainings": 0
- },
- {
- "id": 4904,
- "name": "№4904 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "40.938824",
- "latitude": "57.757373",
- "address": "Городской пляж № 1 (Центральный)",
- "city_id": 64,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/27947.png",
- "trainings": 1
- },
- {
- "id": 4905,
- "name": "№4905 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "33.447793",
- "latitude": "49.034738",
- "address": "Набережная л.Днепрова",
- "city_id": 511,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_3263.jpg",
- "trainings": 1
- },
- {
- "id": 4907,
- "name": "№4907 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.301192",
- "latitude": "54.639873",
- "address": "Центральный микрорайон 32",
- "city_id": 7894,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160227_160045_1_p1.jpg",
- "trainings": 1
- },
- {
- "id": 4908,
- "name": "№4908 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "55.921907",
- "latitude": "54.595651",
- "address": "коперника 14",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/uuNw64A7Q14.jpg",
- "trainings": 0
- },
- {
- "id": 4910,
- "name": "№4910 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.576646",
- "latitude": "55.666291",
- "address": "Зюзинская улица, 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160228_162217.jpg",
- "trainings": 0
- },
- {
- "id": 4911,
- "name": "№4911 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.573937",
- "latitude": "55.666894",
- "address": "улица Цюрупы, 7к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160228_160356.jpg",
- "trainings": 0
- },
- {
- "id": 4914,
- "name": "№4914 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "38.931178000000045",
- "latitude": "45.064617",
- "address": "улица Толстого",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/68663DAC-91F7-4D0F-9EBA-363FB58D8C11.jpg",
- "trainings": 9
- },
- {
- "id": 4915,
- "name": "№4915 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.90821200000005",
- "latitude": "43.098084",
- "address": "Харьковская",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-27-14-08-50-kvd.jpg",
- "trainings": 1
- },
- {
- "id": 4917,
- "name": "№4917 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.474738731980324",
- "latitude": "55.79887744474989",
- "address": "Курчатовский НИЦ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160301_134909.jpg",
- "trainings": 2
- },
- {
- "id": 4918,
- "name": "№4918 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.09487216666667",
- "latitude": "68.89938333333333",
- "address": "Geroyev Rybach'yego ulitsa",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/BBA10959-28CB-4936-BF4F-093C3270CF1F.jpg",
- "trainings": 0
- },
- {
- "id": 4920,
- "name": "№4920 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.96592166666667",
- "latitude": "55.64378333333333",
- "address": "Одинцовский район, Захаровское",
- "city_id": 670,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/52E103BC-745C-418C-8184-F66B119E1AC1.jpg",
- "trainings": 2
- },
- {
- "id": 4921,
- "name": "№4921 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.868245",
- "latitude": "32.093846",
- "address": "Petach Tikva Park",
- "city_id": 7943,
- "country_id": 9,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Image 68989.jpg",
- "trainings": 0
- },
- {
- "id": 4922,
- "name": "№4922 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.72789666666667",
- "latitude": "55.78141666666667",
- "address": "улица Щербаковская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8A9F082C-D315-4456-A54E-00D2C5CA11E2.jpg",
- "trainings": 1
- },
- {
- "id": 4924,
- "name": "№4924 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.43921666666667",
- "latitude": "50.46563333333334",
- "address": "Сырецкий парк",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6DE18726-A717-4EE0-AC6D-FBE59A34F636.jpg",
- "trainings": 2
- },
- {
- "id": 4925,
- "name": "№4925 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "46.015802",
- "latitude": "51.522097",
- "address": "Чапаева, 4",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_4785.JPG",
- "trainings": 2
- },
- {
- "id": 4927,
- "name": "№4927 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "94.706483",
- "latitude": "55.964973",
- "address": "ул. Карла Маркса, 13, Заозерный, Красноярский край, Россия",
- "city_id": 7940,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160302_210455.jpg",
- "trainings": 1
- },
- {
- "id": 4929,
- "name": "№4929 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.79030665755272",
- "latitude": "55.79784411269584",
- "address": "измайловский бульвар педагогический колледж 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160302_155153.jpg",
- "trainings": 0
- },
- {
- "id": 4932,
- "name": "№4932 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.323725",
- "latitude": "50.255959",
- "address": "Глеваха",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/10430057_859569854112983_7879106827201638632_n.jpg",
- "trainings": 1
- },
- {
- "id": 4933,
- "name": "№4933 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "53.48599166666666",
- "latitude": "54.48883",
- "address": "ул. Кувыкина, д. 15",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/60C2B44E-FC5D-408B-A187-574ED3EE4CC7.jpg",
- "trainings": 0
- },
- {
- "id": 4934,
- "name": "№4934 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "53.49709666666666",
- "latitude": "54.48875",
- "address": "ул. Академика Королева, д. 3",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/D93CBD36-CF58-41C4-85C3-E1B0953CC15F.jpg",
- "trainings": 0
- },
- {
- "id": 4935,
- "name": "№4935 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.617524",
- "latitude": "53.30338",
- "address": "Благовещенская 11",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_7065.jpg",
- "trainings": 1
- },
- {
- "id": 4936,
- "name": "№4936 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "20.541097",
- "latitude": "54.710863",
- "address": "Московский проспект, Сити",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/5233584046.jpg",
- "trainings": 2
- },
- {
- "id": 4937,
- "name": "№4937 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "94.711915",
- "latitude": "55.963981",
- "address": "ул. Папанина, 2, Заозерный, Красноярский край, Россия",
- "city_id": 7940,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_4873н.jpg",
- "trainings": 2
- },
- {
- "id": 4938,
- "name": "№4938 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "94.710187",
- "latitude": "55.964981",
- "address": "ул. Мира, 13, Заозерный, Красноярский край, Россия",
- "city_id": 7940,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_7125н.jpg",
- "trainings": 1
- },
- {
- "id": 4939,
- "name": "№4939 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "94.70680600000003",
- "latitude": "55.966566",
- "address": "ул.Карла Маркса, 9, Заозерный, Красноярский край, Россия",
- "city_id": 7940,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/BECNUY0aIss.jpg",
- "trainings": 1
- },
- {
- "id": 4940,
- "name": "№4940 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "94.692819",
- "latitude": "55.976346",
- "address": "ул.Смирнова, 38а, Заозерный, Красноярский край, Россия",
- "city_id": 7940,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC05110н.JPG",
- "trainings": 0
- },
- {
- "id": 4941,
- "name": "№4941 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "35.117546",
- "latitude": "47.844638",
- "address": "южноукраинская 19",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/198778.jpg",
- "trainings": 2
- },
- {
- "id": 4943,
- "name": "№4943 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.589539",
- "latitude": "55.814075",
- "address": "Руставели 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20160827_113141.jpg",
- "trainings": 6
- },
- {
- "id": 4944,
- "name": "№4944 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.524519",
- "latitude": "55.879816",
- "address": "САО, Дмитровский р-он, Ангарская ул. д. 43",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160303_100503.jpg",
- "trainings": 0
- },
- {
- "id": 4945,
- "name": "№4945 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.526275",
- "latitude": "55.880613",
- "address": "САО, Дмитровский р-он, Ангарская ул., 45к5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160303_101051.jpg",
- "trainings": 0
- },
- {
- "id": 4946,
- "name": "№4946 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "48.080557",
- "latitude": "46.370852",
- "address": "Нариманова 2г",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/SAM_5540.JPG",
- "trainings": 1
- },
- {
- "id": 4947,
- "name": "№4947 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.51409721374512",
- "latitude": "50.50590760012964",
- "address": "Оболонская набережная",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160303_164943.jpg",
- "trainings": 3
- },
- {
- "id": 4948,
- "name": "№4948 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.52285",
- "latitude": "50.49991",
- "address": "Оболонская набережная",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160303_170625.jpg",
- "trainings": 1
- },
- {
- "id": 4950,
- "name": "№4950 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.422986666666663",
- "latitude": "59.90403500000001",
- "address": "Новобезымянный пер., 9, Санкт-Петербург, Россия",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160304_122209.jpg",
- "trainings": 0
- },
- {
- "id": 4955,
- "name": "№4955 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.554996",
- "latitude": "55.745325",
- "address": "ул. Платовская, д. 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160301_144600.jpg",
- "trainings": 1
- },
- {
- "id": 4956,
- "name": "№4956 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.510051",
- "latitude": "50.505759",
- "address": "ул.Героев Сталинграда, м.Минская, стадион \"Юность\"",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160304_104724.jpg",
- "trainings": 1
- },
- {
- "id": 4958,
- "name": "№4958 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.53714200000002",
- "latitude": "56.200396",
- "address": "601270, Владимирская область Суздальский район пос. Боголюбово, ул. Ленина, д. 26-а",
- "city_id": 17,
- "country_id": 17,
- "comments_count": -1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160227_153252.jpg",
- "trainings": 1
- },
- {
- "id": 4959,
- "name": "№4959 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.73505351684683",
- "latitude": "55.631913767770236",
- "address": "ул. Борисовские Пруды, 6 корпус 3, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160306_115144.jpg",
- "trainings": 3
- },
- {
- "id": 4960,
- "name": "№4960 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "46.016442",
- "latitude": "51.520534",
- "address": "Лицей №62",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_4796.JPG",
- "trainings": 2
- },
- {
- "id": 4961,
- "name": "№4961 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "46.020343",
- "latitude": "51.5181",
- "address": "СГЮА",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_4801.JPG",
- "trainings": 1
- },
- {
- "id": 4962,
- "name": "№4962 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.932583",
- "latitude": "55.464861",
- "address": "улица Дорожная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/D9091F95-BA23-40CD-BBAF-921806A9257E.jpg",
- "trainings": 1
- },
- {
- "id": 4963,
- "name": "№4963 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.47596166666667",
- "latitude": "56.00869721666667",
- "address": "улица Крупской",
- "city_id": 73,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8E8DDD73-5267-4BE9-888E-E696BF502C59.jpg",
- "trainings": 0
- },
- {
- "id": 4964,
- "name": "№4964 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.495952",
- "latitude": "52.053249",
- "address": "Таёжная ",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSCF1506_1200.jpg",
- "trainings": 1
- },
- {
- "id": 4965,
- "name": "№4965 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.70284166666666",
- "latitude": "55.61683666666666",
- "address": "улица Шипиловская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/34CC2C70-82A1-46E5-863F-8216C1BCCE5B.jpg",
- "trainings": 1
- },
- {
- "id": 4966,
- "name": "№4966 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "131.925358",
- "latitude": "43.120166",
- "address": "Шилкинская 11",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1157.jpg",
- "trainings": 1
- },
- {
- "id": 4967,
- "name": "№4967 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.07604098310731",
- "latitude": "55.36895400499971",
- "address": "ул. Механизаторов, 55к4, Егорьевск, Московская область, Россия",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20160308_162551.jpg",
- "trainings": 2
- },
- {
- "id": 4969,
- "name": "№4969 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.348966263234615",
- "latitude": "55.60493353161322",
- "address": "московской 1мкр",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160308_123237.jpg",
- "trainings": 2
- },
- {
- "id": 4970,
- "name": "№4970 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.55158598",
- "latitude": "55.70882703",
- "address": "Воробьевская наб.",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20160309_085411.jpg",
- "trainings": 6
- },
- {
- "id": 4971,
- "name": "№4971 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "131.907386",
- "latitude": "43.142687",
- "address": "Спортивная площадка на о. Чан",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2187.jpg",
- "trainings": 3
- },
- {
- "id": 4972,
- "name": "№4972 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.941409",
- "latitude": "55.465499",
- "address": "ул. Дорожная, 125, Яковлевское",
- "city_id": 85,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_137854.JPG",
- "trainings": 0
- },
- {
- "id": 4973,
- "name": "№4973 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.71015833333333",
- "latitude": "55.61859166666667",
- "address": "улица Шипиловская, 22",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2A277C70-1DDD-4DA5-9FB6-62730FE973D3.jpg",
- "trainings": 1
- },
- {
- "id": 4974,
- "name": "№4974 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.71013833333333",
- "latitude": "55.617805",
- "address": "Каширское шоссе, 90К3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/7A541485-22BA-48AB-A2FD-1884F4FA609E.jpg",
- "trainings": 2
- },
- {
- "id": 4977,
- "name": "№4977 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.59713",
- "latitude": "55.630314",
- "address": "улица Чертановская, д. 8, корп.1 (ближайший дом)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/29260.jpg",
- "trainings": 3
- },
- {
- "id": 4978,
- "name": "№4978 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "45.15939",
- "latitude": "53.19480166666667",
- "address": "Заречный, Пензенская область",
- "city_id": 788,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160309_221434.jpg",
- "trainings": 1
- },
- {
- "id": 4987,
- "name": "№4987 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.57567327469587",
- "latitude": "55.74172091615839",
- "address": "Плющиха , 30",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160309_164159.jpg",
- "trainings": 3
- },
- {
- "id": 4988,
- "name": "№4988 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.647881",
- "latitude": "55.723521",
- "address": "Дербеневская улица, 14/4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160310_153507.jpg",
- "trainings": 3
- },
- {
- "id": 4989,
- "name": "№4989 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.231829",
- "latitude": "59.852623",
- "address": "Ленинский 108",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/D8N7ehkj95g.jpg",
- "trainings": 11
- },
- {
- "id": 4990,
- "name": "№4990 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.569958",
- "latitude": "55.607278",
- "address": "Битцевский лесопарк, ул Красного Маяка",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160310_164957.jpg",
- "trainings": 0
- },
- {
- "id": 4992,
- "name": "№4992 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.277889",
- "latitude": "54.614824",
- "address": "Южный микрорайон 10",
- "city_id": 7894,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160310_131912_1_p.jpg",
- "trainings": 1
- },
- {
- "id": 4993,
- "name": "№4993 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.60729517787695",
- "latitude": "55.64521859537426",
- "address": "Черноморский бульвар",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/C66E2567-6469-4372-945D-3FC5F2983738.jpg",
- "trainings": 4
- },
- {
- "id": 4994,
- "name": "№4994 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.940892",
- "latitude": "55.987322",
- "address": "Щорса 73, 77, 75, 71",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20160311_175843.jpg",
- "trainings": 7
- },
- {
- "id": 4995,
- "name": "№4995 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.05718616666667",
- "latitude": "45.00893055",
- "address": "улица Трамвайная",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/087C9F8B-8DA5-4A99-B52F-0A3040187301.jpg",
- "trainings": 3
- },
- {
- "id": 4996,
- "name": "№4996 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.44109",
- "latitude": "50.507598",
- "address": "западинска 13",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160311_163800.jpg",
- "trainings": 0
- },
- {
- "id": 4997,
- "name": "№4997 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.442868",
- "latitude": "50.505701",
- "address": "пр.Правды, 8",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160311_164523.jpg",
- "trainings": 0
- },
- {
- "id": 4998,
- "name": "№4998 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.446002",
- "latitude": "50.504342",
- "address": "пр.Правды, 17",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160311_16495920.jpg",
- "trainings": 0
- },
- {
- "id": 4999,
- "name": "№4999 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.5787665322423",
- "latitude": "55.61437871543584",
- "address": "Москва, ул. Красного Маяка, д. 16Б",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DD388362-20E5-460E-B254-54CA53BBD4CA.jpg",
- "trainings": 5
- },
- {
- "id": 5002,
- "name": "№5002 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.354969",
- "latitude": "60.007738",
- "address": "пр. Тореза, 33",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160312_150928.jpg",
- "trainings": 2
- },
- {
- "id": 5007,
- "name": "№5007 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.228753",
- "latitude": "55.576458",
- "address": "Стадион ",
- "city_id": 110,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/FullSizeRender (1).jpg",
- "trainings": 5
- },
- {
- "id": 5008,
- "name": "№5008 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.364617034792904",
- "latitude": "50.46042397643246",
- "address": "Ул. Семашка, 18",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160229_164016.jpg",
- "trainings": 0
- },
- {
- "id": 5010,
- "name": "№5010 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.407004989683628",
- "latitude": "50.481911270159074",
- "address": "Ул. Маршала Гречко, 4",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160229_163957.jpg",
- "trainings": 1
- },
- {
- "id": 5013,
- "name": "№5013 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.47826",
- "latitude": "55.672128",
- "address": "ЗАО, р-он Тропарёво-Никулино, ул. Коштоянца, 47к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160314_11513792.jpg",
- "trainings": 1
- },
- {
- "id": 5014,
- "name": "№5014 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.857641",
- "latitude": "56.360891",
- "address": "603040 ул. Чайковского 12",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/SAM_9053.JPG",
- "trainings": 1
- },
- {
- "id": 5015,
- "name": "№5015 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "43.851562",
- "latitude": "56.357969",
- "address": "603040 ул. Сутырина 6",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/SAM_9052.JPG",
- "trainings": 1
- },
- {
- "id": 5016,
- "name": "№5016 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.584015",
- "latitude": "55.706215",
- "address": "ленинский 39 а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG0018A.jpg",
- "trainings": 1
- },
- {
- "id": 5017,
- "name": "№5017 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.588637",
- "latitude": "55.733634",
- "address": "ул. Тимура Фрунзе, 11, корп.2, БЦ Красная Роза (Мамонтов)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 11,
- "preview": "https://workout.su/uploads/userfiles/43975DFF-F121-4C7F-A41F-1103C9E42C71.jpg",
- "trainings": 6
- },
- {
- "id": 5019,
- "name": "№5019 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.83707",
- "latitude": "59.211654",
- "address": "Стадион Витязь",
- "city_id": 19,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/8660cf0dc4cd8998dcabc5b5e26dbc7353.JPG",
- "trainings": 4
- },
- {
- "id": 5020,
- "name": "№5020 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.376446",
- "latitude": "60.018001",
- "address": "пр. Науки, 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160318_112414.jpg",
- "trainings": 1
- },
- {
- "id": 5021,
- "name": "№5021 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.240552932024",
- "latitude": "51.59596084167899",
- "address": "улица Новосибирская",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/52DB2A41-20D5-4596-B71D-427475AA97F0.jpg",
- "trainings": 5
- },
- {
- "id": 5022,
- "name": "№5022 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.481001",
- "latitude": "55.678165",
- "address": "Олимпийские пруды",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/TqeY9xosvQ8.jpg",
- "trainings": 6
- },
- {
- "id": 5023,
- "name": "№5023 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.811481",
- "latitude": "47.998243",
- "address": "Chelyuskintsiv St, 157-159, Donetsk, Donetsk Oblast",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160319_141826.jpg",
- "trainings": 0
- },
- {
- "id": 5025,
- "name": "№5025 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.97097",
- "latitude": "45.01172221666667",
- "address": "Краснодар",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ECA076A0-B8E7-445C-8ED1-87A682EDFD71.jpg",
- "trainings": 2
- },
- {
- "id": 5027,
- "name": "№5027 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.05967099999998",
- "latitude": "55.370594",
- "address": "2 микр., д. 8, сквер \"60-ти летия Победы\"",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20160319_132545.jpg",
- "trainings": 0
- },
- {
- "id": 5028,
- "name": "№5028 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.05979254232784",
- "latitude": "55.369045097073254",
- "address": "2-й мкр., дом 25, территория МСУ МЦ \"Маяк\"",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/GOPR2981.JPG",
- "trainings": 0
- },
- {
- "id": 5029,
- "name": "№5029 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.287874999999985",
- "latitude": "58.541672",
- "address": "Антоново",
- "city_id": 14,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/C024709C-4A60-4468-9412-E71BE27CBF85.jpg",
- "trainings": 4
- },
- {
- "id": 5030,
- "name": "№5030 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "47.95052345842123",
- "latitude": "56.63712072666972",
- "address": "улица Зои Космодемьянской",
- "city_id": 571,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2E980A4B-B7FB-454C-8720-1C94A13A0BDE.jpg",
- "trainings": 0
- },
- {
- "id": 5031,
- "name": "№5031 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "43.736653",
- "latitude": "56.387319",
- "address": "Дубравная 19",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/SAM_9087.JPG",
- "trainings": 1
- },
- {
- "id": 5032,
- "name": "№5032 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "83.804099",
- "latitude": "53.3291",
- "address": "площадь Баварина 2",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160323_184124.jpg",
- "trainings": 4
- },
- {
- "id": 5033,
- "name": "№5033 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.506993",
- "latitude": "55.871122",
- "address": "Kandavas iela 2a",
- "city_id": 426,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_2070.JPG",
- "trainings": 1
- },
- {
- "id": 5034,
- "name": "№5034 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "26.499205",
- "latitude": "55.868067",
- "address": "Aptiekas iela 11",
- "city_id": 426,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_2074.JPG",
- "trainings": 1
- },
- {
- "id": 5035,
- "name": "№5035 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "26.593907",
- "latitude": "55.890493",
- "address": "Ciekuru iela 3b",
- "city_id": 426,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_207899.JPG",
- "trainings": 1
- },
- {
- "id": 5037,
- "name": "№5037 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.738458",
- "latitude": "55.702107",
- "address": "ЮВАО, р-он Текстильщики, ул. Артюхиной, д. 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160325_133652.jpg",
- "trainings": 0
- },
- {
- "id": 5038,
- "name": "№5038 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.446878",
- "latitude": "56.004578",
- "address": "Ул. Катюшки",
- "city_id": 73,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/image42.jpeg",
- "trainings": 3
- },
- {
- "id": 5039,
- "name": "№5039 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.89759712666273",
- "latitude": "43.095008435489",
- "address": "Владивосток ул. Калинина 255",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160323_180722_p.jpg",
- "trainings": 0
- },
- {
- "id": 5040,
- "name": "№5040 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.519690999999966",
- "latitude": "50.518421",
- "address": "Приречная",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-17-13-01-38-qvm.jpg",
- "trainings": 1
- },
- {
- "id": 5041,
- "name": "№5041 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.491958",
- "latitude": "50.510203",
- "address": "Тимошенко",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160324_122619.jpg",
- "trainings": 1
- },
- {
- "id": 5042,
- "name": "№5042 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.506174",
- "latitude": "50.508046",
- "address": "Героев Сталинграда, 25Б",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160324_123426.jpg",
- "trainings": 0
- },
- {
- "id": 5043,
- "name": "№5043 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.323859",
- "latitude": "60.016164",
- "address": "м. Удельная, пр. Энгельса, 55",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/09768.jpg",
- "trainings": 3
- },
- {
- "id": 5044,
- "name": "№5044 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.79694002",
- "latitude": "55.68875589",
- "address": "ул. Старые Кузьминки, 5, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160327_104752.jpg",
- "trainings": 3
- },
- {
- "id": 5045,
- "name": "№5045 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.81248299999993",
- "latitude": "55.76784",
- "address": "Восточный округ, район Ивановское, Терлецкие Пруды",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/24BD99F2-95E0-462C-A990-5F5FB52958E8.jpg",
- "trainings": 3
- },
- {
- "id": 5047,
- "name": "№5047 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.491081",
- "latitude": "55.635433",
- "address": "ландшафтный заказник Тёплый Стан",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160327_10194792.jpg",
- "trainings": 9
- },
- {
- "id": 5048,
- "name": "№5048 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "27.570426464080814",
- "latitude": "53.927093988247634",
- "address": "Парк Дружбы Народов",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160326_154738.jpg",
- "trainings": 3
- },
- {
- "id": 5049,
- "name": "№5049 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.874731",
- "latitude": "47.970653",
- "address": "ул. Андрея Малышко, школа №123",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160328_075421.jpg",
- "trainings": 1
- },
- {
- "id": 5050,
- "name": "№5050 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.873247",
- "latitude": "47.96816",
- "address": "Донецк, ул. Бобруйская",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160328_073603.jpg",
- "trainings": 1
- },
- {
- "id": 5051,
- "name": "№5051 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "48.085301999999956",
- "latitude": "46.366842",
- "address": "Ул. Маркина, 102",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P_20160326_163334.jpg",
- "trainings": 1
- },
- {
- "id": 5052,
- "name": "№5052 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.48226666666667",
- "latitude": "55.796805",
- "address": "улица Расплетина",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/E6DC2C55-0FA8-455B-8CFB-F94E664BF555.jpg",
- "trainings": 4
- },
- {
- "id": 5053,
- "name": "№5053 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.938999",
- "latitude": "55.886312",
- "address": "Московская область, Щелковский район, КП Варежки-2",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/380.png",
- "trainings": 1
- },
- {
- "id": 5054,
- "name": "№5054 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.221763",
- "latitude": "59.956659",
- "address": "Кораблестроителей, 38к4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P_20160329_115003197.jpg",
- "trainings": 4
- },
- {
- "id": 5055,
- "name": "№5055 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.59833100000003",
- "latitude": "55.784103",
- "address": "Палиха 2А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-04-14-04-44-ama.jpg",
- "trainings": 5
- },
- {
- "id": 5056,
- "name": "№5056 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "54.097853999999984",
- "latitude": "54.092637",
- "address": "г.Белебей ул.Морозова 7",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/S-52Qq_a1Rc.jpg",
- "trainings": 1
- },
- {
- "id": 5057,
- "name": "№5057 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "47.50289019954017",
- "latitude": "56.11798542658482",
- "address": "ул Терешковой 3",
- "city_id": 146,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/B1204CEB-8B25-47EC-B9E3-582C602E800E.jpg",
- "trainings": 0
- },
- {
- "id": 5058,
- "name": "№5058 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.38792921",
- "latitude": "55.89037454",
- "address": "Воротынская ул., 18, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160403_154720.jpg",
- "trainings": 2
- },
- {
- "id": 5059,
- "name": "№5059 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.39653699999997",
- "latitude": "55.711048",
- "address": "улица Беловежская д.39 корп.6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/image5020.jpeg",
- "trainings": 2
- },
- {
- "id": 5060,
- "name": "№5060 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.519138268335915",
- "latitude": "44.608332889763545",
- "address": "одесская 23",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160404_110308.jpg",
- "trainings": 3
- },
- {
- "id": 5062,
- "name": "№5062 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.05062920789984",
- "latitude": "55.95958381896462",
- "address": "институтская улица напротив дома 27",
- "city_id": 143,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/565378DE-D5B9-4BA2-AF23-33628B29DD22.jpg",
- "trainings": 4
- },
- {
- "id": 5063,
- "name": "№5063 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "103.85438180000006",
- "latitude": "52.5004155",
- "address": "15-й микрорайон, 36, Ангарск, Иркутская область, Россия",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160407_064427.jpg",
- "trainings": 2
- },
- {
- "id": 5064,
- "name": "№5064 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.34593704342842",
- "latitude": "55.81422493525839",
- "address": "Павшинская ул., 4",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P_20160406_081537.jpg",
- "trainings": 0
- },
- {
- "id": 5065,
- "name": "№5065 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "135.066648",
- "latitude": "48.473497",
- "address": "Фрунзе 41",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ScreenClip.png",
- "trainings": 0
- },
- {
- "id": 5066,
- "name": "№5066 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.545277",
- "latitude": "55.673749",
- "address": "Гарибальди 15 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160409_185721.jpg",
- "trainings": 4
- },
- {
- "id": 5067,
- "name": "№5067 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.645495",
- "latitude": "54.6493",
- "address": "Юбилейная, 63",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20160410_100300.jpg",
- "trainings": 1
- },
- {
- "id": 5068,
- "name": "№5068 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.780228",
- "latitude": "55.724095",
- "address": "Михайлова 39",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20150619_164711.jpg",
- "trainings": 3
- },
- {
- "id": 5069,
- "name": "№5069 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.48028799999997",
- "latitude": "55.825467",
- "address": "Лесопарк Покровское-Глебово",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/F61AF9B8-3737-4EE9-A3E2-A88396A39DE0.jpg",
- "trainings": 0
- },
- {
- "id": 5072,
- "name": "№5072 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.50874666666667",
- "latitude": "55.81718833333333",
- "address": "Новоподмосковный 2-й переулок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/D72D4421-3B01-4C46-9E7A-DF8813BF3B2D.jpg",
- "trainings": 0
- },
- {
- "id": 5075,
- "name": "№5075 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.52088",
- "latitude": "55.82984166666667",
- "address": "улица Коптевская, дом 18Б",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1FF27973-C04A-4751-A7F0-E383694B7FE2.jpg",
- "trainings": 1
- },
- {
- "id": 5076,
- "name": "№5076 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.52242000000001",
- "latitude": "55.82854166666667",
- "address": "Новопетровская ул., 3с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/27B55745-8ED4-4F31-8A72-429213B02474.jpg",
- "trainings": 0
- },
- {
- "id": 5077,
- "name": "№5077 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.752127",
- "latitude": "32.033382",
- "address": "Sderot Yeryshalayim, 172",
- "city_id": 766,
- "country_id": 9,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Image 787.jpg",
- "trainings": 0
- },
- {
- "id": 5078,
- "name": "№5078 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.767127",
- "latitude": "32.080745",
- "address": "Shlomo Lahat Promenade",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/tel 2.JPG",
- "trainings": 0
- },
- {
- "id": 5079,
- "name": "№5079 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.543716",
- "latitude": "55.667315",
- "address": "Архитектора Власова 45",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P_20160410_163459.jpg",
- "trainings": 1
- },
- {
- "id": 5080,
- "name": "№5080 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.614022",
- "latitude": "55.860393",
- "address": "ул. Декабристов, д. 28, к. 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ 05.04.16, 18 50 14.jpg",
- "trainings": 2
- },
- {
- "id": 5082,
- "name": "№5082 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.350922",
- "latitude": "59.912428",
- "address": "Лиговский пр. 156",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/UrYSLD8v6QI.jpg",
- "trainings": 2
- },
- {
- "id": 5083,
- "name": "№5083 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.66438333333333",
- "latitude": "55.79771666666667",
- "address": "2-й Лучевой просек",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6D9130DD-2C54-46BC-A2D6-1C744D2C58D4.jpg",
- "trainings": 3
- },
- {
- "id": 5084,
- "name": "№5084 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "75.45990000000006",
- "latitude": "63.21499166666667",
- "address": "ноябрьск",
- "city_id": 719,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/78ADDEA2-C728-400B-8D5C-AA3C1CDF2210.jpg",
- "trainings": 2
- },
- {
- "id": 5085,
- "name": "№5085 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "57.5509575381875",
- "latitude": "65.99276017088401",
- "address": "ул. Парковая, Усинск, Республика Коми, Россия",
- "city_id": 672,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0794.JPG",
- "trainings": 1
- },
- {
- "id": 5086,
- "name": "№5086 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.70339202135801",
- "latitude": "55.63400906951548",
- "address": "Каширское шоссе",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/30C7196A-C8B0-417C-A83E-7220714BAB57.jpg",
- "trainings": 1
- },
- {
- "id": 5087,
- "name": "№5087 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.606802",
- "latitude": "55.825244",
- "address": "Парк Останкино, 1-я Останкинская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_8577.JPG",
- "trainings": 2
- },
- {
- "id": 5089,
- "name": "№5089 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.59525246817166",
- "latitude": "55.765281006984516",
- "address": "Трехпрудный пер., 11/13 строение 2, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160417_183013.jpg",
- "trainings": 2
- },
- {
- "id": 5090,
- "name": "№5090 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "73.093071",
- "latitude": "49.811058",
- "address": "парк Победы",
- "city_id": 412,
- "country_id": 11,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_1052-2.jpg",
- "trainings": 0
- },
- {
- "id": 5091,
- "name": "№5091 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.481666",
- "latitude": "55.8598",
- "address": "Фестивальная 41 корпус 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG-20160125-00551.jpg",
- "trainings": 1
- },
- {
- "id": 5092,
- "name": "№5092 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.490314",
- "latitude": "55.853568",
- "address": "Парк Дружбы",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 8,
- "preview": "https://workout.su/uploads/userfiles/IMG-20160125-00553.jpg",
- "trainings": 1
- },
- {
- "id": 5093,
- "name": "№5093 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.38065666666667",
- "latitude": "47.88666333333334",
- "address": "Вокзальная ул., 16, Кривой Рог, Днепропетровская область",
- "city_id": 512,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160419_155820.jpg",
- "trainings": 0
- },
- {
- "id": 5094,
- "name": "№5094 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.424055",
- "latitude": "50.436174",
- "address": "пр.Космонавта Комарова 1",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160421_180020.jpg",
- "trainings": 0
- },
- {
- "id": 5095,
- "name": "№5095 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.57118795067072",
- "latitude": "55.75733430000934",
- "address": "Глубокий переулок дом 7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160422_145138.jpg",
- "trainings": 0
- },
- {
- "id": 5096,
- "name": "№5096 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.95176732",
- "latitude": "56.05426461",
- "address": "ул. Воронова, 43А, Красноярск, Красноярский край, Россия",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160423_150921.jpg",
- "trainings": 1
- },
- {
- "id": 5097,
- "name": "№5097 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.514142",
- "latitude": "55.664588",
- "address": "Ленинский пр-т 103",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/P_20160423_132210.jpg",
- "trainings": 4
- },
- {
- "id": 5098,
- "name": "№5098 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.9514174",
- "latitude": "56.05423081",
- "address": "ул. Воронова, 43А, Красноярск, Красноярский край, Россия",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160424_152826.jpg",
- "trainings": 0
- },
- {
- "id": 5099,
- "name": "№5099 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "113.49535837769508",
- "latitude": "52.07182215834979",
- "address": "Лесопарковая зона микрорайона Северный",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 12,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-06-03-02-33-ixq.jpg",
- "trainings": 32
- },
- {
- "id": 5100,
- "name": "№5100 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "54.097805",
- "latitude": "56.765147",
- "address": "Гагарина 23, МАОУ СОШ №1.",
- "city_id": 7442,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160425_161626.jpg",
- "trainings": 0
- },
- {
- "id": 5101,
- "name": "№5101 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.73345041275025",
- "latitude": "43.568700553304545",
- "address": "Парк им. Фрунзе возле Летнего театра ",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-26-11-12-49-rqb.jpg",
- "trainings": 17
- },
- {
- "id": 5102,
- "name": "№5102 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.66671516001225",
- "latitude": "55.59315037607109",
- "address": "улица Бирюлевская, 23",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/249E18E3-A443-443E-93D5-B2765B1A6122.jpg",
- "trainings": 0
- },
- {
- "id": 5103,
- "name": "№5103 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "44.25442099999998",
- "latitude": "46.306491",
- "address": "Багатур",
- "city_id": 619,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/ площадка клуба багатур.jpg",
- "trainings": 1
- },
- {
- "id": 5104,
- "name": "№5104 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.571273",
- "latitude": "55.695233",
- "address": "ферсмана 5к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160423_182824.jpg",
- "trainings": 0
- },
- {
- "id": 5105,
- "name": "№5105 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.363513",
- "latitude": "55.820211",
- "address": "Подмосковный бульвар, 1",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160419_08171970.jpg",
- "trainings": 0
- },
- {
- "id": 5106,
- "name": "№5106 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.36514",
- "latitude": "55.82051",
- "address": "Подмосковный бульвар, 3",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P_20160419_082016.jpg",
- "trainings": 0
- },
- {
- "id": 5107,
- "name": "№5107 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.366856",
- "latitude": "55.821186",
- "address": "Подмосковный бульвар, 5",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160419_082302.jpg",
- "trainings": 0
- },
- {
- "id": 5108,
- "name": "№5108 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.5666",
- "latitude": "55.740851",
- "address": "Бережковская наб., 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160323_143927.jpg",
- "trainings": 2
- },
- {
- "id": 5109,
- "name": "№5109 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.537755",
- "latitude": "55.739896",
- "address": "Кутузовский проспект, 35",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160419_144433.jpg",
- "trainings": 1
- },
- {
- "id": 5110,
- "name": "№5110 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.322354",
- "latitude": "55.825265",
- "address": "ул. Маяковского, Городской парк",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160424_111609.jpg",
- "trainings": 0
- },
- {
- "id": 5112,
- "name": "№5112 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.724773",
- "latitude": "55.890228",
- "address": "Перловская",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160426_09061346.jpg",
- "trainings": 2
- },
- {
- "id": 5114,
- "name": "№5114 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.742609",
- "latitude": "32.008711",
- "address": "Ha-Nevi'im st., 23",
- "city_id": 766,
- "country_id": 9,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Image 799.jpg",
- "trainings": 1
- },
- {
- "id": 5115,
- "name": "№5115 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.57136229425669",
- "latitude": "55.749451494941724",
- "address": "Кутузовский проспект, 1/7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/P_20160427_150750.jpg",
- "trainings": 3
- },
- {
- "id": 5116,
- "name": "№5116 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.41462166666667",
- "latitude": "55.80220833333333",
- "address": "улица Маршала Катукова",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/275AEDB2-A174-4BA0-B5B6-7ADE04954AF6.jpg",
- "trainings": 2
- },
- {
- "id": 5117,
- "name": "№5117 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.40365333333333",
- "latitude": "55.75585333333333",
- "address": "Рублевское шоссе",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/C4161675-CDA4-46DA-A21A-8B2228BE8FB9.jpg",
- "trainings": 1
- },
- {
- "id": 5118,
- "name": "№5118 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.378205",
- "latitude": "55.820717",
- "address": "Красногорский бульвар дом 26",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/WP_20160429_001.jpg",
- "trainings": 0
- },
- {
- "id": 5119,
- "name": "№5119 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.474892",
- "latitude": "55.670155",
- "address": "ЗАО, р-он Тропарёво-Никулино, ул. Анохина Академика, 2 корпус 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160429_152622.jpg",
- "trainings": 0
- },
- {
- "id": 5120,
- "name": "№5120 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "69.599821",
- "latitude": "42.315891",
- "address": "Центральный парк, стадион Спартак",
- "city_id": 422,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/28042016395.jpg",
- "trainings": 1
- },
- {
- "id": 5121,
- "name": "№5121 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.71693333333333",
- "latitude": "55.601345",
- "address": "улица Домодедовская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/A668D6BF-DEEC-4582-BFC6-A85A90E13CEE.jpg",
- "trainings": 1
- },
- {
- "id": 5122,
- "name": "№5122 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.76443557817281",
- "latitude": "55.74624891863739",
- "address": "Плеханова 14к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/09089288-5793-47DE-B91D-38AEBAD07173.jpg",
- "trainings": 0
- },
- {
- "id": 5123,
- "name": "№5123 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.365639",
- "latitude": "55.825066",
- "address": "Павшинский бульвар 1",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160501_143347.jpg",
- "trainings": 4
- },
- {
- "id": 5124,
- "name": "№5124 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.371674",
- "latitude": "55.82437",
- "address": "спасская 10",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160501_171826.jpg",
- "trainings": 0
- },
- {
- "id": 5125,
- "name": "№5125 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.37164",
- "latitude": "55.823282",
- "address": "Игнатат титова 7",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160501_170917.jpg",
- "trainings": 2
- },
- {
- "id": 5126,
- "name": "№5126 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.69494440406561",
- "latitude": "55.62208982497575",
- "address": "Шипиловский проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/B8DFDA1B-0C8D-49C6-9864-1B6CE816F479.jpg",
- "trainings": 2
- },
- {
- "id": 5127,
- "name": "№5127 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.965799",
- "latitude": "55.809051",
- "address": "Володарского, 29",
- "city_id": 95,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_00128488.jpg",
- "trainings": 0
- },
- {
- "id": 5128,
- "name": "№5128 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "142.19721302390099",
- "latitude": "47.92858285815219",
- "address": "пензенское",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG-20160414-WA0120.jpg",
- "trainings": 0
- },
- {
- "id": 5129,
- "name": "№5129 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.342196",
- "latitude": "53.927844",
- "address": "Стадион Локомотив",
- "city_id": 378,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2972.jpg",
- "trainings": 0
- },
- {
- "id": 5130,
- "name": "№5130 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.64161840084721",
- "latitude": "55.77266172045448",
- "address": "скорняжный 1/2к4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/E57BD34D-5C63-46D2-A34C-88452B7EB53A.jpg",
- "trainings": 0
- },
- {
- "id": 5131,
- "name": "№5131 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.60892185386047",
- "latitude": "55.74805936781294",
- "address": "Волхонка 5/6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/403D5077-B1C2-4E1D-8FB9-AAD98F752D58.jpg",
- "trainings": 4
- },
- {
- "id": 5135,
- "name": "№5135 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.43525288",
- "latitude": "50.45717213",
- "address": "Peremohy Ave, 60, Kiev",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160423_193433_AO_HDR.jpg",
- "trainings": 0
- },
- {
- "id": 5138,
- "name": "№5138 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.1052657365799",
- "latitude": "55.802404098733305",
- "address": "улица Батурина",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 10,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-01-15-03-08-m8s.jpg",
- "trainings": 6
- },
- {
- "id": 5142,
- "name": "№5142 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "103.85852049999994",
- "latitude": "52.5298087",
- "address": "29-й микрорайон, Ангарск, Иркутская область, Россия",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160507_083129.jpg",
- "trainings": 0
- },
- {
- "id": 5145,
- "name": "№5145 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "56.276688",
- "latitude": "57.945219",
- "address": "ул. Героев Хасана, 159",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/WP_20160507_16_32_54_Pro.jpg",
- "trainings": 0
- },
- {
- "id": 5146,
- "name": "№5146 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.96974599999999",
- "latitude": "55.748265",
- "address": "Береговая улица, Стадион \"Керамик\"",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/v5nSXB1ujb8.jpg",
- "trainings": 2
- },
- {
- "id": 5147,
- "name": "№5147 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.35561520796023",
- "latitude": "55.60135594574324",
- "address": "город Московский, 1 мкр, 35",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/81648DC0-5625-4D23-B996-9941DD6038F8.jpg",
- "trainings": 2
- },
- {
- "id": 5148,
- "name": "№5148 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.51880910247564",
- "latitude": "55.5428917670823",
- "address": "улица Адмирала Лазарева, 52",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/A2565716-35D8-410D-BD50-2A0ED266A6A8.jpg",
- "trainings": 0
- },
- {
- "id": 5149,
- "name": "№5149 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.71228647794361",
- "latitude": "55.8023641678093",
- "address": "Краснобогатырская, 87",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/72E5B08E-5FCD-435E-A6BD-790C460D8CF5.jpg",
- "trainings": 0
- },
- {
- "id": 5150,
- "name": "№5150 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "39.745103",
- "latitude": "47.229947",
- "address": "парк им. Октябрьской Революции",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160515_182443.jpg",
- "trainings": 9
- },
- {
- "id": 5153,
- "name": "№5153 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.56951592862606",
- "latitude": "55.89961234709157",
- "address": "улица Череповецкая. В парке Лианозово.",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/14765AD6-8BDE-4F7B-93E8-0C541C06A742.jpg",
- "trainings": 0
- },
- {
- "id": 5156,
- "name": "№5156 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.40436599999998",
- "latitude": "55.65319",
- "address": "Солнцевский просп., 16А, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160510_191047.jpg",
- "trainings": 1
- },
- {
- "id": 5158,
- "name": "№5158 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "107.6047922",
- "latitude": "51.84462765",
- "address": "ул. Комсомольская, 1б, Улан-Удэ, Республика Бурятия, Россия",
- "city_id": 615,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160511_121653.jpg",
- "trainings": 0
- },
- {
- "id": 5160,
- "name": "№5160 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.662439",
- "latitude": "55.767521",
- "address": "Московская область, Южная улица, 39",
- "city_id": 98,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_3097.JPG",
- "trainings": 0
- },
- {
- "id": 5161,
- "name": "№5161 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.985189",
- "latitude": "55.512289",
- "address": "Московская область, Наро-Фоминский район, посёлок городского типа Селятино, Теннисная улица, д. 49",
- "city_id": 85,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_3126.JPG",
- "trainings": 0
- },
- {
- "id": 5162,
- "name": "№5162 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.982948",
- "latitude": "55.80143",
- "address": "Ленина, 40",
- "city_id": 95,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_001011.jpg",
- "trainings": 0
- },
- {
- "id": 5163,
- "name": "№5163 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "44.04573700000003",
- "latitude": "56.298805",
- "address": "ул.Бориса Корнилова, д.10",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/CAM00779.jpg",
- "trainings": 4
- },
- {
- "id": 5164,
- "name": "№5164 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.18599500000005",
- "latitude": "55.487261",
- "address": "д. Василенцево, дом 76",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160403_191302.jpg",
- "trainings": 0
- },
- {
- "id": 5165,
- "name": "№5165 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.610878",
- "latitude": "54.158768",
- "address": "рязанская 32к3",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_000385.jpg",
- "trainings": 1
- },
- {
- "id": 5166,
- "name": "№5166 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.610479",
- "latitude": "54.15951",
- "address": "рязанская 32к2",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_000612.jpg",
- "trainings": 1
- },
- {
- "id": 5168,
- "name": "№5168 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.324664",
- "latitude": "60.008146",
- "address": "м. Удельная, пр. Энгельса, 32",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/07030.jpg",
- "trainings": 4
- },
- {
- "id": 5169,
- "name": "№5169 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.402672",
- "latitude": "55.653043",
- "address": "Солнцевский просп., 12А, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160512_183641.jpg",
- "trainings": 2
- },
- {
- "id": 5170,
- "name": "№5170 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.130548",
- "latitude": "55.583892",
- "address": "Ул. Гарнаева (между скейт парком и тенисной площадкой)",
- "city_id": 41,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/-4YDEg22cjw.jpg",
- "trainings": 4
- },
- {
- "id": 5171,
- "name": "№5171 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.745496",
- "latitude": "32.012447",
- "address": "Bar Ilan st.,59",
- "city_id": 766,
- "country_id": 9,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Image 813.jpg",
- "trainings": 0
- },
- {
- "id": 5173,
- "name": "№5173 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.549695",
- "latitude": "50.466506",
- "address": "Трухановская",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_3747.jpg",
- "trainings": 1
- },
- {
- "id": 5174,
- "name": "№5174 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.02267822068559",
- "latitude": "56.31895142146975",
- "address": "Ул. трудовая, 29",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/508DC705-6F3A-43DD-9A24-0856608F49B1.jpg",
- "trainings": 0
- },
- {
- "id": 5176,
- "name": "№5176 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.427593",
- "latitude": "49.439669",
- "address": "село Манат",
- "city_id": 421,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC0004080.JPG",
- "trainings": 0
- },
- {
- "id": 5177,
- "name": "№5177 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "118.036131",
- "latitude": "50.096614",
- "address": "Стадион «Аргунь»",
- "city_id": 7952,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSCF9122.JPG",
- "trainings": 2
- },
- {
- "id": 5178,
- "name": "№5178 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.03663333333333",
- "latitude": "56.32264666666666",
- "address": "улица Большая Печерская",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/E37CE4DD-62D7-4479-A746-D14F947F14C1.jpg",
- "trainings": 0
- },
- {
- "id": 5179,
- "name": "№5179 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.02693616666667",
- "latitude": "56.32168666666666",
- "address": "улица Ковалихинская",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/E8346A6A-595C-4518-999D-8F3FEE95C6DC.jpg",
- "trainings": 0
- },
- {
- "id": 5180,
- "name": "№5180 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.52056700000003",
- "latitude": "55.668769",
- "address": "Новаторов 4к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/92D81FA8-2A1D-4F06-ABB1-98DAF57B7B1D.jpg",
- "trainings": 0
- },
- {
- "id": 5181,
- "name": "№5181 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.298951",
- "latitude": "55.839107",
- "address": "улица Карбышева, 23к2",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2376.jpg",
- "trainings": 3
- },
- {
- "id": 5182,
- "name": "№5182 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.310718",
- "latitude": "55.818916",
- "address": "ул. 50 лет Октября, д.7",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/mp6vsRNawFs.jpg",
- "trainings": 1
- },
- {
- "id": 5183,
- "name": "№5183 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.569704",
- "latitude": "55.749999",
- "address": "Кутузовский проспект, 3с2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160511_151258.jpg",
- "trainings": 0
- },
- {
- "id": 5187,
- "name": "№5187 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "72.626697",
- "latitude": "61.078688",
- "address": "13 Микрорайон, 68",
- "city_id": 7422,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_08201111.JPG",
- "trainings": 3
- },
- {
- "id": 5189,
- "name": "№5189 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.47489666666667",
- "latitude": "55.67802833333334",
- "address": "район Тропарево-Никулино, Москва Олимпийская деревня",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160520_192457.jpg",
- "trainings": 3
- },
- {
- "id": 5190,
- "name": "№5190 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.238425",
- "latitude": "59.9996",
- "address": "Sittsevaya ulitsa",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/815CCEB8-E774-4F9A-BD48-E1940B41F009.jpg",
- "trainings": 1
- },
- {
- "id": 5191,
- "name": "№5191 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "72.601336",
- "latitude": "61.090189",
- "address": "ул. Мира, 24",
- "city_id": 7422,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0823.JPG",
- "trainings": 2
- },
- {
- "id": 5192,
- "name": "№5192 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.53117245",
- "latitude": "55.68783913",
- "address": "ул. Строителей, 17Б, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20160521_185502.jpg",
- "trainings": 1
- },
- {
- "id": 5193,
- "name": "№5193 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.292554",
- "latitude": "55.83735",
- "address": "улица Карбышева, 35/69",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160520_133452.jpg",
- "trainings": 0
- },
- {
- "id": 5194,
- "name": "№5194 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.26832390000004",
- "latitude": "55.68032419999999",
- "address": "Одинцово, Маршала Жукова 34а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/76D52837-4D39-432D-86D7-9A6760F055F7.jpg",
- "trainings": 1
- },
- {
- "id": 5196,
- "name": "№5196 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.66582466665438",
- "latitude": "55.62110337433928",
- "address": "Севанская, 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/D9CFF236-11C3-430E-B944-8243412CC24D.jpg",
- "trainings": 0
- },
- {
- "id": 5197,
- "name": "№5197 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.408002",
- "latitude": "55.805704",
- "address": "Катукова 22 а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P1010011.JPG",
- "trainings": 0
- },
- {
- "id": 5198,
- "name": "№5198 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.387855908437885",
- "latitude": "56.00405659174647",
- "address": "1-я ул., 18, Черноголовка, Московская область, Россия",
- "city_id": 7433,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160523_180404.jpg",
- "trainings": 3
- },
- {
- "id": 5199,
- "name": "№5199 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.67284233126573",
- "latitude": "55.78220154163966",
- "address": "Русаковская, 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/A2EEE192-CE24-41C5-B8F2-7552906255BF.jpg",
- "trainings": 4
- },
- {
- "id": 5200,
- "name": "№5200 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "75.45937737",
- "latitude": "63.2143932",
- "address": "Ямало-Ненецкий автономный округ, Россия",
- "city_id": 719,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160525_175448.jpg",
- "trainings": 2
- },
- {
- "id": 5201,
- "name": "№5201 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "31.220258",
- "latitude": "58.530461",
- "address": "На Кочетова (за бассейном Акрон)",
- "city_id": 14,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/image45.jpeg",
- "trainings": 2
- },
- {
- "id": 5202,
- "name": "№5202 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.348665",
- "latitude": "55.518021",
- "address": "Нововатутинский пр. 11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/VGIts2JZNyM.jpg",
- "trainings": 2
- },
- {
- "id": 5203,
- "name": "№5203 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.786786",
- "latitude": "56.000109",
- "address": "Ленинградская 42А / рядом",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/viber image.jpg",
- "trainings": 2
- },
- {
- "id": 5204,
- "name": "№5204 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.292476",
- "latitude": "55.827641",
- "address": "успенская 16",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG6.jpg",
- "trainings": 0
- },
- {
- "id": 5205,
- "name": "№5205 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.434908",
- "latitude": "50.425824",
- "address": "ул.Залесная 9",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160524_115947.jpg",
- "trainings": 0
- },
- {
- "id": 5206,
- "name": "№5206 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.61211666666667",
- "latitude": "55.64009166666666",
- "address": "Балаклавский проспект д3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6EE78420-EE23-4130-9808-3C98BCCE948B.jpg",
- "trainings": 1
- },
- {
- "id": 5208,
- "name": "№5208 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "39.72114879637957",
- "latitude": "47.23252541463917",
- "address": "улица Лермонтовская",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/C114B1B3-06A5-490D-90B8-E00B74A76325.jpg",
- "trainings": 0
- },
- {
- "id": 5209,
- "name": "№5209 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.52177537422396",
- "latitude": "55.5442386819567",
- "address": "Академика Лазарева 40к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/CEA53DDB-1940-43A7-AC55-129A045847D9.jpg",
- "trainings": 0
- },
- {
- "id": 5210,
- "name": "№5210 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.311907",
- "latitude": "55.817066",
- "address": "ул. Комсомольская, 45",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160528_18054848.jpg",
- "trainings": 2
- },
- {
- "id": 5212,
- "name": "№5212 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.92878333333334",
- "latitude": "45.12028883333333",
- "address": "улица Баварская",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/B237542D-0A44-4C3B-A82D-58AC62395F24.jpg",
- "trainings": 1
- },
- {
- "id": 5214,
- "name": "№5214 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.592785",
- "latitude": "54.157936",
- "address": "мязенцева 44",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSC_000854.jpg",
- "trainings": 2
- },
- {
- "id": 5215,
- "name": "№5215 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.404942",
- "latitude": "55.642046",
- "address": "ул. Авиаторов, 9к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0740.JPG",
- "trainings": 3
- },
- {
- "id": 5216,
- "name": "№5216 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.37187055498362",
- "latitude": "45.19070067296609",
- "address": "Евпатория",
- "city_id": 493,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/D729F822-1A33-4FE5-8544-42E57C1CB992.jpg",
- "trainings": 0
- },
- {
- "id": 5217,
- "name": "№5217 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.96897846460342",
- "latitude": "60.07241234753447",
- "address": "Приморское шоссе",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/C38733AF-B519-4773-A1FB-B927FCF72006.jpg",
- "trainings": 1
- },
- {
- "id": 5218,
- "name": "№5218 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.707227",
- "latitude": "55.796752",
- "address": "ул. Атарбекова, 5, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/GOPR2848.JPG",
- "trainings": 0
- },
- {
- "id": 5219,
- "name": "№5219 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.705973",
- "latitude": "55.796099",
- "address": "ул. Атарбекова, 4Б строение 1, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/GOPR2846.JPG",
- "trainings": 1
- },
- {
- "id": 5220,
- "name": "№5220 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.70639",
- "latitude": "55.794367",
- "address": "Электрозаводская ул., 33 строение 5, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/GOPR2843.JPG",
- "trainings": 1
- },
- {
- "id": 5221,
- "name": "№5221 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.706221",
- "latitude": "55.786824",
- "address": "1-й Электрозаводский пер., 3/2, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/GOPR2837.JPG",
- "trainings": 0
- },
- {
- "id": 5222,
- "name": "№5222 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.58732428777738",
- "latitude": "55.76099272822566",
- "address": "Вспольный 9с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/638574F4-4F03-4ECD-A82A-A7A720FB9C2C.jpg",
- "trainings": 0
- },
- {
- "id": 5223,
- "name": "№5223 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "34.37967100000003",
- "latitude": "61.792592",
- "address": "онежская набережная",
- "city_id": 102,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/TzEJXLiV684.jpg",
- "trainings": 4
- },
- {
- "id": 5224,
- "name": "№5224 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "72.62626234441996",
- "latitude": "61.07871245656798",
- "address": "ул. Степана Повха, 4, Когалым, Ханты-Мансийский автономный округ, Россия",
- "city_id": 7438,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0832.JPG",
- "trainings": 0
- },
- {
- "id": 5225,
- "name": "№5225 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.27870833333333",
- "latitude": "55.781975",
- "address": "Красногорский район",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/E2A4FFEC-8CAC-4CF1-A5AF-CB62D2BB7353.jpg",
- "trainings": 1
- },
- {
- "id": 5226,
- "name": "№5226 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.56994",
- "latitude": "54.16934",
- "address": "г. Тула, ул. Седова, д. 27, во дворе",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160605_185519.jpg",
- "trainings": 0
- },
- {
- "id": 5228,
- "name": "№5228 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.623566",
- "latitude": "54.194207",
- "address": "г. Тула, Кремлевский сад, в конце, напротив пер. Садовый, д. 1 (ФСБ)",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160606_180848.jpg",
- "trainings": 2
- },
- {
- "id": 5229,
- "name": "№5229 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.63443368490565",
- "latitude": "55.76399127026625",
- "address": "Мясницкая 13/20",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/81967D39-B79C-461B-9BD6-32403C20F818.jpg",
- "trainings": 0
- },
- {
- "id": 5230,
- "name": "№5230 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "41.931188",
- "latitude": "44.636857",
- "address": " ул. Белово 3",
- "city_id": 778,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160607_143534.jpg",
- "trainings": 1
- },
- {
- "id": 5231,
- "name": "№5231 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "41.949202",
- "latitude": "44.627657",
- "address": "ул. Гагарина 53 А",
- "city_id": 778,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160607_134705.jpg",
- "trainings": 0
- },
- {
- "id": 5232,
- "name": "№5232 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.946654",
- "latitude": "44.630081",
- "address": "ул. Гагарина 43 В",
- "city_id": 778,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160607_154001.jpg",
- "trainings": 0
- },
- {
- "id": 5233,
- "name": "№5233 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "41.942314",
- "latitude": "44.626481",
- "address": "ул. Гагарина 62 А",
- "city_id": 778,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160607_140340.jpg",
- "trainings": 1
- },
- {
- "id": 5234,
- "name": "№5234 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.931687",
- "latitude": "44.639338",
- "address": "ул. Павлова 1",
- "city_id": 778,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160607_145926.jpg",
- "trainings": 0
- },
- {
- "id": 5235,
- "name": "№5235 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "41.937711",
- "latitude": "44.642972",
- "address": "ул. Павлова 17",
- "city_id": 778,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160607_150949.jpg",
- "trainings": 0
- },
- {
- "id": 5236,
- "name": "№5236 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.930952",
- "latitude": "44.645151",
- "address": "ул. Менделеева 31",
- "city_id": 778,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160607_151836.jpg",
- "trainings": 0
- },
- {
- "id": 5237,
- "name": "№5237 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.70721200000003",
- "latitude": "47.291294",
- "address": "Добровольского 22/3",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160608_190954.jpg",
- "trainings": 0
- },
- {
- "id": 5238,
- "name": "№5238 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.513755",
- "latitude": "59.912751",
- "address": "Ленинградская 5",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/s8Wnd8c_Up0.jpg",
- "trainings": 0
- },
- {
- "id": 5239,
- "name": "№5239 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "39.72805",
- "latitude": "47.228518",
- "address": "сквер им. 1-й конной армии",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160608_183718.jpg",
- "trainings": 2
- },
- {
- "id": 5240,
- "name": "№5240 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.02671239116368",
- "latitude": "56.32176515745",
- "address": "Ковалихинская ул., 64, Нижний Новгород, Нижегородская область, Россия",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160609_142734.jpg",
- "trainings": 0
- },
- {
- "id": 5241,
- "name": "№5241 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.025112399322516",
- "latitude": "56.30814506316151",
- "address": "ул. Бориса Панина, 1А, Нижний Новгород, Нижегородская область, Россия",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160609_150114.jpg",
- "trainings": 0
- },
- {
- "id": 5242,
- "name": "№5242 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.50294702131068",
- "latitude": "55.81569395033253",
- "address": "Ленинградское 8/2к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/7C2CD5CA-E249-4072-BAE7-3D9BD65674C5.jpg",
- "trainings": 0
- },
- {
- "id": 5243,
- "name": "№5243 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.64682199999993",
- "latitude": "47.25915699999999",
- "address": "Таганрогская 165",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160610_162728.jpg",
- "trainings": 1
- },
- {
- "id": 5244,
- "name": "№5244 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.600857",
- "latitude": "54.172863",
- "address": "Территория стадиона ",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0045.jpg",
- "trainings": 0
- },
- {
- "id": 5246,
- "name": "№5246 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.044929000000025",
- "latitude": "55.374692",
- "address": "ул. Октябрьская, дом 121, стадион Мещёра",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/jG0FFMhIrqU.jpg",
- "trainings": 21
- },
- {
- "id": 5247,
- "name": "№5247 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "74.47491187602282",
- "latitude": "62.26496175669538",
- "address": "Прибалтийская, 19",
- "city_id": 7438,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0836.JPG",
- "trainings": 0
- },
- {
- "id": 5249,
- "name": "№5249 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.041091999999935",
- "latitude": "55.384102",
- "address": "ул. 9 Января, дом 31/32, сквер 1-го Мая",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/GOPR2946.JPG",
- "trainings": 1
- },
- {
- "id": 5250,
- "name": "№5250 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.587053",
- "latitude": "54.201133",
- "address": "г. Тула, ул. Федора Смирнова, д. 1, во дворе",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160613_190713.jpg",
- "trainings": 1
- },
- {
- "id": 5251,
- "name": "№5251 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.94899099999998",
- "latitude": "43.407266",
- "address": "Олимпийский просп., Адлер, Краснодарский край, Россия",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 11,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160614_195442.jpg",
- "trainings": 6
- },
- {
- "id": 5252,
- "name": "№5252 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.592095",
- "latitude": "54.16353",
- "address": "г. Тула, ул. Н.Руднева, д.54, во дворе",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160614_172430.jpg",
- "trainings": 0
- },
- {
- "id": 5253,
- "name": "№5253 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.583185",
- "latitude": "54.168175",
- "address": "г. Тула, ул. Болдина, д. 124, во дворе за забором",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160614_175746.jpg",
- "trainings": 0
- },
- {
- "id": 5254,
- "name": "№5254 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.570815",
- "latitude": "54.16771",
- "address": "г. Тула, вдоль улицы Макаренко, недалеко от пересечения улиц Макаренко и Седова, возле ЖК \"Макаренко\"",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160614_181856.jpg",
- "trainings": 0
- },
- {
- "id": 5255,
- "name": "№5255 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.668318",
- "latitude": "55.322626",
- "address": "Менделеева 2",
- "city_id": 24,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P_20160610_094147.jpg",
- "trainings": 2
- },
- {
- "id": 5260,
- "name": "№5260 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.769921",
- "latitude": "32.090401",
- "address": "Hilton Beach, Service Road",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/tel65.JPG",
- "trainings": 0
- },
- {
- "id": 5261,
- "name": "№5261 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.781331",
- "latitude": "32.097918",
- "address": "Rokach Avenue, HaBanim Garden",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/tel-aviv146.jpg",
- "trainings": 0
- },
- {
- "id": 5262,
- "name": "№5262 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.782296",
- "latitude": "55.999758",
- "address": "ул.Ленинградская 66, стадион Динамо",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20160615_132406.jpg",
- "trainings": 3
- },
- {
- "id": 5265,
- "name": "№5265 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.805557",
- "latitude": "32.098463",
- "address": " Rosh Zipor, Israel National Trail",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/tv1.JPG",
- "trainings": 0
- },
- {
- "id": 5266,
- "name": "№5266 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.767807",
- "latitude": "32.082493",
- "address": " Shlomo (Cheech) Lahat Promenade, 2",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/jaffa2.JPG",
- "trainings": 0
- },
- {
- "id": 5267,
- "name": "№5267 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.680563",
- "latitude": "55.751735",
- "address": "Таможенный проезд 1/9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image13.jpeg",
- "trainings": 0
- },
- {
- "id": 5268,
- "name": "№5268 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.677655",
- "latitude": "55.753458",
- "address": "Волочаевская улица 20 к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image5023.jpeg",
- "trainings": 0
- },
- {
- "id": 5269,
- "name": "№5269 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.598473",
- "latitude": "55.60812",
- "address": "м пражская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0329.JPG",
- "trainings": 3
- },
- {
- "id": 5270,
- "name": "№5270 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.339604",
- "latitude": "49.989301",
- "address": "проспект тракторостроителей",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMAG175877.jpg",
- "trainings": 2
- },
- {
- "id": 5271,
- "name": "№5271 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "72.16758",
- "latitude": "61.624",
- "address": "улица Назаргалеева",
- "city_id": 565,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/8FF03882-4324-4762-9B89-05BE35F94D21.jpg",
- "trainings": 1
- },
- {
- "id": 5272,
- "name": "№5272 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.625612",
- "latitude": "54.22779",
- "address": "г. Тула, Комсомольмкий парк, от центрального входа крайняя левая дорожка, через 100 м с правой стороны",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160617_171337.jpg",
- "trainings": 1
- },
- {
- "id": 5273,
- "name": "№5273 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "53.467108",
- "latitude": "54.476097",
- "address": "ул. Садовое Кольцо",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/004583.jpg",
- "trainings": 0
- },
- {
- "id": 5274,
- "name": "№5274 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "83.01226099999997",
- "latitude": "55.029786",
- "address": "Высоцкого 1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160620_17551181.jpg",
- "trainings": 1
- },
- {
- "id": 5275,
- "name": "№5275 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.704005",
- "latitude": "55.761201",
- "address": "Энергетическая улица 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/image19.jpeg",
- "trainings": 1
- },
- {
- "id": 5276,
- "name": "№5276 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.63993333333333",
- "latitude": "55.74016166666667",
- "address": "улица Садовническая",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/13B13A24-1CD6-416D-B2F7-8861FF5B311F.jpg",
- "trainings": 3
- },
- {
- "id": 5277,
- "name": "№5277 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.258184",
- "latitude": "54.902043",
- "address": "Аминова",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/C4gpbqNfXBU.jpg",
- "trainings": 1
- },
- {
- "id": 5278,
- "name": "№5278 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.281548",
- "latitude": "54.903831",
- "address": "Ул. Нефтяников Парк ",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/xuGqbW0ENeM.jpg",
- "trainings": 2
- },
- {
- "id": 5279,
- "name": "№5279 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.301327",
- "latitude": "54.898242",
- "address": "Городской парк",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/7notx85MEtQ.jpg",
- "trainings": 1
- },
- {
- "id": 5280,
- "name": "№5280 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.731457",
- "latitude": "46.420107",
- "address": "ул. Жаботинского/ул. 1-ая линия",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160621201342.jpg",
- "trainings": 1
- },
- {
- "id": 5282,
- "name": "№5282 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.866356",
- "latitude": "55.757931",
- "address": "Площадка на фабричном пруду",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_1082.JPG",
- "trainings": 3
- },
- {
- "id": 5284,
- "name": "№5284 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.74310000000003",
- "latitude": "32.005125",
- "address": "Ha-Komemiyut st.",
- "city_id": 766,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/Image 893.jpg",
- "trainings": 1
- },
- {
- "id": 5285,
- "name": "№5285 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "44.67589502226997",
- "latitude": "43.02962800957545",
- "address": "парк Хетагурова",
- "city_id": 621,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/06ECFF4E-BC83-41F3-A354-A1A633356FF6.jpg",
- "trainings": 2
- },
- {
- "id": 5286,
- "name": "№5286 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.849199",
- "latitude": "55.664576",
- "address": "Природно-исторический парк Кузьминки-Люблино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160621_125316.jpg",
- "trainings": 1
- },
- {
- "id": 5287,
- "name": "№5287 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.51600208695746",
- "latitude": "55.78460228634606",
- "address": "ул. Куусинена 6Ac3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/66D1CB2C-8F95-4B89-86D1-2485FA7C5A05.jpg",
- "trainings": 3
- },
- {
- "id": 5288,
- "name": "№5288 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.97682962566614",
- "latitude": "60.0983228075592",
- "address": "Приморское шоссе",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/C163B954-0F32-458B-BE3C-9B9A9762360A.jpg",
- "trainings": 1
- },
- {
- "id": 5289,
- "name": "№5289 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.68392655998468",
- "latitude": "55.85804950555314",
- "address": "Хибинский проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/4CFB7C6A-D825-4E45-87FA-A36E8E1BC39B.jpg",
- "trainings": 3
- },
- {
- "id": 5290,
- "name": "№5290 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.68244262784719",
- "latitude": "55.8567921192825",
- "address": "Ярославское шоссе",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/0C3B8DC2-054F-40B0-B432-AA15BA339E3D.jpg",
- "trainings": 1
- },
- {
- "id": 5291,
- "name": "№5291 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.71727",
- "latitude": "55.75862833333333",
- "address": "Aviamotornaya ulitsa",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6D5636A2-17C2-47C6-B6C9-19487B4714FF.jpg",
- "trainings": 2
- },
- {
- "id": 5293,
- "name": "№5293 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.8064451739192",
- "latitude": "55.73272721867236",
- "address": "Москва",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/BA3AB880-9FE7-4607-969F-C8B5CD77A4F7.jpg",
- "trainings": 6
- },
- {
- "id": 5294,
- "name": "№5294 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.41573378",
- "latitude": "50.47918117",
- "address": "Kotovs'koho St, 45, Kiev",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160626_112607_HDR.jpg",
- "trainings": 1
- },
- {
- "id": 5295,
- "name": "№5295 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "113.42254600000001",
- "latitude": "52.053196",
- "address": "Яковлева, 35а",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/P_20160626_22090966.jpg",
- "trainings": 1
- },
- {
- "id": 5296,
- "name": "№5296 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.606539",
- "latitude": "55.628674",
- "address": "г. Москва, м. Южная, в сквере между улиц Чертановская и Кировоградская, параллельно Сумской, рядом со школой № 851",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160621_195544.jpg",
- "trainings": 2
- },
- {
- "id": 5297,
- "name": "№5297 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "142.760425",
- "latitude": "46.936301",
- "address": "ул. Пуркаева, 27",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160627_074650.jpg",
- "trainings": 1
- },
- {
- "id": 5298,
- "name": "№5298 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "142.750962",
- "latitude": "46.93351",
- "address": "ул. Комсомольская, 300",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160627_081418.jpg",
- "trainings": 1
- },
- {
- "id": 5299,
- "name": "№5299 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "142.750763",
- "latitude": "46.941348",
- "address": "ул. Комсомольская, 278",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160627_083524.jpg",
- "trainings": 1
- },
- {
- "id": 5300,
- "name": "№5300 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "142.746466",
- "latitude": "46.948417",
- "address": "ул. Пограничная 18",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160627_085329.jpg",
- "trainings": 2
- },
- {
- "id": 5301,
- "name": "№5301 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "142.749889",
- "latitude": "46.957121",
- "address": "ул. Тихоокеанская 18",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160627_091840.jpg",
- "trainings": 1
- },
- {
- "id": 5302,
- "name": "№5302 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "142.75488182902336",
- "latitude": "46.96524658718913",
- "address": "городской парк имени Ю. А. Гагарина ",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160627_101931.jpg",
- "trainings": 1
- },
- {
- "id": 5303,
- "name": "№5303 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "142.75542363524437",
- "latitude": "46.96575453511605",
- "address": "городской парк имени Ю. А. Гагарина ",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160627_104849.jpg",
- "trainings": 3
- },
- {
- "id": 5304,
- "name": "№5304 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.46408821788417",
- "latitude": "55.894442508216734",
- "address": "ул. Кудрявцева, 10, Химки, Московская область, Россия",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160627_210502.jpg",
- "trainings": 2
- },
- {
- "id": 5305,
- "name": "№5305 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.587509",
- "latitude": "54.17303",
- "address": "г. Тула, ул. Оружейная, д. 1Б, справа от входа в общежитие № 7",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160627_165734.jpg",
- "trainings": 0
- },
- {
- "id": 5306,
- "name": "№5306 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.934176",
- "latitude": "51.657722",
- "address": "прямицыно",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DSCN0671.JPG",
- "trainings": 1
- },
- {
- "id": 5307,
- "name": "№5307 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "37.54976999999997",
- "latitude": "55.808412",
- "address": "Москва, Тимирязевский парк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/19FE56B8-24A4-4DB9-B407-96CC5F72F1AE.jpg",
- "trainings": 11
- },
- {
- "id": 5308,
- "name": "№5308 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.73805445",
- "latitude": "55.7381003",
- "address": "Басовская ул., 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160629_145131.jpg",
- "trainings": 2
- },
- {
- "id": 5309,
- "name": "№5309 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.73616822",
- "latitude": "55.73814923",
- "address": "Басовская ул., 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160629_145905.jpg",
- "trainings": 0
- },
- {
- "id": 5310,
- "name": "№5310 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.75026104",
- "latitude": "55.73410383",
- "address": "3-я Карачаровская ул., 12 корпус 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160629_153735.jpg",
- "trainings": 1
- },
- {
- "id": 5311,
- "name": "№5311 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.553991",
- "latitude": "56.862382",
- "address": "Софьи Перовской, д.111",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/WP_20160629_21_07_37_Pro.jpg",
- "trainings": 2
- },
- {
- "id": 5312,
- "name": "№5312 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.02158400000008",
- "latitude": "55.035747",
- "address": "Лазурная 27/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160629_182425.jpg",
- "trainings": 2
- },
- {
- "id": 5313,
- "name": "№5313 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.298031",
- "latitude": "55.609088",
- "address": "ул. Большая Внуковская, 25",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160630_104933.jpg",
- "trainings": 2
- },
- {
- "id": 5314,
- "name": "№5314 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.29445687",
- "latitude": "55.60885092",
- "address": "1-я Рейсовая ул., 1/21 строение 1, Внуково, город Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160630_130534.jpg",
- "trainings": 3
- },
- {
- "id": 5315,
- "name": "№5315 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.676266",
- "latitude": "47.211231",
- "address": "Стачки (около отд. полиции)",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160630_162707.jpg",
- "trainings": 0
- },
- {
- "id": 5316,
- "name": "№5316 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.670322",
- "latitude": "47.219151",
- "address": "ул.Профсоюзная (парк Собино)",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160630_164110.jpg",
- "trainings": 2
- },
- {
- "id": 5317,
- "name": "№5317 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.22947833333333",
- "latitude": "60.00667221666667",
- "address": "Planernaya ulitsa",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/1041B74B-7722-4C56-92FD-07ED74F6976B.jpg",
- "trainings": 0
- },
- {
- "id": 5318,
- "name": "№5318 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.73152531683445",
- "latitude": "56.39759125210134",
- "address": "улица Советская",
- "city_id": 7948,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/31D4DFD3-B7A9-401B-A037-298F777F7049.jpg",
- "trainings": 1
- },
- {
- "id": 5319,
- "name": "№5319 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.74693768471479",
- "latitude": "55.61503651361792",
- "address": "Ореховый бульвар 49к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DAFE420A-173B-4CF2-A94E-48EFDCC3AE89.jpg",
- "trainings": 2
- },
- {
- "id": 5320,
- "name": "№5320 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.665589051356164",
- "latitude": "55.89032100984443",
- "address": "Грекова 18к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/1C80914D-2FF0-4E9A-9670-AF207006B5D6.jpg",
- "trainings": 0
- },
- {
- "id": 5321,
- "name": "№5321 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.66273945573499",
- "latitude": "55.88883984373499",
- "address": "Грекова, 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DA2A8789-1CC6-4793-BE4E-C1EAA3D1BF4F.jpg",
- "trainings": 0
- },
- {
- "id": 5322,
- "name": "№5322 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.47543333333333",
- "latitude": "55.7481",
- "address": "парк фили",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/A8368E5A-359E-4826-BDCC-8CFB61E49665.jpg",
- "trainings": 3
- },
- {
- "id": 5323,
- "name": "№5323 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.294625",
- "latitude": "59.85458",
- "address": "Kubinskaya ulitsa",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/67BF98C8-0686-4A70-B186-F6152E0CC738.jpg",
- "trainings": 0
- },
- {
- "id": 5324,
- "name": "№5324 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.26376333333337",
- "latitude": "55.88221166666666",
- "address": "Сабурово деревня",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/B9D683C9-3B29-43FA-B656-B047D73CD65D.jpg",
- "trainings": 0
- },
- {
- "id": 5325,
- "name": "№5325 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.083093",
- "latitude": "59.722707",
- "address": "Красное Село, ул. Театральная, 5",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_1533.JPG",
- "trainings": 1
- },
- {
- "id": 5326,
- "name": "№5326 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.52635833333329",
- "latitude": "55.82787166666667",
- "address": "Новопетровская улица, 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/227586D9-4246-4ABF-84CA-907F1918B689.jpg",
- "trainings": 0
- },
- {
- "id": 5327,
- "name": "№5327 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.52730097621679",
- "latitude": "55.82745385656268",
- "address": "улица Большая Академическая, 25А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/730413D5-82F4-4837-874F-BF748E353B74.jpg",
- "trainings": 0
- },
- {
- "id": 5332,
- "name": "№5332 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.579929",
- "latitude": "56.851045",
- "address": "Колмогорова, 70",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160422_083054134.jpg",
- "trainings": 0
- },
- {
- "id": 5333,
- "name": "№5333 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.78283410709145",
- "latitude": "55.78916652598957",
- "address": "Заводской, 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/D7DA8693-EC7F-492F-B365-D0EFD2BFE801.jpg",
- "trainings": 0
- },
- {
- "id": 5334,
- "name": "№5334 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.64878660443951",
- "latitude": "55.74011034803068",
- "address": "Котельническая набережная, 33к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/0AF347ED-8E65-4BE0-BEEC-0116040FBEEC.jpg",
- "trainings": 0
- },
- {
- "id": 5336,
- "name": "№5336 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.614986120808766",
- "latitude": "52.6034125679437",
- "address": "Нижний парк, Липецк, Липецкая область, Россия",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160706_170200.jpg",
- "trainings": 1
- },
- {
- "id": 5337,
- "name": "№5337 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.845021",
- "latitude": "56.01465",
- "address": "Центральный парк культуры и отдыха (ЦПКиО)",
- "city_id": 109,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160707_153632.jpg",
- "trainings": 2
- },
- {
- "id": 5338,
- "name": "№5338 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.85240699999997",
- "latitude": "55.999877",
- "address": "На территории ФОК Пушкино",
- "city_id": 109,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160707_172730.jpg",
- "trainings": 6
- },
- {
- "id": 5340,
- "name": "№5340 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.01015200000006",
- "latitude": "55.031816",
- "address": "Лазурная 10/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160630_185601.jpg",
- "trainings": 1
- },
- {
- "id": 5341,
- "name": "№5341 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.827682",
- "latitude": "55.796749",
- "address": "Первомайский проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/20160709_125957.jpg",
- "trainings": 2
- },
- {
- "id": 5342,
- "name": "№5342 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "83.01202899999998",
- "latitude": "55.031625",
- "address": "Высоцкого 5",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160709_180206.jpg",
- "trainings": 1
- },
- {
- "id": 5343,
- "name": "№5343 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.86439818",
- "latitude": "55.74270335",
- "address": "квартал Маяковского, 31",
- "city_id": 670,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160621_191238.jpg",
- "trainings": 0
- },
- {
- "id": 5344,
- "name": "№5344 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.29776166666667",
- "latitude": "55.83790833333333",
- "address": "улица Карбышева, 27",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/8B42B84F-B6A8-492D-994D-27CBC699E70D.jpg",
- "trainings": 0
- },
- {
- "id": 5345,
- "name": "№5345 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.29867166666666",
- "latitude": "55.83812166666667",
- "address": "улица Карбышева, 25",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1E68907C-AF85-404F-932B-29A14FE479C8.jpg",
- "trainings": 0
- },
- {
- "id": 5346,
- "name": "№5346 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.31150485575199",
- "latitude": "55.83487880338596",
- "address": "улица Народного Ополчения, 21",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/4A458934-A33C-44C2-95C0-3D603538E396.jpg",
- "trainings": 1
- },
- {
- "id": 5347,
- "name": "№5347 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.415774",
- "latitude": "53.882766",
- "address": "Площадка на стадионе \"Торпедо\"",
- "city_id": 378,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/foto1.jpg",
- "trainings": 1
- },
- {
- "id": 5349,
- "name": "№5349 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.867676",
- "latitude": "56.014051",
- "address": "Дзержинец 28",
- "city_id": 109,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160709_160523.jpg",
- "trainings": 3
- },
- {
- "id": 5350,
- "name": "№5350 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "49.14721020000002",
- "latitude": "55.79856729999999",
- "address": "Казань, парк Горького",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/9A8B5361-C32E-4AB0-9031-1FC6C3376D6D.jpg",
- "trainings": 1
- },
- {
- "id": 5351,
- "name": "№5351 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.860306",
- "latitude": "56.00997",
- "address": "Дзержинец 2",
- "city_id": 109,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ 284.jpg",
- "trainings": 2
- },
- {
- "id": 5352,
- "name": "№5352 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.804693",
- "latitude": "56.004544",
- "address": "мкр. Мамонтовка, ул. Рабочая 2",
- "city_id": 109,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ Рабочая 273.jpg",
- "trainings": 0
- },
- {
- "id": 5353,
- "name": "№5353 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.805344",
- "latitude": "56.001669",
- "address": "мкр. Мамонтовка, ул. Рабочая 16",
- "city_id": 109,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/ Рабочая 16.jpg",
- "trainings": 0
- },
- {
- "id": 5354,
- "name": "№5354 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.52165500000001",
- "latitude": "55.642979",
- "address": "Миклухо-Маклая 22",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/C67207E9-8722-4C0D-B00F-02509AE14345.jpg",
- "trainings": 2
- },
- {
- "id": 5356,
- "name": "№5356 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.65904974192381",
- "latitude": "55.715831843834465",
- "address": "Восточная ул, 4ас8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160712_144843.jpg",
- "trainings": 1
- },
- {
- "id": 5357,
- "name": "№5357 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.264768",
- "latitude": "46.702894",
- "address": "Парк поддубного",
- "city_id": 724,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160712_134033.jpg",
- "trainings": 2
- },
- {
- "id": 5360,
- "name": "№5360 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.76605077087879",
- "latitude": "55.69473309762777",
- "address": "Волжский бульвар, 53А, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160712_151014.jpg",
- "trainings": 10
- },
- {
- "id": 5361,
- "name": "№5361 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.220421666666653",
- "latitude": "60.00293611666667",
- "address": "Saint Petersburg",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/7FF1253D-5849-4008-B871-808737D63259.jpg",
- "trainings": 5
- },
- {
- "id": 5363,
- "name": "№5363 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.754034",
- "latitude": "46.416492",
- "address": "10-я станция Фонтанской дороги",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160709191022.jpg",
- "trainings": 2
- },
- {
- "id": 5364,
- "name": "№5364 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.52569232136011",
- "latitude": "55.81902222216761",
- "address": "улица Большая Академическая, 8к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/B926DFF7-1CE4-4E3A-A1F4-F4D468F6084B.jpg",
- "trainings": 0
- },
- {
- "id": 5365,
- "name": "№5365 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.53009282052517",
- "latitude": "55.81226926884769",
- "address": "2-й Амбулаторный проезд, 11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/611CCB42-8AE1-4380-9705-F9CCE2B31A89.jpg",
- "trainings": 0
- },
- {
- "id": 5367,
- "name": "№5367 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.301832999999988",
- "latitude": "59.955882",
- "address": "м.Спортивная, ул. Лизы Чайкиной, 14",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/image1486.jpeg",
- "trainings": 4
- },
- {
- "id": 5369,
- "name": "№5369 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.16210749514034",
- "latitude": "44.490627720572895",
- "address": "Naberezhnaya ul., Lenina, Rostov Oblast",
- "city_id": 557,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160715_194430.jpg",
- "trainings": 1
- },
- {
- "id": 5372,
- "name": "№5372 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "50.223039127886295",
- "latitude": "53.24341569896192",
- "address": "Парк воронежские озера",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160705_041950.jpg",
- "trainings": 3
- },
- {
- "id": 5376,
- "name": "№5376 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.72269996255636",
- "latitude": "55.41468219389041",
- "address": "ул. Шибанкова д47",
- "city_id": 85,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160717_101510.jpg",
- "trainings": 0
- },
- {
- "id": 5378,
- "name": "№5378 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.5493293721579",
- "latitude": "55.80193878622335",
- "address": "Планетная 16",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/F8A3636E-6F2A-4C57-BE12-1D29971A51E6.jpg",
- "trainings": 0
- },
- {
- "id": 5379,
- "name": "№5379 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.76116470809817",
- "latitude": "55.67845361312449",
- "address": "Совхозная 49",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/C2919BA1-116C-4306-9869-B191F619EE83.jpg",
- "trainings": 1
- },
- {
- "id": 5380,
- "name": "№5380 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.850606",
- "latitude": "55.772477",
- "address": "Во дворе Некрасова 16",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1534.JPG",
- "trainings": 1
- },
- {
- "id": 5381,
- "name": "№5381 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.855294",
- "latitude": "55.767426",
- "address": "За ДК Мир",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1547.JPG",
- "trainings": 0
- },
- {
- "id": 5382,
- "name": "№5382 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.51452402025461",
- "latitude": "50.4424809010228",
- "address": "сквер Шевченко",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160718_054718.jpg",
- "trainings": 1
- },
- {
- "id": 5383,
- "name": "№5383 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.997374534606934",
- "latitude": "55.74497155411845",
- "address": "Ул.Маяковского 42, Площадка во дворе",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/BAE91AA4-4CF2-4CDB-AA81-676A24326C90.jpg",
- "trainings": 3
- },
- {
- "id": 5384,
- "name": "№5384 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.867706999999996",
- "latitude": "55.853844",
- "address": "деревня Осташево, улица Докучаевой, парк",
- "city_id": 20,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-20-06-05-50-nea.jpg",
- "trainings": 0
- },
- {
- "id": 5386,
- "name": "№5386 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.54729434102774",
- "latitude": "49.594891252878874",
- "address": "между стадионом и Спартаком",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/runtastic2016-06-30_05_36_03.jpg",
- "trainings": 0
- },
- {
- "id": 5387,
- "name": "№5387 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "158.633115",
- "latitude": "53.090596",
- "address": "Северо-Восточное шоссе, лыжная база Лесная",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image17.jpeg",
- "trainings": 1
- },
- {
- "id": 5388,
- "name": "№5388 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.704382",
- "latitude": "55.744733",
- "address": "Упорный переулок, 5/9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160719_143740.jpg",
- "trainings": 0
- },
- {
- "id": 5389,
- "name": "№5389 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.70121688",
- "latitude": "55.74550362",
- "address": "улица Старообрядческая, 17",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160719_145703.jpg",
- "trainings": 0
- },
- {
- "id": 5390,
- "name": "№5390 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "28.28076560050249",
- "latitude": "57.817193572416116",
- "address": "Западная д.12",
- "city_id": 107,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/Mhd1tALfPR4.jpg",
- "trainings": 3
- },
- {
- "id": 5391,
- "name": "№5391 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.93973697721958",
- "latitude": "43.13133643281528",
- "address": "Сельская 7",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160720_174354.jpg",
- "trainings": 0
- },
- {
- "id": 5392,
- "name": "№5392 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.846461",
- "latitude": "58.051193",
- "address": "Волжская набережная",
- "city_id": 646,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/DiDicr5sxeg.jpg",
- "trainings": 2
- },
- {
- "id": 5393,
- "name": "№5393 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.66544739719263",
- "latitude": "55.76463173148759",
- "address": "Гороховский 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/89FDC9E1-3B84-4230-8FAD-3665B879A019.jpg",
- "trainings": 2
- },
- {
- "id": 5394,
- "name": "№5394 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.53219215202846",
- "latitude": "55.6896400172782",
- "address": "Строителей 10/9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/D2077EDC-60CA-426A-B665-D168222A46B4.jpg",
- "trainings": 2
- },
- {
- "id": 5395,
- "name": "№5395 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "51.144276",
- "latitude": "43.647814",
- "address": "14-й Микрорайон, Набережная ",
- "city_id": 599,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20160722_192321.jpg",
- "trainings": 2
- },
- {
- "id": 5396,
- "name": "№5396 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.391278333333275",
- "latitude": "55.71936166666666",
- "address": "улица Говорова",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4CA183E3-1B1E-4195-B699-98C0AB5C9FC4.jpg",
- "trainings": 2
- },
- {
- "id": 5397,
- "name": "№5397 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "133.06015",
- "latitude": "42.77451666666666",
- "address": "Восточный проспект",
- "city_id": 679,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/04CED7BF-6E3D-47D2-B5FA-3252F114AA98.jpg",
- "trainings": 0
- },
- {
- "id": 5398,
- "name": "№5398 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.6460290421151",
- "latitude": "55.820055892743",
- "address": "Ярославская 15к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/173634E5-266A-4498-9C8C-E01D3A1A572B.jpg",
- "trainings": 2
- },
- {
- "id": 5399,
- "name": "№5399 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.51906254",
- "latitude": "55.59664317",
- "address": "Вильнюсская улица, 17 строение 1, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160726_064743.jpg",
- "trainings": 2
- },
- {
- "id": 5401,
- "name": "№5401 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "83.68346999999994",
- "latitude": "53.355985",
- "address": "Энтузиастов 12б",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_3788.JPG",
- "trainings": 5
- },
- {
- "id": 5402,
- "name": "№5402 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.58321606557591",
- "latitude": "55.72041932964299",
- "address": "Фрунзенская набережная 40",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/63915A8D-BA18-408D-8A24-BC6F0ED75314.jpg",
- "trainings": 0
- },
- {
- "id": 5403,
- "name": "№5403 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.58346033057023",
- "latitude": "55.72073910823019",
- "address": "Фрунзенская набережная 38",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/C11CDE5F-C5C8-44FE-98BE-81B549F0C35C.jpg",
- "trainings": 1
- },
- {
- "id": 5405,
- "name": "№5405 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.61066948067175",
- "latitude": "55.71265261625472",
- "address": "Серпуховской вал 24к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/7FE958C9-42BC-438D-8B80-A42866D35C84.jpg",
- "trainings": 0
- },
- {
- "id": 5406,
- "name": "№5406 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.88926932215691",
- "latitude": "57.63441511066483",
- "address": "Tereshkovoy ulitsa",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/AC6A4A38-533B-4B05-A930-F7330644ECB8.jpg",
- "trainings": 0
- },
- {
- "id": 5408,
- "name": "№5408 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.469897",
- "latitude": "55.567221",
- "address": "лазурная 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/FullSizeRender53.jpg",
- "trainings": 3
- },
- {
- "id": 5409,
- "name": "№5409 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.02815699999996",
- "latitude": "55.025858",
- "address": "Высоцкого 52/3",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/1469707538918987077698.jpg",
- "trainings": 1
- },
- {
- "id": 5410,
- "name": "№5410 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.02576099999999",
- "latitude": "55.026579",
- "address": "Высоцкого 50/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160728_191534.jpg",
- "trainings": 1
- },
- {
- "id": 5412,
- "name": "№5412 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.02489500000001",
- "latitude": "55.03075",
- "address": "Высоцкого 36/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160728_193041.jpg",
- "trainings": 1
- },
- {
- "id": 5413,
- "name": "№5413 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.551569",
- "latitude": "55.842015",
- "address": "Большая академическая 73 к.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160728_193507.jpg",
- "trainings": 3
- },
- {
- "id": 5414,
- "name": "№5414 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "44.0416755",
- "latitude": "56.2237272",
- "address": "д. Федяково",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/744E6C1F-59EB-48FD-8817-3977C70E4659.jpg",
- "trainings": 1
- },
- {
- "id": 5417,
- "name": "№5417 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.58786",
- "latitude": "55.685557",
- "address": "Винокурова 12к4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160729_091746.jpg",
- "trainings": 7
- },
- {
- "id": 5418,
- "name": "№5418 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.63643333333334",
- "latitude": "55.77976666666667",
- "address": "Протопоповский переулок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/4F80201F-93EE-49C0-B62B-4169851C8ACE.jpg",
- "trainings": 0
- },
- {
- "id": 5419,
- "name": "№5419 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "23.364450484514236",
- "latitude": "42.68702029219681",
- "address": "ul.Kalimanrsi 84",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/Screenshot_2016-07-30-14-03-06.png",
- "trainings": 0
- },
- {
- "id": 5422,
- "name": "№5422 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.6716925",
- "latitude": "55.63271693",
- "address": "Ереванская улица, 9 корпус 2 строение 2, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160730_160433.jpg",
- "trainings": 0
- },
- {
- "id": 5423,
- "name": "№5423 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.59968833333333",
- "latitude": "55.64947666666667",
- "address": "Азовская улица, 31, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160730_171223.jpg",
- "trainings": 1
- },
- {
- "id": 5424,
- "name": "№5424 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.688609",
- "latitude": "47.318403",
- "address": "мк-рн Суворовский",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160731_113753.jpg",
- "trainings": 3
- },
- {
- "id": 5425,
- "name": "№5425 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.64677833333334",
- "latitude": "47.20052333333333",
- "address": "Батуринская, 165/13",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160731_174840.jpg",
- "trainings": 0
- },
- {
- "id": 5426,
- "name": "№5426 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.714691",
- "latitude": "54.179002",
- "address": "ул.Кутузова, Стадион Металлург ",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/image362535.jpeg",
- "trainings": 1
- },
- {
- "id": 5427,
- "name": "№5427 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.737753",
- "latitude": "43.618951",
- "address": "Конституции СССР, 56",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-27-13-08-03-ot4.jpg",
- "trainings": 1
- },
- {
- "id": 5428,
- "name": "№5428 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.30311666666667",
- "latitude": "60.0438695",
- "address": "Nikol'skaya ulitsa",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2BBAA4FF-BD5C-446A-A1D6-C3263365C4FD.jpg",
- "trainings": 0
- },
- {
- "id": 5429,
- "name": "№5429 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.464470230042934",
- "latitude": "55.66988009959459",
- "address": "проезд Олимпийской Деревни, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160801_194517.jpg",
- "trainings": 7
- },
- {
- "id": 5430,
- "name": "№5430 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.45441270060837",
- "latitude": "55.67035916727036",
- "address": "Никулинская улица, 25, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160801_200128.jpg",
- "trainings": 4
- },
- {
- "id": 5431,
- "name": "№5431 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "85.174003",
- "latitude": "52.515437",
- "address": "Советская 210/1",
- "city_id": 569,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/21041.jpg",
- "trainings": 4
- },
- {
- "id": 5432,
- "name": "№5432 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "20.145018",
- "latitude": "54.938547",
- "address": "Майский пр. 3",
- "city_id": 7947,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/image9686.jpeg",
- "trainings": 0
- },
- {
- "id": 5434,
- "name": "№5434 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "131.956187",
- "latitude": "43.124305",
- "address": "Адмирала Кузнецова, 40а",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1295.jpg",
- "trainings": 2
- },
- {
- "id": 5435,
- "name": "№5435 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.66344",
- "latitude": "55.70224",
- "address": "ул Трофимова 6А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160802_193935.jpg",
- "trainings": 0
- },
- {
- "id": 5436,
- "name": "№5436 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.976687",
- "latitude": "55.791891",
- "address": "улица Твардовского, 13",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/tM-tyCTlYS4.jpg",
- "trainings": 9
- },
- {
- "id": 5437,
- "name": "№5437 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.971535",
- "latitude": "55.03591",
- "address": "Богаткова 175",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/100_9329.JPG",
- "trainings": 2
- },
- {
- "id": 5440,
- "name": "№5440 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.725661277770996",
- "latitude": "47.291514058504944",
- "address": "парк \"Дружба\"",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/h6kCm5e2ymfTDu5w3rFGQ.JPG",
- "trainings": 2
- },
- {
- "id": 5441,
- "name": "№5441 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.91622424125671",
- "latitude": "45.06522471105515",
- "address": "улица Красных Партизан",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/image7088.jpeg",
- "trainings": 2
- },
- {
- "id": 5442,
- "name": "№5442 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.00116227650881",
- "latitude": "55.39137993279007",
- "address": "ул. 50 лет ВЛКСМ, дом 9, СК \"Факел\"",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/0NUPa6EFHpI.jpg",
- "trainings": 2
- },
- {
- "id": 5443,
- "name": "№5443 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "47.65793",
- "latitude": "45.7722",
- "address": "Село Мумра,Икрянинский район, Астраханская область",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160806_170948.jpg",
- "trainings": 1
- },
- {
- "id": 5444,
- "name": "№5444 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "51.3372",
- "latitude": "53.381711",
- "address": "улица Гагарина, 50",
- "city_id": 7963,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_9581.JPG",
- "trainings": 0
- },
- {
- "id": 5445,
- "name": "№5445 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.56586016159278",
- "latitude": "55.72036472154382",
- "address": "улица Ефремова",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/E412B37F-FE88-484D-AECA-867906FF7F8C.jpg",
- "trainings": 1
- },
- {
- "id": 5446,
- "name": "№5446 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.137308",
- "latitude": "42.621897",
- "address": "Под Андреевкой бухта Идол, МЭС, ул. Академическая, 1",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/gmR6EWJ1sSY28.jpg",
- "trainings": 1
- },
- {
- "id": 5447,
- "name": "№5447 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.930039",
- "latitude": "55.796265",
- "address": "1-я Балашиха, ул. Флёрова, дом 4",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/6HRRT-DcfS0.jpg",
- "trainings": 0
- },
- {
- "id": 5448,
- "name": "№5448 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.44199482727557",
- "latitude": "55.72232948155675",
- "address": "Можайское шоссе 4к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/76EEB9F4-260B-4CFE-94E7-0C8A1944793F.jpg",
- "trainings": 0
- },
- {
- "id": 5449,
- "name": "№5449 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.6179975271225",
- "latitude": "55.63524488980894",
- "address": "Varshavskoye shosse",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/CEB0E581-A44C-4673-B583-F3620F0C7627.jpg",
- "trainings": 0
- },
- {
- "id": 5450,
- "name": "№5450 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "158.631632",
- "latitude": "53.056727",
- "address": "Горького 35",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_1475.JPG",
- "trainings": 2
- },
- {
- "id": 5451,
- "name": "№5451 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.312508999999977",
- "latitude": "59.85014499999999",
- "address": "Варшавская улица, 63 корпус 2,",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160810_150630.jpg",
- "trainings": 1
- },
- {
- "id": 5452,
- "name": "№5452 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.659312",
- "latitude": "55.64659",
- "address": "Пролетарский проспект, д 7 стр 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/20160810_171032.jpg",
- "trainings": 1
- },
- {
- "id": 5454,
- "name": "№5454 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.24324666666667",
- "latitude": "60.01125278333333",
- "address": "Aviakonstruktorov prospekt",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/91CCE363-DCFE-4F1A-AB51-66A6DA28A154.jpg",
- "trainings": 0
- },
- {
- "id": 5456,
- "name": "№5456 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.571555",
- "latitude": "55.690083",
- "address": "дмитрия ульянова 15к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160810_19031571.jpg",
- "trainings": 1
- },
- {
- "id": 5458,
- "name": "№5458 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.56975409",
- "latitude": "55.7249667",
- "address": "Kooperativnaya ulitsa, 3 корпус 6, Moskva, Russia",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160811_153538.jpg",
- "trainings": 1
- },
- {
- "id": 5459,
- "name": "№5459 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.60930333333334",
- "latitude": "55.85406333333334",
- "address": "Отрадный проезд, д4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/5C6E8DF5-8D37-48DA-A08C-4684348F9C55.jpg",
- "trainings": 2
- },
- {
- "id": 5460,
- "name": "№5460 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.66998333333333",
- "latitude": "55.86661166666666",
- "address": "улица Ленская ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/848E1683-307F-440C-A429-24DEF501F987.jpg",
- "trainings": 2
- },
- {
- "id": 5461,
- "name": "№5461 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "49.18223440647125",
- "latitude": "55.816320654012",
- "address": "Сибирский тракт 34",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/P_20160803_154119.jpg",
- "trainings": 3
- },
- {
- "id": 5462,
- "name": "№5462 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.306476100000054",
- "latitude": "44.8911142",
- "address": "протапова ",
- "city_id": 4,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/A1D471D5-03A8-4329-940F-6EF30528067D.jpg",
- "trainings": 3
- },
- {
- "id": 5463,
- "name": "№5463 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "54.158168",
- "latitude": "56.773343",
- "address": "Ленина 61, за домом спорта.",
- "city_id": 7442,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160803_113606.jpg",
- "trainings": 1
- },
- {
- "id": 5464,
- "name": "№5464 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.50063106774381",
- "latitude": "55.72681766162947",
- "address": "Парк Победы, Поклонная гора",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 13,
- "preview": "https://workout.su/uploads/userfiles/JFnWegeF0kI.jpg",
- "trainings": 43
- },
- {
- "id": 5467,
- "name": "№5467 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.94970166666667",
- "latitude": "59.85492666666667",
- "address": "Ропшинское шоссе, 5, Петергоф, город Санкт-Петербург, Россия",
- "city_id": 101,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160815_140015.jpg",
- "trainings": 0
- },
- {
- "id": 5468,
- "name": "№5468 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.94992166666667",
- "latitude": "59.85497999999999",
- "address": "Ропшинское шоссе, 5, Петергоф, город Санкт-Петербург, Россия",
- "city_id": 101,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160815_140015.jpg",
- "trainings": 0
- },
- {
- "id": 5472,
- "name": "№5472 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.816551000000004",
- "latitude": "55.807727",
- "address": "15-я Парковая дом 47к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/image5822.jpeg",
- "trainings": 4
- },
- {
- "id": 5473,
- "name": "№5473 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.228109",
- "latitude": "59.828545",
- "address": "Козлова 51 / Народного Ополчения 157",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_1312.jpg",
- "trainings": 5
- },
- {
- "id": 5474,
- "name": "№5474 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "133.051575",
- "latitude": "42.76246666666667",
- "address": "Находка",
- "city_id": 679,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/305D6BB0-9E19-4DB6-B1EB-133FAFD704AF.jpg",
- "trainings": 0
- },
- {
- "id": 5475,
- "name": "№5475 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.37513975988177",
- "latitude": "50.38141808011604",
- "address": "перша школа",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/14EDC0F7-56A4-418A-974F-FE05B5468B31.jpg",
- "trainings": 1
- },
- {
- "id": 5476,
- "name": "№5476 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.700143",
- "latitude": "54.192901",
- "address": "Пролетарский парк, ул.Кутузова, ост. Искра",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/image48.jpeg",
- "trainings": 4
- },
- {
- "id": 5477,
- "name": "№5477 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.71261666666667",
- "latitude": "55.81282",
- "address": "улица Глебовская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/015C178D-D192-4B91-87E5-2E55A102BC48.jpg",
- "trainings": 0
- },
- {
- "id": 5478,
- "name": "№5478 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "61.310103",
- "latitude": "55.173051",
- "address": "Братьев Кашириных, 131а",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1.2016-08-01 17-49-4664.JPG",
- "trainings": 1
- },
- {
- "id": 5479,
- "name": "№5479 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.70924500000001",
- "latitude": "55.81309166666666",
- "address": "улица Игральная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6EFD5D48-AF7B-4855-9FA7-CF2393272074.jpg",
- "trainings": 2
- },
- {
- "id": 5482,
- "name": "№5482 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.19786670058966",
- "latitude": "55.68816364959215",
- "address": "Стадион",
- "city_id": 7981,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/image-0-02-01-b48d3f0d01e69e08b705a5a17969e40ca7035fc8d80191f1b65734f6c771c5a9-V.jpg",
- "trainings": 2
- },
- {
- "id": 5485,
- "name": "№5485 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.24568385",
- "latitude": "50.02173027",
- "address": "Shevchenkivs'kyi District, Kharkiv, Kharkiv Oblast",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160821_174045.jpg",
- "trainings": 0
- },
- {
- "id": 5486,
- "name": "№5486 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "113.153095",
- "latitude": "51.901362",
- "address": "Домна",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/qqENTR6w7lA.jpg",
- "trainings": 1
- },
- {
- "id": 5487,
- "name": "№5487 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.159082",
- "latitude": "56.733458",
- "address": "ул Попова 7Б",
- "city_id": 37,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/20160821_13190778.jpg",
- "trainings": 0
- },
- {
- "id": 5488,
- "name": "№5488 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "46.033689",
- "latitude": "51.521481",
- "address": "Чернышевского, 122",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P-MtGvsFOjk.jpg",
- "trainings": 5
- },
- {
- "id": 5489,
- "name": "№5489 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.34798",
- "latitude": "59.98402833333333",
- "address": "Aleksandra Matrosova ulitsa",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/6F22C7AD-8513-48D8-9920-B6966A653050.jpg",
- "trainings": 1
- },
- {
- "id": 5492,
- "name": "№5492 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "28.853686451911926",
- "latitude": "47.00435704045979",
- "address": "Кишинёв, Чисинау",
- "city_id": 445,
- "country_id": 15,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/1E373635-F21A-434F-BD69-30415448158D.jpg",
- "trainings": 2
- },
- {
- "id": 5493,
- "name": "№5493 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.78036583282074",
- "latitude": "56.71326523678961",
- "address": "пр. Ленина",
- "city_id": 7965,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/91244741-ACDD-4E52-A6CC-004AACE53328.jpg",
- "trainings": 1
- },
- {
- "id": 5494,
- "name": "№5494 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "76.90368858784497",
- "latitude": "43.201203619998786",
- "address": "Аль-Фараби,Жарокова",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/VK_Saved_Photo_ 636076845967444287.jpg",
- "trainings": 2
- },
- {
- "id": 5495,
- "name": "№5495 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "158.22629928588867",
- "latitude": "53.00207879478844",
- "address": "Россия",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160825_161405.jpg",
- "trainings": 0
- },
- {
- "id": 5496,
- "name": "№5496 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.55132600000002",
- "latitude": "55.842609",
- "address": "улица Большая академическая",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P1010159.JPG",
- "trainings": 4
- },
- {
- "id": 5498,
- "name": "№5498 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.517471",
- "latitude": "40.202658",
- "address": "Nairi Zaryan st",
- "city_id": 366,
- "country_id": 3,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/8808a3b36b6da27bd3136ccd5e7d0f26_XL.jpg",
- "trainings": 0
- },
- {
- "id": 5499,
- "name": "№5499 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.0860182",
- "latitude": "55.76159178",
- "address": "улица Ленина, 3, Балашиха, Московская область, Россия",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20161027_161159.jpg",
- "trainings": 2
- },
- {
- "id": 5500,
- "name": "№5500 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.907744",
- "latitude": "55.027087",
- "address": "Революции 31",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160827_174351.jpg",
- "trainings": 0
- },
- {
- "id": 5501,
- "name": "№5501 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.08955228",
- "latitude": "55.76286379",
- "address": "улица Парковая, 52, Заря Дпк, Московская область, Россия",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20161027_164336.jpg",
- "trainings": 1
- },
- {
- "id": 5502,
- "name": "№5502 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.908669",
- "latitude": "55.056357",
- "address": "Дуси Ковальчук 258",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160827_164939.jpg",
- "trainings": 0
- },
- {
- "id": 5503,
- "name": "№5503 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "38.09263555",
- "latitude": "55.75949646",
- "address": "улица Лесная, 2, Балашиха, Московская область, Россия",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20161027_165247.jpg",
- "trainings": 0
- },
- {
- "id": 5504,
- "name": "№5504 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.09294814",
- "latitude": "55.75803254",
- "address": "улица Лесная, 4а, Заря, Московская область, Россия",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20161027_165926.jpg",
- "trainings": 1
- },
- {
- "id": 5505,
- "name": "№5505 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.89798695594072",
- "latitude": "55.05973083981174",
- "address": "Дачная 21/4",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160826_165602.jpg",
- "trainings": 0
- },
- {
- "id": 5506,
- "name": "№5506 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.08064642",
- "latitude": "55.76394774",
- "address": "улица Садовая, 6, Балашиха, Московская область, Россия",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20161027_173735.jpg",
- "trainings": 0
- },
- {
- "id": 5507,
- "name": "№5507 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.07922576",
- "latitude": "55.76366233",
- "address": "улица Садовая, 6, Балашиха, Московская область, Россия",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20161027_174027.jpg",
- "trainings": 0
- },
- {
- "id": 5509,
- "name": "№5509 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.07821605",
- "latitude": "55.76138746",
- "address": "Молодежная улица, 20, Балашиха, Московская область, Россия",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20161027_174548.jpg",
- "trainings": 0
- },
- {
- "id": 5510,
- "name": "№5510 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.07737477",
- "latitude": "55.760518",
- "address": "Молодежная улица, 17, Балашиха, Московская область, Россия",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20161027_174713.jpg",
- "trainings": 0
- },
- {
- "id": 5511,
- "name": "№5511 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.07706869000003",
- "latitude": "55.75374953",
- "address": "Ласточкин проезд, Балашиха, Московская область, Россия",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20161027_180519.jpg",
- "trainings": 2
- },
- {
- "id": 5512,
- "name": "№5512 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.386267999999973",
- "latitude": "59.840853",
- "address": "Купчинская 8",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/ 193.JPG",
- "trainings": 6
- },
- {
- "id": 5513,
- "name": "№5513 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "158.661451",
- "latitude": "53.046915",
- "address": "ул. Кроноцкая 12а",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_1939.JPG",
- "trainings": 1
- },
- {
- "id": 5514,
- "name": "№5514 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "73.442109",
- "latitude": "61.244648",
- "address": "Пролетарский 8/3",
- "city_id": 565,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/WP_20160828_12_10_53_Smart.jpg",
- "trainings": 2
- },
- {
- "id": 5515,
- "name": "№5515 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.07647897",
- "latitude": "55.76016628",
- "address": "Молодежная улица, 15а, Заря, Московская область, Россия",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20161028_170314.jpg",
- "trainings": 0
- },
- {
- "id": 5516,
- "name": "№5516 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.07685934",
- "latitude": "55.75855984",
- "address": "улица Маршала Батицкого, 9, Балашиха, Московская область, Россия",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20161028_170921.jpg",
- "trainings": 0
- },
- {
- "id": 5517,
- "name": "№5517 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "72.513579",
- "latitude": "65.537669",
- "address": "полярная 1/1",
- "city_id": 7967,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_7182.JPG",
- "trainings": 0
- },
- {
- "id": 5518,
- "name": "№5518 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "13.307365",
- "latitude": "49.391478",
- "address": "Klatovy Akatova",
- "city_id": 7970,
- "country_id": 30,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/HmGUQwdijE0.jpg",
- "trainings": 0
- },
- {
- "id": 5519,
- "name": "№5519 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "47.245792",
- "latitude": "56.135674",
- "address": "Карла Маркса, 52а",
- "city_id": 146,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2.1.jpg",
- "trainings": 1
- },
- {
- "id": 5520,
- "name": "№5520 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "47.24449400000003",
- "latitude": "56.137409",
- "address": "Президентский бульвар, 21",
- "city_id": 146,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/11765.jpg",
- "trainings": 1
- },
- {
- "id": 5521,
- "name": "№5521 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.317861",
- "latitude": "60.042679",
- "address": "Выборгское ш., 7к1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20130101_030925.jpg",
- "trainings": 1
- },
- {
- "id": 5522,
- "name": "№5522 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "72.546455",
- "latitude": "65.524685",
- "address": "наб. Оруджева ул., 55",
- "city_id": 7967,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_7200.JPG",
- "trainings": 0
- },
- {
- "id": 5523,
- "name": "№5523 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.554131",
- "latitude": "51.702775",
- "address": "Борщевские пески",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/BBpsKAkjpao.jpg",
- "trainings": 1
- },
- {
- "id": 5525,
- "name": "№5525 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.590299",
- "latitude": "55.815415",
- "address": "ул. Гончарова, 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160827_112443.jpg",
- "trainings": 0
- },
- {
- "id": 5526,
- "name": "№5526 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.39522749185562",
- "latitude": "52.06538585829356",
- "address": "КСК,фадеева 33 ",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160830_045244.jpg",
- "trainings": 2
- },
- {
- "id": 5527,
- "name": "№5527 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.542429",
- "latitude": "51.284271",
- "address": "Школа номер 6",
- "city_id": 7911,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/WP_20160830_12_04_19_Pro.jpg",
- "trainings": 1
- },
- {
- "id": 5528,
- "name": "№5528 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "45.966975000000005",
- "latitude": "51.595475",
- "address": "улица Ломоносова, 23, Саратов, Саратовская область, Россия",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160830_180457.jpg",
- "trainings": 1
- },
- {
- "id": 5529,
- "name": "№5529 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "33.08427773416042",
- "latitude": "68.95674122623993",
- "address": "Ленина 41 ",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160830_181511.jpg",
- "trainings": 1
- },
- {
- "id": 5530,
- "name": "№5530 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.122248",
- "latitude": "66.040316",
- "address": "Чернова ",
- "city_id": 7951,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20160801_20515344.jpg",
- "trainings": 1
- },
- {
- "id": 5531,
- "name": "№5531 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "57.157466",
- "latitude": "50.293966",
- "address": " Abulkhair-Khan Ave 52",
- "city_id": 403,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/-kyTjulfI_Y.jpg",
- "trainings": 0
- },
- {
- "id": 5532,
- "name": "№5532 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.160646",
- "latitude": "53.966652",
- "address": "Стадион Машзавод",
- "city_id": 7939,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/image5081.jpeg",
- "trainings": 0
- },
- {
- "id": 5534,
- "name": "№5534 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.244963",
- "latitude": "49.998166",
- "address": "ул.Манизера 12",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/20160901_110150.jpg",
- "trainings": 1
- },
- {
- "id": 5535,
- "name": "№5535 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.771039",
- "latitude": "55.679416",
- "address": "Тихорецкий бульвар, 8А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160803_125220.jpg",
- "trainings": 2
- },
- {
- "id": 5536,
- "name": "№5536 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.71313078701496",
- "latitude": "55.54298395903089",
- "address": "Радужная улица ",
- "city_id": 15,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160308_174434.jpg",
- "trainings": 0
- },
- {
- "id": 5537,
- "name": "№5537 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.71313078701496",
- "latitude": "55.54298395903089",
- "address": "Радужная улица ",
- "city_id": 15,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160308_174434.jpg",
- "trainings": 1
- },
- {
- "id": 5538,
- "name": "№5538 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.71313078701496",
- "latitude": "55.54298395903089",
- "address": "Радужная улица ",
- "city_id": 15,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160308_174434.jpg",
- "trainings": 0
- },
- {
- "id": 5539,
- "name": "№5539 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.677017",
- "latitude": "55.687649",
- "address": "Нагатинская набережная, у недалеко от дома 46",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160817_075307.jpg",
- "trainings": 0
- },
- {
- "id": 5540,
- "name": "№5540 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "53.295922",
- "latitude": "56.874587",
- "address": "Сабурова, 49а",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/P60902-081209.jpg",
- "trainings": 2
- },
- {
- "id": 5541,
- "name": "№5541 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "56.811342999999965",
- "latitude": "59.403691",
- "address": "Толстого 50",
- "city_id": 7956,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-07-14-09-44-pqk.jpg",
- "trainings": 2
- },
- {
- "id": 5542,
- "name": "№5542 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "56.81853699999999",
- "latitude": "59.398907",
- "address": "Челюскинцев, 81",
- "city_id": 7956,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-07-14-09-41-_4b.jpg",
- "trainings": 0
- },
- {
- "id": 5543,
- "name": "№5543 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "50.12008500000002",
- "latitude": "53.210588",
- "address": "Волжский пр. 43",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-07-14-09-37--xo.jpg",
- "trainings": 1
- },
- {
- "id": 5544,
- "name": "№5544 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "50.12875800000006",
- "latitude": "53.198712",
- "address": "Мичурина 6",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-07-14-09-03-uch.jpg",
- "trainings": 0
- },
- {
- "id": 5546,
- "name": "№5546 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.687073",
- "latitude": "47.319493",
- "address": "Ул. Петренко 22",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160902_16204374.jpg",
- "trainings": 2
- },
- {
- "id": 5547,
- "name": "№5547 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "53.30652800000007",
- "latitude": "56.875277",
- "address": "Берша, 25",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/P60902-170959.jpg",
- "trainings": 1
- },
- {
- "id": 5548,
- "name": "№5548 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.963339",
- "latitude": "43.109388",
- "address": "Нейбута 45",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160903_154418.jpg",
- "trainings": 1
- },
- {
- "id": 5549,
- "name": "№5549 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.51724403",
- "latitude": "55.67378097",
- "address": "улица Удальцова, 4, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/20160903_123443.jpg",
- "trainings": 6
- },
- {
- "id": 5550,
- "name": "№5550 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.674848",
- "latitude": "55.639826",
- "address": "Москва, ул. Кошкина, 13",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/16248.jpg",
- "trainings": 3
- },
- {
- "id": 5551,
- "name": "№5551 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.510768",
- "latitude": "55.677518",
- "address": "пр.Вернадского 37 к1а (во дворе дома)",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/20160903_122020.jpg",
- "trainings": 4
- },
- {
- "id": 5552,
- "name": "№5552 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.673571",
- "latitude": "55.757398",
- "address": "Самокатная улица, 4Б строение 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20160903_182326.jpg",
- "trainings": 1
- },
- {
- "id": 5554,
- "name": "№5554 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "74.47491187602282",
- "latitude": "62.26496175669538",
- "address": "Сибирская, 3",
- "city_id": 7438,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0840.JPG",
- "trainings": 1
- },
- {
- "id": 5555,
- "name": "№5555 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "74.47783783078194",
- "latitude": "62.25501635558956",
- "address": "Сибирская, 3",
- "city_id": 7438,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0840.JPG",
- "trainings": 1
- },
- {
- "id": 5561,
- "name": "№5561 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "74.47820998728275",
- "latitude": "62.25523237431627",
- "address": "Сибирская, 3",
- "city_id": 7438,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0838.JPG",
- "trainings": 0
- },
- {
- "id": 5562,
- "name": "№5562 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.47662513703108",
- "latitude": "62.274202423353174",
- "address": "Северная, 1",
- "city_id": 7438,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/DSC_0831.JPG",
- "trainings": 0
- },
- {
- "id": 5563,
- "name": "№5563 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.28262857",
- "latitude": "59.94581264",
- "address": "2-я линия В. О., 43, Санкт-Петербург, Россия",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_2016-09-05_063543_HDR.jpg",
- "trainings": 2
- },
- {
- "id": 5564,
- "name": "№5564 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "56.85285699999997",
- "latitude": "59.412442",
- "address": "Мира 103",
- "city_id": 7956,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-07-14-09-46--26.jpg",
- "trainings": 0
- },
- {
- "id": 5565,
- "name": "№5565 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "56.80902000000003",
- "latitude": "59.41292",
- "address": "Красноборова 11",
- "city_id": 7956,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-07-14-09-08-vak.jpg",
- "trainings": 0
- },
- {
- "id": 5566,
- "name": "№5566 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.720738452639807",
- "latitude": "46.44167858699824",
- "address": "ул.Маршала Малиновского, 18а",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-06-08-09-43-wod.jpg",
- "trainings": 0
- },
- {
- "id": 5567,
- "name": "№5567 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "158.63264279999999",
- "latitude": "53.0532149",
- "address": "ул. Ватутина 1 (СШ № 43)",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-06-12-09-20-yvu.jpg",
- "trainings": 0
- },
- {
- "id": 5568,
- "name": "№5568 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "40.80156362059324",
- "latitude": "51.84083944869754",
- "address": "Эртиль ",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-06-16-09-03-d7a.jpg",
- "trainings": 1
- },
- {
- "id": 5569,
- "name": "№5569 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "56.833960299999944",
- "latitude": "59.40472719999999",
- "address": "Свердлова, 100",
- "city_id": 7956,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-07-15-09-10-jps.jpg",
- "trainings": 0
- },
- {
- "id": 5570,
- "name": "№5570 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "74.60134819149971",
- "latitude": "42.837007402189464",
- "address": "Суеркулова, 8 (Школа-гимназия №62)",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-13-05-03-33-iou.jpg",
- "trainings": 0
- },
- {
- "id": 5571,
- "name": "№5571 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "56.051907744641085",
- "latitude": "53.46084333409634",
- "address": "Лыжная база",
- "city_id": 7977,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-09-12-09-22-zyl.jpg",
- "trainings": 1
- },
- {
- "id": 5574,
- "name": "№5574 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "56.20505690574646",
- "latitude": "57.98328364858341",
- "address": "Мира, 12",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-09-21-09-36-avc.jpeg",
- "trainings": 8
- },
- {
- "id": 5575,
- "name": "№5575 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.88132601976395",
- "latitude": "54.767572708809425",
- "address": "",
- "city_id": 7384,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-09-23-09-06-4wv.jpg",
- "trainings": 1
- },
- {
- "id": 5577,
- "name": "№5577 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.27598499999999",
- "latitude": "54.0166231",
- "address": "Россия, Тульская область, Новомосковск, Детский парк",
- "city_id": 559,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-10-22-09-08-bxy.jpg",
- "trainings": 3
- },
- {
- "id": 5578,
- "name": "№5578 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.87795954942703",
- "latitude": "56.260450099404",
- "address": "Дьяконова, 14",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-11-07-09-42-lbo.jpg",
- "trainings": 1
- },
- {
- "id": 5579,
- "name": "№5579 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.865143954753876",
- "latitude": "56.25949366878448",
- "address": "Раевского, 3",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-11-07-09-57-dig.jpg",
- "trainings": 0
- },
- {
- "id": 5580,
- "name": "№5580 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.3169550317383",
- "latitude": "55.82530376086742",
- "address": "ул. Ленина, д. 9, школа #11",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-11-12-09-31-wwb.jpg",
- "trainings": 1
- },
- {
- "id": 5581,
- "name": "№5581 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.33440701586915",
- "latitude": "55.81251065858462",
- "address": "Ул. Вокзальная, 19Б",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-12-09-09-27-4xj.jpg",
- "trainings": 1
- },
- {
- "id": 5582,
- "name": "№5582 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "42.19786129059912",
- "latitude": "47.51140487954339",
- "address": "г. Волгодонск, ул. Молодежная, 3",
- "city_id": 592,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-12-16-09-22-_l9.jpg",
- "trainings": 0
- },
- {
- "id": 5585,
- "name": "№5585 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.401436884933446",
- "latitude": "55.82080145016213",
- "address": "Исаковского 6 с 5 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-13-16-09-08-umw.jpg",
- "trainings": 3
- },
- {
- "id": 5588,
- "name": "№5588 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "38.954660296440125",
- "latitude": "45.06150271022374",
- "address": "Яна полуяная 40",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-14-10-09-27-cre.jpg",
- "trainings": 1
- },
- {
- "id": 5593,
- "name": "№5593 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.94034921831053",
- "latitude": "55.79940256804765",
- "address": "Парковая улица, 2",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-15-11-09-34-o4h.jpg",
- "trainings": 6
- },
- {
- "id": 5595,
- "name": "№5595 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "49.615409821271896",
- "latitude": "58.60511873128512",
- "address": "Ломоносова 16а",
- "city_id": 55,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-15-18-09-27-k7a.jpg",
- "trainings": 1
- },
- {
- "id": 5597,
- "name": "№5597 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "131.99384220066372",
- "latitude": "43.37248320011574",
- "address": "Дрегиса 14",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-16-17-09-45-o8y.jpg",
- "trainings": 1
- },
- {
- "id": 5598,
- "name": "№5598 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "57.142767906188965",
- "latitude": "50.28284048667342",
- "address": "Спорт клуб Hammer, Батыс 2",
- "city_id": 7972,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-03-17-12-37-ido.jpg",
- "trainings": 0
- },
- {
- "id": 5602,
- "name": "№5602 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "87.11965442051542",
- "latitude": "53.901817957769836",
- "address": "11-й Гвардейской Армии",
- "city_id": 568,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-16-20-09-20-2nw.jpg",
- "trainings": 1
- },
- {
- "id": 5603,
- "name": "№5603 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "87.13394179035186",
- "latitude": "53.895958311152135",
- "address": "ул. Новоселов, 38",
- "city_id": 568,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-16-20-09-52-wun.jpg",
- "trainings": 1
- },
- {
- "id": 5605,
- "name": "№5605 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.73902541798907",
- "latitude": "55.39139479027922",
- "address": "улица Парк Воровского, 12, Наро-Фоминск, Московская область, Россия",
- "city_id": 85,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-24-11-09-22-_0m.jpg",
- "trainings": 2
- },
- {
- "id": 5606,
- "name": "№5606 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.40414500236511",
- "latitude": "55.709095371866205",
- "address": "Сколковское шоссе дом 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-17-09-09-30-kjl.jpg",
- "trainings": 6
- },
- {
- "id": 5609,
- "name": "№5609 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "59.885739639147914",
- "latitude": "56.8940932196456",
- "address": "улица Ильича 33",
- "city_id": 7976,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-18-05-09-03-kc2.jpg",
- "trainings": 1
- },
- {
- "id": 5610,
- "name": "№5610 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.75037795305252",
- "latitude": "55.60642367203767",
- "address": "Гурьевский пр-д, 17к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-18-13-09-21-fyh.jpg",
- "trainings": 1
- },
- {
- "id": 5612,
- "name": "№5612 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.32042359259026",
- "latitude": "55.81952712365066",
- "address": "Ленина, 2",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-19-09-09-03-bvb.jpg",
- "trainings": 0
- },
- {
- "id": 5613,
- "name": "№5613 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.256996399999935",
- "latitude": "59.93438929999999",
- "address": "Василеостровец",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-19-10-09-24-iun.jpg",
- "trainings": 3
- },
- {
- "id": 5614,
- "name": "№5614 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.42561279999995",
- "latitude": "55.8481953",
- "address": "Электростальское ш., 1",
- "city_id": 90,
- "country_id": 17,
- "comments_count": 8,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-19-13-09-35-mds.jpg",
- "trainings": 4
- },
- {
- "id": 5615,
- "name": "№5615 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "92.8549081631354",
- "latitude": "56.0048139141117",
- "address": "Красноярск, набережная",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-19-16-09-02-gba.jpg",
- "trainings": 1
- },
- {
- "id": 5616,
- "name": "№5616 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.611214220523834",
- "latitude": "55.66892669652687",
- "address": "нагорная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-20-18-09-33-xk1.jpg",
- "trainings": 1
- },
- {
- "id": 5619,
- "name": "№5619 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.734545499336264",
- "latitude": "55.71068846159023",
- "address": "1-ый Саратовский пр-д, 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-21-12-11-09-sbf.jpg",
- "trainings": 4
- },
- {
- "id": 5620,
- "name": "№5620 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.73381501586914",
- "latitude": "55.712351559368834",
- "address": "1-й Саратовский проезд, 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-21-12-11-10-8ou.jpg",
- "trainings": 1
- },
- {
- "id": 5621,
- "name": "№5621 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.73271292448044",
- "latitude": "55.70740890000565",
- "address": "Волгоградский проспект, 46/15с5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-21-12-11-27-kvt.jpg",
- "trainings": 1
- },
- {
- "id": 5622,
- "name": "№5622 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.25985014438629",
- "latitude": "46.70361481781354",
- "address": "",
- "city_id": 724,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-23-01-09-49-hri.jpg",
- "trainings": 3
- },
- {
- "id": 5623,
- "name": "№5623 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.25995206832886",
- "latitude": "46.717062725668924",
- "address": "",
- "city_id": 724,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-23-01-09-00-did.jpg",
- "trainings": 1
- },
- {
- "id": 5625,
- "name": "№5625 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "29.73250150680542",
- "latitude": "52.62855017703613",
- "address": "ул. Калинина-Свердлова",
- "city_id": 7946,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-23-22-09-46-gau.jpg",
- "trainings": 0
- },
- {
- "id": 5629,
- "name": "№5629 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.488824099302292",
- "latitude": "50.525410324265565",
- "address": "озерная ",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-22-21-09-00-gtr.jpg",
- "trainings": 0
- },
- {
- "id": 5631,
- "name": "№5631 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.485964999999965",
- "latitude": "55.84795",
- "address": "Ул.Авангардная, 11А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-23-12-09-02-ami.jpg",
- "trainings": 1
- },
- {
- "id": 5634,
- "name": "№5634 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "57.21607804298401",
- "latitude": "50.28257996909045",
- "address": "ул. Ломоносова д.2",
- "city_id": 7972,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-23-14-09-40-64z.jpg",
- "trainings": 0
- },
- {
- "id": 5636,
- "name": "№5636 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "94.70960799604654",
- "latitude": "55.9672019861505",
- "address": "ул. 40 лет Октября, 38, Заозерный, Красноярский край, Россия",
- "city_id": 7940,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-23-17-09-07-hy8.jpg",
- "trainings": 1
- },
- {
- "id": 5639,
- "name": "№5639 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "65.52455600000008",
- "latitude": "57.1382731",
- "address": "сквер Комсомольский",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-23-17-09-06-uys.jpg",
- "trainings": 2
- },
- {
- "id": 5640,
- "name": "№5640 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "65.57758033275604",
- "latitude": "57.14933052599077",
- "address": "",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-23-17-09-22-ly6.jpg",
- "trainings": 3
- },
- {
- "id": 5643,
- "name": "№5643 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.60694385781096",
- "latitude": "55.694951391390646",
- "address": "Загородное шоссе, дом 6к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-23-20-09-48-yw4.jpg",
- "trainings": 0
- },
- {
- "id": 5645,
- "name": "№5645 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.386209850401315",
- "latitude": "55.72975149975649",
- "address": "проспект мира 17А",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-23-23-09-21-c96.jpg",
- "trainings": 1
- },
- {
- "id": 5646,
- "name": "№5646 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.81967258833015",
- "latitude": "56.01313740878078",
- "address": "копылова 48",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-24-05-09-16-vjw.jpg",
- "trainings": 1
- },
- {
- "id": 5649,
- "name": "№5649 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.17645648121834",
- "latitude": "44.51086979106001",
- "address": "Свердлова ",
- "city_id": 557,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-03-15-01-18-nmn.jpg",
- "trainings": 0
- },
- {
- "id": 5650,
- "name": "№5650 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.630971789360046",
- "latitude": "50.44895827147183",
- "address": "проспект Гагарина 16",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-24-13-09-57-epy.jpg",
- "trainings": 0
- },
- {
- "id": 5651,
- "name": "№5651 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.18348503112793",
- "latitude": "55.684268477331564",
- "address": "2--ое озеро",
- "city_id": 7981,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-24-15-09-19-y1o.jpeg",
- "trainings": 1
- },
- {
- "id": 5652,
- "name": "№5652 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "28.513662815093994",
- "latitude": "54.246076988317235",
- "address": "дзержинского,42",
- "city_id": 7983,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-24-15-09-15-cl_.jpg",
- "trainings": 0
- },
- {
- "id": 5653,
- "name": "№5653 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "40.9211003780365",
- "latitude": "57.79690900843528",
- "address": "Школа № 1 Боровая ул., 2",
- "city_id": 64,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-24-18-09-54-wsr.jpg",
- "trainings": 0
- },
- {
- "id": 5654,
- "name": "№5654 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.024557650089264",
- "latitude": "54.73772256700342",
- "address": "на территории 49 шк",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-24-20-09-10-sjo.jpg",
- "trainings": 6
- },
- {
- "id": 5655,
- "name": "№5655 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.18599820137024",
- "latitude": "55.80956572460244",
- "address": "Старая Купавна, стадион акрихин",
- "city_id": 7989,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-24-23-09-17-tlf.jpg",
- "trainings": 2
- },
- {
- "id": 5656,
- "name": "№5656 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "65.57516634464264",
- "latitude": "57.14426107051319",
- "address": "киевская 60а",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-25-09-09-41-s-i.jpg",
- "trainings": 0
- },
- {
- "id": 5658,
- "name": "№5658 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.13104784488678",
- "latitude": "55.85850262131081",
- "address": "Ленинградская ул. 11",
- "city_id": 794,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-25-14-09-35-mzl.jpg",
- "trainings": 1
- },
- {
- "id": 5659,
- "name": "№5659 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "135.07747292518616",
- "latitude": "48.32600299865991",
- "address": "",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-25-16-09-30-dwb.jpg",
- "trainings": 1
- },
- {
- "id": 5661,
- "name": "№5661 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.634187757968903",
- "latitude": "50.43939626963669",
- "address": "ул. Пражская 14",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-25-19-09-40-iaw.jpg",
- "trainings": 2
- },
- {
- "id": 5662,
- "name": "№5662 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "73.44849497101677",
- "latitude": "54.906737806798624",
- "address": "Школа №99",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-26-06-09-03-k1v.jpg",
- "trainings": 1
- },
- {
- "id": 5663,
- "name": "№5663 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "103.68461409999998",
- "latitude": "51.6693857",
- "address": "Куприна 2",
- "city_id": 7990,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-26-07-09-40-xwv.jpg",
- "trainings": 1
- },
- {
- "id": 5665,
- "name": "№5665 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.403455674648285",
- "latitude": "55.703310288653846",
- "address": "Сколковское шоссе дом 36",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-26-10-09-13-qcy.jpg",
- "trainings": 2
- },
- {
- "id": 5666,
- "name": "№5666 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.01743504405022",
- "latitude": "54.7306329441368",
- "address": "Парк лесоводов",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-26-12-09-40-cxr.jpg",
- "trainings": 0
- },
- {
- "id": 5667,
- "name": "№5667 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.02179363369942",
- "latitude": "54.73425843925936",
- "address": "Парк лесоводов",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-26-12-09-36-_uf.jpg",
- "trainings": 1
- },
- {
- "id": 5668,
- "name": "№5668 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.400829792022705",
- "latitude": "55.71162192108265",
- "address": "Беловежская дом 7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-26-14-09-41-zy9.jpg",
- "trainings": 2
- },
- {
- "id": 5672,
- "name": "№5672 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.661240100860596",
- "latitude": "55.87996913184517",
- "address": "Староватутинский проезд, дом 17",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-26-16-09-12-i58.jpg",
- "trainings": 1
- },
- {
- "id": 5676,
- "name": "№5676 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "132.06316351890564",
- "latitude": "43.297811369935836",
- "address": "ул.Лермонтова 91/3 , школа №79",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-27-08-09-51-sug.jpg",
- "trainings": 2
- },
- {
- "id": 5678,
- "name": "№5678 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.98939411506649",
- "latitude": "55.91690301724553",
- "address": "пересечение ул. Комарова и ул. Центральная (детский городок)",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-27-09-09-58-ibq.jpg",
- "trainings": 6
- },
- {
- "id": 5679,
- "name": "№5679 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.96519855872191",
- "latitude": "55.92683709319704",
- "address": "Центральная , д. 71 (на территории Физкультурно-оздоровительного комплекса) ",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-27-09-09-39-2w0.jpg",
- "trainings": 4
- },
- {
- "id": 5680,
- "name": "№5680 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.05716794729233",
- "latitude": "54.7718617416751",
- "address": "озеро Кашкадан",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-27-13-09-15-yg6.jpg",
- "trainings": 7
- },
- {
- "id": 5681,
- "name": "№5681 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.418591380119324",
- "latitude": "55.716124576189884",
- "address": "Дорогабуржская 13",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-27-13-09-22-ewq.jpg",
- "trainings": 0
- },
- {
- "id": 5682,
- "name": "№5682 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "103.81855476647615",
- "latitude": "1.2506335171182004",
- "address": "Sentosa island, Siloso Beach View",
- "city_id": 7840,
- "country_id": 63,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-27-13-09-25-bxe.jpg",
- "trainings": 0
- },
- {
- "id": 5683,
- "name": "№5683 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "103.8213375583291",
- "latitude": "1.24972614068738",
- "address": "Siloso Beach View, Sentosa island",
- "city_id": 7840,
- "country_id": 63,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-27-13-09-09-1ds.jpg",
- "trainings": 0
- },
- {
- "id": 5684,
- "name": "№5684 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "103.82786370813847",
- "latitude": "1.2434036590616353",
- "address": "Sentosa Island, Tanjong Beach",
- "city_id": 7840,
- "country_id": 63,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-27-14-09-11-chk.jpg",
- "trainings": 0
- },
- {
- "id": 5687,
- "name": "№5687 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.65857934951782",
- "latitude": "55.64738602848102",
- "address": "Пролетарский проспект 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-27-15-09-59--4i.jpg",
- "trainings": 2
- },
- {
- "id": 5690,
- "name": "№5690 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.47754073022463",
- "latitude": "55.87562411449425",
- "address": "Химкинский лесопарк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-28-13-09-51-hjw.jpg",
- "trainings": 0
- },
- {
- "id": 5691,
- "name": "№5691 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.03869926929474",
- "latitude": "55.38367573041384",
- "address": "Гимназия №10",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-28-16-09-26-cnv.jpg",
- "trainings": 1
- },
- {
- "id": 5693,
- "name": "№5693 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.45123083491819",
- "latitude": "55.85777062612152",
- "address": "парк Северное Тушино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-28-21-09-11-4fv.jpg",
- "trainings": 2
- },
- {
- "id": 5698,
- "name": "№5698 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.50069408489992",
- "latitude": "45.36651080103096",
- "address": "Комсомольский парк",
- "city_id": 503,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-29-19-09-08-hgj.jpg",
- "trainings": 1
- },
- {
- "id": 5699,
- "name": "№5699 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.4647953994446",
- "latitude": "45.36022396921375",
- "address": "стадион им. 50-летия Октября ",
- "city_id": 503,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-29-19-09-15-r8d.jpg",
- "trainings": 1
- },
- {
- "id": 5700,
- "name": "№5700 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.471981037395494",
- "latitude": "45.34644175491481",
- "address": "Набережная на против водной станции ",
- "city_id": 503,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-29-19-09-02-q9a.jpg",
- "trainings": 1
- },
- {
- "id": 5701,
- "name": "№5701 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.74320824669644",
- "latitude": "32.03109049490317",
- "address": "Oskar Schindler st., 15",
- "city_id": 766,
- "country_id": 9,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-29-19-09-16-5nd.jpg",
- "trainings": 0
- },
- {
- "id": 5703,
- "name": "№5703 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.311487838625908",
- "latitude": "60.05475551838754",
- "address": "Санкт-Петербург",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-30-00-09-18-gj-.jpg",
- "trainings": 3
- },
- {
- "id": 5707,
- "name": "№5707 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "48.61031502485275",
- "latitude": "54.38381581213015",
- "address": "",
- "city_id": 575,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-30-11-09-44-0nu.jpg",
- "trainings": 3
- },
- {
- "id": 5709,
- "name": "№5709 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.90980577468872",
- "latitude": "55.569671073493204",
- "address": "Парковая улица, д.30/24",
- "city_id": 77,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-30-14-09-44-47u.jpg",
- "trainings": 2
- },
- {
- "id": 5710,
- "name": "№5710 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "55.951896607875824",
- "latitude": "54.73986252830265",
- "address": "Парк Якутова",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-30-16-09-08-_lh.jpg",
- "trainings": 6
- },
- {
- "id": 5711,
- "name": "№5711 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.45680522918701",
- "latitude": "59.912664886184125",
- "address": "ул. Белышева д.6, шк.№333",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-30-16-09-34-17k.jpg",
- "trainings": 1
- },
- {
- "id": 5712,
- "name": "№5712 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "82.90758469311527",
- "latitude": "55.026863878509154",
- "address": "Революции 31",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-30-17-09-20-du7.jpg",
- "trainings": 8
- },
- {
- "id": 5716,
- "name": "№5716 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "32.80475896295161",
- "latitude": "68.8169962926321",
- "address": "Энергетиков 19",
- "city_id": 59,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-30-21-09-34-uy_.jpg",
- "trainings": 1
- },
- {
- "id": 5717,
- "name": "№5717 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.45356972117918",
- "latitude": "55.85958909172436",
- "address": "Парк Северное Тушино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/09/2016-09-30-21-09-27-xfj.jpg",
- "trainings": 0
- },
- {
- "id": 5719,
- "name": "№5719 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.3432931899697",
- "latitude": "55.94484783814136",
- "address": "Подрезково, ул. Московская, д. 1",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-01-08-10-18-zde.jpg",
- "trainings": 4
- },
- {
- "id": 5720,
- "name": "№5720 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.345662117004395",
- "latitude": "55.94068644028728",
- "address": "",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-01-08-10-40-jyl.jpg",
- "trainings": 1
- },
- {
- "id": 5723,
- "name": "№5723 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.86769509315491",
- "latitude": "55.93179856288233",
- "address": "Школьная д. 19",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-01-12-10-10-dyy.jpeg",
- "trainings": 1
- },
- {
- "id": 5724,
- "name": "№5724 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.304238080978394",
- "latitude": "55.83473476563247",
- "address": "Улица кирова д. 30",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-01-12-10-46-ggj.jpg",
- "trainings": 0
- },
- {
- "id": 5725,
- "name": "№5725 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.30038642883301",
- "latitude": "55.83834966948325",
- "address": "Улица карбышева д. 21",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-01-13-10-45-mgd.jpg",
- "trainings": 2
- },
- {
- "id": 5726,
- "name": "№5726 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.3707260787487",
- "latitude": "49.94017995898748",
- "address": "Александровский проспект, 150",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-01-17-10-15-cdc.jpg",
- "trainings": 1
- },
- {
- "id": 5730,
- "name": "№5730 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.775738086509705",
- "latitude": "55.76455501667991",
- "address": "шоссе Энузиасов 33с7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-01-15-10-16-vp_.jpg",
- "trainings": 0
- },
- {
- "id": 5731,
- "name": "№5731 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "55.976830422878265",
- "latitude": "54.739438261313325",
- "address": "Сквер 50 Лет Победы , за Юбилейным",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-01-15-10-11-vy0.jpg",
- "trainings": 8
- },
- {
- "id": 5732,
- "name": "№5732 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "55.95017731189728",
- "latitude": "54.73899850543743",
- "address": "Парк Якутова, тренажеры",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-01-16-10-33-pbp.jpg",
- "trainings": 3
- },
- {
- "id": 5733,
- "name": "№5733 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.44486666666671",
- "latitude": "55.86014166666666",
- "address": "улица Свободы, 75к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-23-13-11-44-ecc.jpg",
- "trainings": 0
- },
- {
- "id": 5734,
- "name": "№5734 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.634005",
- "latitude": "55.729695",
- "address": "улица Большая Пионерская, 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-23-13-11-04-l6e.jpg",
- "trainings": 5
- },
- {
- "id": 5735,
- "name": "№5735 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "47.84286989999998",
- "latitude": "52.0219911",
- "address": "Степная 68",
- "city_id": 7924,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-01-21-10-28-uur.jpg",
- "trainings": 0
- },
- {
- "id": 5737,
- "name": "№5737 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "61.34597880000001",
- "latitude": "55.1804357",
- "address": "двинская 17",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-02-00-10-35-taz.jpg",
- "trainings": 1
- },
- {
- "id": 5738,
- "name": "№5738 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "69.12902355194092",
- "latitude": "54.86483355706303",
- "address": "ул. Ибрая Алтынсарина 164",
- "city_id": 795,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-02-09-10-56-07a.jpg",
- "trainings": 0
- },
- {
- "id": 5739,
- "name": "№5739 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "92.84652840000001",
- "latitude": "56.0114773",
- "address": "ул Декабристов 32",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-02-10-10-46-0qk.jpg",
- "trainings": 2
- },
- {
- "id": 5741,
- "name": "№5741 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "43.87632828000005",
- "latitude": "56.32101064",
- "address": "красных зорь 14а",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-03-12-10-31-2vg.jpg",
- "trainings": 1
- },
- {
- "id": 5742,
- "name": "№5742 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "116.51508450508118",
- "latitude": "50.38445849873005",
- "address": "Гастелло 21",
- "city_id": 8233,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-02-17-10-44-l75.jpg",
- "trainings": 1
- },
- {
- "id": 5743,
- "name": "№5743 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "43.485978841781616",
- "latitude": "43.503616263631685",
- "address": "дом 32",
- "city_id": 593,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-02-22-10-28-vnr.jpg",
- "trainings": 0
- },
- {
- "id": 5744,
- "name": "№5744 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "45.038460195064545",
- "latitude": "53.141797547833356",
- "address": "Засечное светлая 8 ",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-03-05-10-16-l4n.jpg",
- "trainings": 0
- },
- {
- "id": 5745,
- "name": "№5745 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "45.03835827112198",
- "latitude": "53.143271263393444",
- "address": "Засечное Лунная 3",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-03-05-10-39-cix.jpg",
- "trainings": 0
- },
- {
- "id": 5746,
- "name": "№5746 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.08406333333335",
- "latitude": "68.91377000000001",
- "address": "улица Баумана, 13, Мурманск, Мурманская область, Россия",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-07-05-10-27-lpm.jpg",
- "trainings": 1
- },
- {
- "id": 5748,
- "name": "№5748 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.09870125353336",
- "latitude": "44.96470138104403",
- "address": "Парк им. Ю.А.Гагарина ",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-13-13-10-05-_uf.jpg",
- "trainings": 3
- },
- {
- "id": 5749,
- "name": "№5749 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.94169047474861",
- "latitude": "45.6234906540287",
- "address": "ул. Красная, парк \"Изюминка\"",
- "city_id": 7984,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-03-16-10-22-jcl.jpg",
- "trainings": 2
- },
- {
- "id": 5751,
- "name": "№5751 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.446826457453426",
- "latitude": "55.8705652987991",
- "address": "Парк Северное Тушино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-04-18-10-52-pgr.jpg",
- "trainings": 0
- },
- {
- "id": 5752,
- "name": "№5752 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "36.58413469791412",
- "latitude": "50.592909151071574",
- "address": "парк Победы",
- "city_id": 626,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-04-18-10-40-q-j.jpg",
- "trainings": 2
- },
- {
- "id": 5753,
- "name": "№5753 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.02673560380936",
- "latitude": "54.74640868337255",
- "address": "возле Биофлоры",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-04-20-10-02-o09.jpg",
- "trainings": 0
- },
- {
- "id": 5754,
- "name": "№5754 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "56.02606236934662",
- "latitude": "54.7472911257128",
- "address": "Дворовая",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-04-20-10-56-mwv.jpg",
- "trainings": 0
- },
- {
- "id": 5755,
- "name": "№5755 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.02640837430954",
- "latitude": "54.74905595270824",
- "address": "около 42 школы",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-04-20-10-28--gn.jpg",
- "trainings": 1
- },
- {
- "id": 5756,
- "name": "№5756 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.45120382322057",
- "latitude": "55.863305022285026",
- "address": "Парк Северное Тушино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-04-23-10-43-zsa.jpg",
- "trainings": 0
- },
- {
- "id": 5757,
- "name": "№5757 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "103.8373513519764",
- "latitude": "52.50687212906069",
- "address": "188-й квартал 3 дом за один юность",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-15-20-09-11-nox.jpg",
- "trainings": 2
- },
- {
- "id": 5758,
- "name": "№5758 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.652603",
- "latitude": "47.242688",
- "address": "Мачтовая 5",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-05-12-10-42-0it.jpg",
- "trainings": 1
- },
- {
- "id": 5759,
- "name": "№5759 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.511699828380642",
- "latitude": "50.49325566626487",
- "address": "Йорданська, 10",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-05-19-10-45-qzg.jpg",
- "trainings": 1
- },
- {
- "id": 5762,
- "name": "№5762 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.46412229537964",
- "latitude": "59.89759069881285",
- "address": "Огнева 4к2, до 23-00",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-06-00-10-54-fdj.jpg",
- "trainings": 1
- },
- {
- "id": 5768,
- "name": "№5768 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.83609745000001",
- "latitude": "57.63357834",
- "address": "улица Лермонтова, 7, Ярославль, Ярославская область, Россия",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-15-18-09-00-vlw.png",
- "trainings": 0
- },
- {
- "id": 5775,
- "name": "№5775 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.4829287",
- "latitude": "55.8482697",
- "address": "Конаковский проезд, 8к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-06-21-10-45-ltb.jpg",
- "trainings": 1
- },
- {
- "id": 5776,
- "name": "№5776 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.48525818147584",
- "latitude": "55.84319437642734",
- "address": "Пулковская ул, 4к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-06-21-10-10-inn.jpg",
- "trainings": 1
- },
- {
- "id": 5777,
- "name": "№5777 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.00077450275421",
- "latitude": "54.754962919250154",
- "address": "Проспект Октября 49",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-07-09-10-08-jfm.jpg",
- "trainings": 1
- },
- {
- "id": 5778,
- "name": "№5778 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.196717706085224",
- "latitude": "55.678876148596466",
- "address": "мкр. Школьный, д.6",
- "city_id": 7981,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-07-12-10-10-cfu.jpg",
- "trainings": 1
- },
- {
- "id": 5782,
- "name": "№5782 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.57543858266445",
- "latitude": "55.784013604354655",
- "address": "Россия, Москва, улица Правды, 3/1с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-07-14-10-12-ebv.jpg",
- "trainings": 3
- },
- {
- "id": 5783,
- "name": "№5783 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.53653883934021",
- "latitude": "55.69961028800442",
- "address": "",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-07-19-10-20-c2_.jpg",
- "trainings": 9
- },
- {
- "id": 5788,
- "name": "№5788 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.331618502685615",
- "latitude": "55.87110592650807",
- "address": "М.О., Красногорский район, пос. Отрадное, ЖК Микрогород В Лесу",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-07-22-10-42-yzc.jpeg",
- "trainings": 1
- },
- {
- "id": 5791,
- "name": "№5791 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.39715826511383",
- "latitude": "60.02065729633621",
- "address": "Вавиловых 13 к3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-08-11-10-53-cdq.jpg",
- "trainings": 2
- },
- {
- "id": 5797,
- "name": "№5797 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "127.52760171890259",
- "latitude": "50.296330606055704",
- "address": "Дьяченко",
- "city_id": 625,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-09-08-10-47-yho.jpg",
- "trainings": 2
- },
- {
- "id": 5799,
- "name": "№5799 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.242285715416074",
- "latitude": "57.99452806357294",
- "address": "Краснофлотская улица, 36, Пермь, Пермский край, Россия",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-09-19-10-44-std.jpg",
- "trainings": 1
- },
- {
- "id": 5806,
- "name": "№5806 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.67653029999997",
- "latitude": "55.7252748",
- "address": "мельникова 3к6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-09-19-10-19-gvs.jpg",
- "trainings": 1
- },
- {
- "id": 5809,
- "name": "№5809 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.10603487491608",
- "latitude": "55.04862996500592",
- "address": "8 июля, 45",
- "city_id": 716,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-10-13-10-23-aq6.jpg",
- "trainings": 1
- },
- {
- "id": 5810,
- "name": "№5810 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.17621612548828",
- "latitude": "51.205162601119824",
- "address": "",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-10-15-10-48-tvg.jpg",
- "trainings": 1
- },
- {
- "id": 5811,
- "name": "№5811 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.408942382026",
- "latitude": "55.65213822030573",
- "address": "улица Главмосстроя, 8, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-10-20-10-05-o4m.jpg",
- "trainings": 1
- },
- {
- "id": 5812,
- "name": "№5812 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.92818271821898",
- "latitude": "55.79721340127571",
- "address": "площадь Александра Невского, 2",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-10-17-10-22-g43.jpg",
- "trainings": 0
- },
- {
- "id": 5813,
- "name": "№5813 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "49.2247474193573",
- "latitude": "55.79179716648476",
- "address": "",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-11-08-10-29-hkh.jpg",
- "trainings": 0
- },
- {
- "id": 5814,
- "name": "№5814 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "53.10158799999999",
- "latitude": "57.535645",
- "address": "ул. Кедра Митрея 39",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-10-19-10-36-bic.jpg",
- "trainings": 0
- },
- {
- "id": 5815,
- "name": "№5815 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "135.035343",
- "latitude": "48.5398748",
- "address": "Трехгорная 62",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-11-15-10-39-lj0.jpg",
- "trainings": 1
- },
- {
- "id": 5816,
- "name": "№5816 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.17994976043701",
- "latitude": "51.20801263082116",
- "address": "",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-11-16-10-19-9bx.jpg",
- "trainings": 1
- },
- {
- "id": 5817,
- "name": "№5817 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "42.16930763809819",
- "latitude": "55.3206766816768",
- "address": " Красные зори 4",
- "city_id": 7998,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-11-18-10-18-kjn.jpg",
- "trainings": 2
- },
- {
- "id": 5819,
- "name": "№5819 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.39998435970847",
- "latitude": "55.892939601204816",
- "address": "ул. Соловьиная Роща, 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-12-17-10-46-sqm.jpg",
- "trainings": 2
- },
- {
- "id": 5820,
- "name": "№5820 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "158.64609729129643",
- "latitude": "53.08105397331164",
- "address": "70 лет победы 12",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-13-09-10-10-yle.jpg",
- "trainings": 1
- },
- {
- "id": 5821,
- "name": "№5821 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.15869976191402",
- "latitude": "55.70854676995735",
- "address": "",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-13-10-10-16-xqb.jpg",
- "trainings": 0
- },
- {
- "id": 5823,
- "name": "№5823 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.272473180426005",
- "latitude": "59.94327456044423",
- "address": "11-я линия в.о 35",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-13-12-10-15-fxz.jpg",
- "trainings": 5
- },
- {
- "id": 5826,
- "name": "№5826 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.32839899999999",
- "latitude": "55.5014802",
- "address": "улица Дмитрия Кобалевского дом №7, корпус №2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-14-13-10-33-sm0.jpg",
- "trainings": 4
- },
- {
- "id": 5828,
- "name": "№5828 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.98097947239876",
- "latitude": "45.058418265072795",
- "address": "ул. Шоссе Нефтянников 11/1",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-14-15-10-13-qwt.jpg",
- "trainings": 2
- },
- {
- "id": 5829,
- "name": "№5829 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "91.41276730000004",
- "latitude": "53.1045549",
- "address": "Центральный микрорайон 3",
- "city_id": 7999,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-19-18-10-12-hoo.jpg",
- "trainings": 1
- },
- {
- "id": 5830,
- "name": "№5830 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.409469604492188",
- "latitude": "60.01793912321744",
- "address": "гражданский проспект дом 76",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-14-21-10-43-j4u.jpg",
- "trainings": 5
- },
- {
- "id": 5833,
- "name": "№5833 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "52.656004540622234",
- "latitude": "58.143553936193655",
- "address": "ул. Ленина,",
- "city_id": 7420,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-15-22-10-01-iij.jpg",
- "trainings": 0
- },
- {
- "id": 5835,
- "name": "№5835 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.4713997838262",
- "latitude": "55.88899404324686",
- "address": "ул. Зеленая,14",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-15-19-10-24-pfm.jpg",
- "trainings": 2
- },
- {
- "id": 5836,
- "name": "№5836 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "52.66146183013916",
- "latitude": "58.14752992301607",
- "address": "пр. Монтажников",
- "city_id": 7420,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-15-22-10-17-da9.jpg",
- "trainings": 0
- },
- {
- "id": 5837,
- "name": "№5837 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "52.65090465545654",
- "latitude": "58.1422185986472",
- "address": "Парковая ул.",
- "city_id": 7420,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-15-22-10-21-ey8.jpg",
- "trainings": 0
- },
- {
- "id": 5838,
- "name": "№5838 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "158.62347499999998",
- "latitude": "53.062168",
- "address": "ул. Бохняка",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-16-07-10-08-vqr.jpg",
- "trainings": 0
- },
- {
- "id": 5839,
- "name": "№5839 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "55.847333682926546",
- "latitude": "54.71430755004735",
- "address": "в ста метрах от дома по ул.Кусимова-15",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-16-08-10-24-_wp.jpg",
- "trainings": 5
- },
- {
- "id": 5841,
- "name": "№5841 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.15038400000003",
- "latitude": "49.790322",
- "address": "ул.Героїв Крут 45",
- "city_id": 8000,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-16-13-10-55-501.jpg",
- "trainings": 1
- },
- {
- "id": 5843,
- "name": "№5843 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "44.26159590482712",
- "latitude": "46.30592924656222",
- "address": "улица Городовикова, д.15",
- "city_id": 619,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-16-18-10-53-n9y.jpg",
- "trainings": 0
- },
- {
- "id": 5845,
- "name": "№5845 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.152778153967347",
- "latitude": "49.786096688008925",
- "address": "ул.Леваневского,53 Д",
- "city_id": 8000,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-16-19-10-50-eq3.jpg",
- "trainings": 1
- },
- {
- "id": 5846,
- "name": "№5846 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "52.667051553726196",
- "latitude": "58.14348704663609",
- "address": "ул. Чепецкая, 9",
- "city_id": 7420,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-16-20-10-38-9wr.jpg",
- "trainings": 1
- },
- {
- "id": 5847,
- "name": "№5847 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "52.65895260304114",
- "latitude": "58.14057096132852",
- "address": "ул. Ленина,15б Гимназия № 6",
- "city_id": 7420,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-16-20-10-53-wa8.jpg",
- "trainings": 0
- },
- {
- "id": 5848,
- "name": "№5848 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "52.66225689999999",
- "latitude": "58.141279",
- "address": "Короленко, 23а",
- "city_id": 7420,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-16-20-10-00-zan.jpg",
- "trainings": 0
- },
- {
- "id": 5849,
- "name": "№5849 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "52.67067599999996",
- "latitude": "58.13558099999999",
- "address": "энгельса 24",
- "city_id": 7420,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-16-21-10-26-srn.jpg",
- "trainings": 1
- },
- {
- "id": 5850,
- "name": "№5850 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.157516838028755",
- "latitude": "49.78578788931944",
- "address": "ул.Леваневского,57",
- "city_id": 8000,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-16-22-10-26-6k2.jpg",
- "trainings": 0
- },
- {
- "id": 5851,
- "name": "№5851 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.65051919221878",
- "latitude": "47.20070619542881",
- "address": "Батуринская 82/6",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-16-22-10-59-qx1.jpg",
- "trainings": 2
- },
- {
- "id": 5852,
- "name": "№5852 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.159037117721596",
- "latitude": "49.78782834449459",
- "address": "ул.Молодежная,12 (школа №4)",
- "city_id": 8000,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-16-22-10-18-npd.jpg",
- "trainings": 0
- },
- {
- "id": 5853,
- "name": "№5853 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.773345589637756",
- "latitude": "64.54670416254761",
- "address": "",
- "city_id": 7383,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-17-00-10-51-sng.jpg",
- "trainings": 0
- },
- {
- "id": 5854,
- "name": "№5854 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.71210038661957",
- "latitude": "44.6904939573401",
- "address": "",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-17-08-10-57-dm5.jpg",
- "trainings": 2
- },
- {
- "id": 5855,
- "name": "№5855 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.56333142518997",
- "latitude": "55.819735350619695",
- "address": "",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-17-08-10-21-7kn.jpg",
- "trainings": 5
- },
- {
- "id": 5856,
- "name": "№5856 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.69860300000005",
- "latitude": "55.857161",
- "address": "Вешних вод 2к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-17-10-10-19-ggd.jpg",
- "trainings": 4
- },
- {
- "id": 5857,
- "name": "№5857 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.75562504000004",
- "latitude": "55.775979",
- "address": "Московский проспект, 18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-17-13-10-10-enj.jpg",
- "trainings": 0
- },
- {
- "id": 5858,
- "name": "№5858 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.77576628999998",
- "latitude": "55.76148928",
- "address": "1-я Владимирская улица, 3 корпус 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-17-13-10-26-g8u.jpg",
- "trainings": 0
- },
- {
- "id": 5859,
- "name": "№5859 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.77657627999997",
- "latitude": "55.76027801",
- "address": "1-я Владимирская улица, 13 строение 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-17-13-10-14-8g3.jpg",
- "trainings": 0
- },
- {
- "id": 5860,
- "name": "№5860 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.77679143",
- "latitude": "55.75955973",
- "address": "1-я Владимирская улица, 13 строение 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-17-14-10-01-unt.jpg",
- "trainings": 0
- },
- {
- "id": 5861,
- "name": "№5861 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.77879997000002",
- "latitude": "55.75932944",
- "address": "2-я Владимирская улица, 12 корпус 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-17-14-10-35-gpd.jpg",
- "trainings": 0
- },
- {
- "id": 5862,
- "name": "№5862 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.30633964683534",
- "latitude": "59.96852047719499",
- "address": "Ординарная 21",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-17-17-10-21-2zo.jpg",
- "trainings": 2
- },
- {
- "id": 5864,
- "name": "№5864 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.622541189193726",
- "latitude": "55.670227593553925",
- "address": "нагорная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-17-17-10-42-jo1.jpg",
- "trainings": 1
- },
- {
- "id": 5865,
- "name": "№5865 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.60167200000001",
- "latitude": "56.81080600000001",
- "address": "Отто Шмидта 76б",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-17-20-10-36-kdc.jpg",
- "trainings": 0
- },
- {
- "id": 5873,
- "name": "№5873 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.69669799999997",
- "latitude": "55.861638",
- "address": "Ярославское шоссе 34",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-19-14-10-27-ru7.jpg",
- "trainings": 1
- },
- {
- "id": 5875,
- "name": "№5875 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.148490596572856",
- "latitude": "49.79257022178757",
- "address": "вул. Некрасова, 121",
- "city_id": 8000,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-19-20-10-13-vlv.jpg",
- "trainings": 1
- },
- {
- "id": 5876,
- "name": "№5876 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "46.125807599999916",
- "latitude": "51.4732437",
- "address": "Краснодарская 9б",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-19-20-10-14-cvu.jpg",
- "trainings": 4
- },
- {
- "id": 5877,
- "name": "№5877 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.14555425700837",
- "latitude": "49.791272407804406",
- "address": "Некрасова 50",
- "city_id": 8000,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-19-20-10-46-rfk.jpg",
- "trainings": 0
- },
- {
- "id": 5878,
- "name": "№5878 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "58.97586449999994",
- "latitude": "53.401039",
- "address": "Карла Маркса 124",
- "city_id": 563,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-20-08-10-07-unn.jpg",
- "trainings": 1
- },
- {
- "id": 5879,
- "name": "№5879 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "61.44987219999996",
- "latitude": "55.1410338",
- "address": "Копейское шоссе, 43б",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-20-08-10-12-mwi.jpg",
- "trainings": 3
- },
- {
- "id": 5881,
- "name": "№5881 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.525980000000004",
- "latitude": "55.83238333333333",
- "address": "Коптевский бульвар, 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-23-11-11-34-gmc.jpg",
- "trainings": 1
- },
- {
- "id": 5882,
- "name": "№5882 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.76333948000001",
- "latitude": "55.67532583",
- "address": "Совхозная улица, 10Б строение 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-21-12-10-51-tl2.jpg",
- "trainings": 1
- },
- {
- "id": 5883,
- "name": "№5883 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.76423734000002",
- "latitude": "55.67428227",
- "address": "Белореченская улица, 6 строение 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-21-16-10-28-jyk.jpg",
- "trainings": 1
- },
- {
- "id": 5885,
- "name": "№5885 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "71.45951583981514",
- "latitude": "51.15453344547918",
- "address": "",
- "city_id": 406,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-21-13-10-19-8wz.jpg",
- "trainings": 2
- },
- {
- "id": 5889,
- "name": "№5889 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.40564060106408",
- "latitude": "55.779223118078065",
- "address": " 4-я Хорошевского Серебряного Бора линия, 19Б, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-21-23-10-39-zmm.jpg",
- "trainings": 0
- },
- {
- "id": 5893,
- "name": "№5893 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.58846980999999",
- "latitude": "55.7111652",
- "address": "Ленинский проспект, 35А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-22-13-10-09-hnw.jpg",
- "trainings": 1
- },
- {
- "id": 5894,
- "name": "№5894 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "46.123528299999975",
- "latitude": "51.47116399999999",
- "address": "Полтавская 8",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-22-18-10-39-ayj.jpg",
- "trainings": 1
- },
- {
- "id": 5895,
- "name": "№5895 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.50271511104074",
- "latitude": "55.81750633858582",
- "address": "1-й Новоподмосковный пер., 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-23-00-10-30-6p6.jpg",
- "trainings": 0
- },
- {
- "id": 5896,
- "name": "№5896 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "91.42639459999998",
- "latitude": "53.7208962",
- "address": "Ленина 101",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-23-09-10-30-kfo.jpg",
- "trainings": 0
- },
- {
- "id": 5897,
- "name": "№5897 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.57025018334389",
- "latitude": "49.986505567014575",
- "address": "",
- "city_id": 421,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-23-16-10-17-wu-.jpg",
- "trainings": 1
- },
- {
- "id": 5898,
- "name": "№5898 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "91.43870204687119",
- "latitude": "53.720970888191914",
- "address": "Советская 32",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-23-18-10-10-chh.jpg",
- "trainings": 0
- },
- {
- "id": 5900,
- "name": "№5900 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "65.4790198802948",
- "latitude": "57.175807282174276",
- "address": "Бабарынка 65",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-23-21-10-18-7yy.jpg",
- "trainings": 0
- },
- {
- "id": 5901,
- "name": "№5901 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.96702527999878",
- "latitude": "45.022309552649865",
- "address": "Рашпилевская и Ордженекидзе",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-24-00-10-07-qjq.jpg",
- "trainings": 2
- },
- {
- "id": 5902,
- "name": "№5902 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "91.43104434013367",
- "latitude": "53.7408431792376",
- "address": "Преображенский парк",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-24-07-10-07-ql4.jpg",
- "trainings": 4
- },
- {
- "id": 5903,
- "name": "№5903 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.74172483838629",
- "latitude": "32.02228164254375",
- "address": "sderot HaAtsmaut, 14",
- "city_id": 766,
- "country_id": 9,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-24-11-10-58-f1n.jpg",
- "trainings": 0
- },
- {
- "id": 5904,
- "name": "№5904 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.44187856999997",
- "latitude": "56.00695974",
- "address": "улица Катюшки, 53, Лобня",
- "city_id": 73,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-24-14-10-33-xim.jpg",
- "trainings": 0
- },
- {
- "id": 5905,
- "name": "№5905 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.48899751901627",
- "latitude": "52.07594861865321",
- "address": "северный 71",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-24-15-10-29-rys.jpg",
- "trainings": 1
- },
- {
- "id": 5907,
- "name": "№5907 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.145779341000434",
- "latitude": "49.797350840056176",
- "address": "ул.Рыбная",
- "city_id": 8000,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-24-22-10-45-k3t.jpg",
- "trainings": 0
- },
- {
- "id": 5909,
- "name": "№5909 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "63.302316069602966",
- "latitude": "61.31918215570023",
- "address": "",
- "city_id": 8002,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-25-15-10-15-cnx.jpg",
- "trainings": 3
- },
- {
- "id": 5910,
- "name": "№5910 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.34218518385319",
- "latitude": "60.0441880702958",
- "address": "Поэтический б-р, 3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-25-19-10-51-h1b.jpg",
- "trainings": 0
- },
- {
- "id": 5911,
- "name": "№5911 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.344603061676025",
- "latitude": "60.043348264195515",
- "address": "Поэтический б-р, 3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-25-21-10-20-zhp.jpg",
- "trainings": 0
- },
- {
- "id": 5912,
- "name": "№5912 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.5596809387207",
- "latitude": "55.56265800870366",
- "address": "Бутовский лес",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-26-16-10-25-7tq.jpg",
- "trainings": 2
- },
- {
- "id": 5913,
- "name": "№5913 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.569105148577364",
- "latitude": "55.905523238457626",
- "address": "Вологодский проезд,18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-26-17-10-53-fh7.jpg",
- "trainings": 0
- },
- {
- "id": 5914,
- "name": "№5914 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.14532192988588",
- "latitude": "49.78777173132061",
- "address": "бул.Княгини Ольги,11",
- "city_id": 8000,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-26-20-10-28-3zv.jpg",
- "trainings": 0
- },
- {
- "id": 5915,
- "name": "№5915 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.41413784028737",
- "latitude": "55.90776043672263",
- "address": "ул. Ленинградская, 39 стр 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-27-14-10-10-sug.jpg",
- "trainings": 1
- },
- {
- "id": 5916,
- "name": "№5916 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.4591002463967",
- "latitude": "55.838089407559394",
- "address": "ул. Лодочная, 15",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-27-16-10-16-8ft.jpg",
- "trainings": 0
- },
- {
- "id": 5917,
- "name": "№5917 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "61.331820487976074",
- "latitude": "56.817593635065066",
- "address": "Парк невского",
- "city_id": 788,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-28-08-10-54-x8r.jpg",
- "trainings": 0
- },
- {
- "id": 5920,
- "name": "№5920 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "61.347169800000074",
- "latitude": "55.1800982",
- "address": "братьев кашириных 76",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-28-21-10-44-zqv.jpg",
- "trainings": 1
- },
- {
- "id": 5923,
- "name": "№5923 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.53102958202362",
- "latitude": "55.80719624807837",
- "address": "Асеева 8 - Шебашевский пр.7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-28-22-10-18-acz.jpeg",
- "trainings": 1
- },
- {
- "id": 5926,
- "name": "№5926 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "65.27279555797577",
- "latitude": "58.045746710521186",
- "address": "ул. 9-е Мая, 6",
- "city_id": 8004,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-29-20-10-28-lxa.jpg",
- "trainings": 0
- },
- {
- "id": 5927,
- "name": "№5927 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.97163337469101",
- "latitude": "55.053472992803044",
- "address": "",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-30-09-10-28-f7f.jpg",
- "trainings": 0
- },
- {
- "id": 5928,
- "name": "№5928 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.9723334312439",
- "latitude": "55.052883010597164",
- "address": "пр Дзержинского, 22/2",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-30-09-10-37-7hw.jpg",
- "trainings": 1
- },
- {
- "id": 5929,
- "name": "№5929 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.96384361957394",
- "latitude": "55.049396318572185",
- "address": "проспект Дзержинского 10/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-30-09-10-03-bzq.jpg",
- "trainings": 0
- },
- {
- "id": 5930,
- "name": "№5930 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "55.99379500953978",
- "latitude": "54.762837628352905",
- "address": "На территории гимназии №47",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-30-11-10-32-mdr.jpg",
- "trainings": 1
- },
- {
- "id": 5931,
- "name": "№5931 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.64795911312103",
- "latitude": "56.850380043532404",
- "address": "Академическая 16А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-30-12-10-47-khh.png",
- "trainings": 1
- },
- {
- "id": 5932,
- "name": "№5932 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.60719895362854",
- "latitude": "55.825183778092395",
- "address": "",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-30-20-10-23-djo.jpg",
- "trainings": 3
- },
- {
- "id": 5933,
- "name": "№5933 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.145854030757846",
- "latitude": "49.78717795118443",
- "address": "ул.Некрасова,36",
- "city_id": 8000,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-31-00-10-05-xyq.jpg",
- "trainings": 0
- },
- {
- "id": 5934,
- "name": "№5934 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.54647338888549",
- "latitude": "55.79766770463578",
- "address": "Красноармейская улица, 7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-31-10-10-28-a_z.jpg",
- "trainings": 1
- },
- {
- "id": 5937,
- "name": "№5937 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "65.26266485452652",
- "latitude": "58.050399651952674",
- "address": "Ленина, 69",
- "city_id": 8004,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-31-14-10-45-862.jpg",
- "trainings": 0
- },
- {
- "id": 5938,
- "name": "№5938 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "65.27570843696594",
- "latitude": "58.04085748852455",
- "address": "Кирова, 118а ",
- "city_id": 8004,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-31-15-10-09-m6l.jpg",
- "trainings": 0
- },
- {
- "id": 5939,
- "name": "№5939 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.52156352977181",
- "latitude": "55.62826731206116",
- "address": " м. Коньково, улица Академика Капицы 32А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-31-15-10-05-u8u.jpg",
- "trainings": 2
- },
- {
- "id": 5940,
- "name": "№5940 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.109402656555176",
- "latitude": "68.96818852407881",
- "address": "Гимназия N1",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/10/2016-10-31-19-10-35-twy.jpg",
- "trainings": 1
- },
- {
- "id": 5941,
- "name": "№5941 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.76056762999997",
- "latitude": "55.74778361",
- "address": "Перовская улица, 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-11-11-19-wpb.jpg",
- "trainings": 2
- },
- {
- "id": 5942,
- "name": "№5942 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.77787559000001",
- "latitude": "55.75099353",
- "address": "1-я Владимирская улица, 26 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-12-11-28-cfc.jpg",
- "trainings": 0
- },
- {
- "id": 5943,
- "name": "№5943 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.125091428064025",
- "latitude": "49.798760382350345",
- "address": "ул.Ярослава Мудрого, 54,",
- "city_id": 8000,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-12-11-43-_xg.jpg",
- "trainings": 1
- },
- {
- "id": 5944,
- "name": "№5944 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.77416452",
- "latitude": "55.75514598",
- "address": "1-я Владимирская улица, 18 корпус 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-12-11-27-prw.jpg",
- "trainings": 0
- },
- {
- "id": 5945,
- "name": "№5945 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.774673737585545",
- "latitude": "55.752024869423686",
- "address": "3-й Перова Поля пр-д, 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-12-11-35-qvu.jpg",
- "trainings": 0
- },
- {
- "id": 5946,
- "name": "№5946 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.773849189999964",
- "latitude": "55.75881877",
- "address": "1-я Владимирская улица, 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-13-11-09-wga.jpg",
- "trainings": 0
- },
- {
- "id": 5947,
- "name": "№5947 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.7737071365118",
- "latitude": "55.75599630332236",
- "address": "1-я Владимирская улица, 18, корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-13-11-52-_ak.jpg",
- "trainings": 0
- },
- {
- "id": 5948,
- "name": "№5948 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.77470592999998",
- "latitude": "55.75950872",
- "address": "1-я Владимирская улица, 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-13-11-06-mz6.jpg",
- "trainings": 0
- },
- {
- "id": 5949,
- "name": "№5949 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.77626673999998",
- "latitude": "55.75838802",
- "address": "1-я Владимирская улица, 15 корпус 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-13-11-26-fff.jpg",
- "trainings": 0
- },
- {
- "id": 5950,
- "name": "№5950 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.77640698000005",
- "latitude": "55.75726512",
- "address": "1-я Владимирская улица, 17",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-13-11-07-1_r.jpg",
- "trainings": 0
- },
- {
- "id": 5951,
- "name": "№5951 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.77869026999997",
- "latitude": "55.75737638",
- "address": "улица Металлургов, 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-13-11-37-egj.jpg",
- "trainings": 0
- },
- {
- "id": 5952,
- "name": "№5952 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.77706379999995",
- "latitude": "55.75552126",
- "address": "1-я Владимирская улица, 23 корпус 2, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-13-11-09-ava.jpg",
- "trainings": 0
- },
- {
- "id": 5953,
- "name": "№5953 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.77864827999997",
- "latitude": "55.75457263",
- "address": "1-я Владимирская улица, 25 корпус 2, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-13-11-10-0la.jpg",
- "trainings": 0
- },
- {
- "id": 5954,
- "name": "№5954 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.78061402000003",
- "latitude": "55.75377465",
- "address": "2-я Владимирская улица, 26 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-14-11-52-ptv.jpg",
- "trainings": 0
- },
- {
- "id": 5955,
- "name": "№5955 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.781734150000034",
- "latitude": "55.75272924",
- "address": "2-я Владимирская улица, 30 корпус 2 строение 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-14-11-51-xaw.jpg",
- "trainings": 0
- },
- {
- "id": 5956,
- "name": "№5956 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.78324599999996",
- "latitude": "55.7469029",
- "address": "2-я Владимирская улица, 50 корпус 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-14-11-16-ksu.jpg",
- "trainings": 0
- },
- {
- "id": 5957,
- "name": "№5957 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.4674580095234",
- "latitude": "55.878619848375166",
- "address": "Левобережная улица, 32",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-16-11-06-xj4.jpg",
- "trainings": 0
- },
- {
- "id": 5962,
- "name": "№5962 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "33.77334862947464",
- "latitude": "44.86518478243151",
- "address": "с. Каштаны ул. Ленина 1а",
- "city_id": 479,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-19-11-32-vtc.jpg",
- "trainings": 1
- },
- {
- "id": 5963,
- "name": "№5963 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.52353549003601",
- "latitude": "55.82315276103586",
- "address": "улица Зои и Александра Космодемьянских, 34А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-23-13-11-46-pyy.jpg",
- "trainings": 0
- },
- {
- "id": 5964,
- "name": "№5964 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.11667390000002",
- "latitude": "68.9700007",
- "address": "Маклакова 31",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-01-21-11-11-o5b.jpg",
- "trainings": 2
- },
- {
- "id": 5965,
- "name": "№5965 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.48816597999996",
- "latitude": "55.80658994",
- "address": "1-й Волоколамский проезд, 10 строение 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-02-11-11-04-fyy.jpg",
- "trainings": 3
- },
- {
- "id": 5966,
- "name": "№5966 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.50736612826586",
- "latitude": "55.803791757227444",
- "address": "Малый Песчаный переулок, 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-02-15-11-42-ux3.jpg",
- "trainings": 1
- },
- {
- "id": 5969,
- "name": "№5969 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "46.146574999999984",
- "latitude": "48.3085853",
- "address": "Челюскинцев, 17",
- "city_id": 7992,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-03-20-11-01-hf7.jpg",
- "trainings": 0
- },
- {
- "id": 5970,
- "name": "№5970 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.91287970542908",
- "latitude": "56.847458253172384",
- "address": "Парк Победы",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-05-12-11-02-2fp.jpg",
- "trainings": 0
- },
- {
- "id": 5974,
- "name": "№5974 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.26463031768799",
- "latitude": "59.84746641962437",
- "address": "Школа 504",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-06-17-11-02-z8_.jpg",
- "trainings": 0
- },
- {
- "id": 5975,
- "name": "№5975 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.408147014677525",
- "latitude": "56.12878725099534",
- "address": "улица Большая Московская улица, 35/33",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-07-21-11-31-q1j.jpg",
- "trainings": 0
- },
- {
- "id": 5976,
- "name": "№5976 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.42417757213116",
- "latitude": "56.13648095206919",
- "address": "Спортивный переулок, 2, стадион Лыбедь",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-07-21-11-27-pnq.jpg",
- "trainings": 0
- },
- {
- "id": 5977,
- "name": "№5977 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.62076020240784",
- "latitude": "55.81721579763665",
- "address": "Аргуновская ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-08-00-11-00-aoc.jpg",
- "trainings": 3
- },
- {
- "id": 5978,
- "name": "№5978 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "40.41074439883232",
- "latitude": "56.14227123198423",
- "address": "улица Мира 36Г, ЦПКиО",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-08-19-11-33-re4.jpg",
- "trainings": 3
- },
- {
- "id": 5979,
- "name": "№5979 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "61.947516202926636",
- "latitude": "56.39665012724106",
- "address": "Гоголя 44",
- "city_id": 7376,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-10-10-11-19-3m7.jpg",
- "trainings": 1
- },
- {
- "id": 5980,
- "name": "№5980 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.58107700000005",
- "latitude": "50.62492",
- "address": "ул. Некрасова.20 школа № 27",
- "city_id": 626,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-10-10-11-33-ifq.jpg",
- "trainings": 2
- },
- {
- "id": 5983,
- "name": "№5983 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "56.19893932263949",
- "latitude": "58.00245414340547",
- "address": "Экстрим парк",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-13-12-11-20-1cv.jpg",
- "trainings": 8
- },
- {
- "id": 5984,
- "name": "№5984 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "47.180185317993164",
- "latitude": "56.145125140245526",
- "address": "39 школа",
- "city_id": 146,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-13-19-11-02-ztl.jpg",
- "trainings": 2
- },
- {
- "id": 5985,
- "name": "№5985 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "47.18234717845917",
- "latitude": "56.14063171258398",
- "address": "",
- "city_id": 146,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-13-19-11-45-uqe.jpg",
- "trainings": 1
- },
- {
- "id": 5986,
- "name": "№5986 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "47.17872619628906",
- "latitude": "56.14401939034592",
- "address": "мичмана павлова17",
- "city_id": 146,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-13-19-11-58-qqn.jpg",
- "trainings": 1
- },
- {
- "id": 5987,
- "name": "№5987 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.10886460542679",
- "latitude": "55.056127805150815",
- "address": "пр.Автозаводцев, 31",
- "city_id": 716,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-14-12-11-56-efy.jpg",
- "trainings": 0
- },
- {
- "id": 5988,
- "name": "№5988 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "55.50171732902527",
- "latitude": "52.343231474071224",
- "address": "Оренбургская область, Октябрьский район, село Октябрьское.",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-14-16-11-38-bxx.jpg",
- "trainings": 1
- },
- {
- "id": 5989,
- "name": "№5989 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.5401675459633",
- "latitude": "55.75895337924461",
- "address": "Стрельбищинский переулок, 18А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-14-22-11-17-zh1.jpg",
- "trainings": 1
- },
- {
- "id": 5990,
- "name": "№5990 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "28.767362236976624",
- "latitude": "47.03504188184625",
- "address": "Алба Илия",
- "city_id": 445,
- "country_id": 15,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-15-01-11-24-9n2.jpg",
- "trainings": 0
- },
- {
- "id": 5991,
- "name": "№5991 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.89881005883217",
- "latitude": "55.72088504063345",
- "address": "ул. Лухмановская, д.17",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-15-16-11-12-o12.jpg",
- "trainings": 2
- },
- {
- "id": 5992,
- "name": "№5992 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.44344901999284",
- "latitude": "55.72368786869507",
- "address": "Можайское шоссе 4к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-17-18-11-59--a8.jpg",
- "trainings": 0
- },
- {
- "id": 5993,
- "name": "№5993 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.5028846261921",
- "latitude": "55.81600297858155",
- "address": "1-й Новоподмосковный пер., 2/1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-18-17-11-02-_1h.jpg",
- "trainings": 0
- },
- {
- "id": 5995,
- "name": "№5995 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "55.98909416400147",
- "latitude": "54.757834714576",
- "address": "В лесу около Башкирского медицинского колледжа, вход и парковка около дома Р.Зорге 31\\3",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-19-09-11-34-arh.jpg",
- "trainings": 0
- },
- {
- "id": 5996,
- "name": "№5996 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "47.188634276390076",
- "latitude": "56.13728259432006",
- "address": "ядринское шоссе",
- "city_id": 146,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-19-12-11-21-ylt.jpg",
- "trainings": 1
- },
- {
- "id": 5999,
- "name": "№5999 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.6006908412819",
- "latitude": "55.7263584800708",
- "address": "Парк Горького,",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-20-00-11-33-wes.jpg",
- "trainings": 0
- },
- {
- "id": 6000,
- "name": "№6000 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.65828564763069",
- "latitude": "55.73566186039565",
- "address": "улица Гвоздева",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-20-21-11-42-u0l.jpg",
- "trainings": 2
- },
- {
- "id": 6001,
- "name": "№6001 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.11787277196652",
- "latitude": "56.291790421506",
- "address": "ул Льва Толстого",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-22-00-11-16-cpy.jpg",
- "trainings": 1
- },
- {
- "id": 6003,
- "name": "№6003 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.124526166934174",
- "latitude": "56.29740993124964",
- "address": "ул воробьёвская",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-09-01-04-41-xuc.jpg",
- "trainings": 2
- },
- {
- "id": 6005,
- "name": "№6005 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "56.8467746",
- "latitude": "59.3949736",
- "address": "Пятилетки 116А",
- "city_id": 7956,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-22-08-11-41-y94.jpg",
- "trainings": 1
- },
- {
- "id": 6006,
- "name": "№6006 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.315081596636446",
- "latitude": "59.864106062649135",
- "address": "Бассейная, 27",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-22-12-11-43-zmo.jpg",
- "trainings": 2
- },
- {
- "id": 6008,
- "name": "№6008 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.52642583807756",
- "latitude": "55.80698280745476",
- "address": "ул. Самеда Вургуна, 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-22-16-11-22-pah.jpg",
- "trainings": 1
- },
- {
- "id": 6009,
- "name": "№6009 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.119043814819406",
- "latitude": "49.803907347251645",
- "address": "ул. Логинова, 28",
- "city_id": 8000,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-22-18-11-14-a0b.jpg",
- "trainings": 0
- },
- {
- "id": 6010,
- "name": "№6010 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.653809000000024",
- "latitude": "51.7357412",
- "address": "Воронежская обл.,Семилукский р-он.,с.Нижняя Ведуга ",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-22-19-11-18-jzx.jpg",
- "trainings": 0
- },
- {
- "id": 6011,
- "name": "№6011 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.35679864883423",
- "latitude": "44.89972058049876",
- "address": "ул. Восточная/ Анапское шоссе",
- "city_id": 4,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-24-10-11-38-0y9.png",
- "trainings": 0
- },
- {
- "id": 6012,
- "name": "№6012 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.92284107208252",
- "latitude": "45.04323612648941",
- "address": "Ленина 417а",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-25-17-11-14-cij.jpg",
- "trainings": 0
- },
- {
- "id": 6013,
- "name": "№6013 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "116.5079391002655",
- "latitude": "50.385886548417076",
- "address": "41 школа",
- "city_id": 8233,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-26-07-11-50-fne.jpg",
- "trainings": 0
- },
- {
- "id": 6015,
- "name": "№6015 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "116.52438640594482",
- "latitude": "50.38764119489997",
- "address": "школа 240",
- "city_id": 8233,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-26-08-11-40-pa_.jpg",
- "trainings": 2
- },
- {
- "id": 6016,
- "name": "№6016 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.53252625465393",
- "latitude": "55.77514290406151",
- "address": "Хорошевское ш., д. 13, корп. 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-26-12-11-49-408.jpg",
- "trainings": 0
- },
- {
- "id": 6017,
- "name": "№6017 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.52419853131869",
- "latitude": "55.83180162714306",
- "address": "Коптевский бульвар 16к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-26-22-11-05-ua6.jpg",
- "trainings": 2
- },
- {
- "id": 6018,
- "name": "№6018 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "158.68841171264648",
- "latitude": "53.02578042082781",
- "address": "Ул. Стрелковая 13 Горнолыжная база Эдельвейс ",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-28-06-11-57-xec.jpg",
- "trainings": 1
- },
- {
- "id": 6019,
- "name": "№6019 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.80738659999997",
- "latitude": "59.41153199999999",
- "address": "Карла Маркса 66",
- "city_id": 7956,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-28-14-11-36-txc.jpg",
- "trainings": 0
- },
- {
- "id": 6020,
- "name": "№6020 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "41.322129517793655",
- "latitude": "56.360405070535116",
- "address": "",
- "city_id": 7426,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-28-15-11-24-y9n.jpg",
- "trainings": 0
- },
- {
- "id": 6021,
- "name": "№6021 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.4114003777504",
- "latitude": "55.76733669128475",
- "address": "Крылатские Холмы 30к4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-29-07-11-05-kuo.jpg",
- "trainings": 5
- },
- {
- "id": 6022,
- "name": "№6022 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.39370718598366",
- "latitude": "55.711372597834135",
- "address": "улица Беловежская до 37",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-29-15-11-42-pv3.jpg",
- "trainings": 1
- },
- {
- "id": 6023,
- "name": "№6023 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "65.58542042970657",
- "latitude": "57.13441700996541",
- "address": "Сквер Якова Неумоева",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-30-12-11-43-0k4.jpg",
- "trainings": 0
- },
- {
- "id": 6024,
- "name": "№6024 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.16971591114998",
- "latitude": "55.74676510186263",
- "address": "Москвоская область, Пос. Мечниково, Школьная ул., 18-в",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/11/2016-11-30-15-11-41-53o.jpeg",
- "trainings": 1
- },
- {
- "id": 6025,
- "name": "№6025 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "75.087770819664",
- "latitude": "42.890126582805166",
- "address": "",
- "city_id": 7969,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-02-11-12-32-8h_.jpg",
- "trainings": 1
- },
- {
- "id": 6026,
- "name": "№6026 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.858608312377896",
- "latitude": "57.2709571320494",
- "address": "",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-03-10-12-23-2vf.jpg",
- "trainings": 0
- },
- {
- "id": 6027,
- "name": "№6027 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.86478634547234",
- "latitude": "56.251079601735604",
- "address": "проспект Октября, 17, Нижний Новгород, Нижегородская область, Россия",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-05-14-12-30-nwh.jpg",
- "trainings": 1
- },
- {
- "id": 6028,
- "name": "№6028 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.85749697685242",
- "latitude": "56.22043838595389",
- "address": "Южное шоссе 2",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-05-20-12-02-ic8.jpg",
- "trainings": 0
- },
- {
- "id": 6029,
- "name": "№6029 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.034447691084324",
- "latitude": "56.32902527210823",
- "address": "Набережная гребного канала",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-07-13-12-44-exr.jpg",
- "trainings": 4
- },
- {
- "id": 6030,
- "name": "№6030 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.02190566062927",
- "latitude": "56.31356147698918",
- "address": "Ижорская 41а",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-08-13-12-56-si9.jpg",
- "trainings": 0
- },
- {
- "id": 6031,
- "name": "№6031 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.02469515800476",
- "latitude": "56.31287118699426",
- "address": "Ижорская 38",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-08-14-12-17-2xh.jpg",
- "trainings": 0
- },
- {
- "id": 6032,
- "name": "№6032 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.78646721296695",
- "latitude": "55.99668050210484",
- "address": "Ул.Киренского 1Б",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-08-14-12-40-y21.jpg",
- "trainings": 0
- },
- {
- "id": 6033,
- "name": "№6033 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "57.15892553329468",
- "latitude": "50.29417162145909",
- "address": "Абилкаир хана, 52",
- "city_id": 7972,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-08-16-12-06-1gw.jpg",
- "trainings": 0
- },
- {
- "id": 6034,
- "name": "№6034 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.01749610900879",
- "latitude": "56.31783385642599",
- "address": "Горького 149а",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-09-13-12-45-ttx.jpg",
- "trainings": 0
- },
- {
- "id": 6035,
- "name": "№6035 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.02230262756348",
- "latitude": "56.319773525527886",
- "address": "Провиантская 20",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-09-13-12-01-hhr.jpg",
- "trainings": 0
- },
- {
- "id": 6036,
- "name": "№6036 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.2572295665741",
- "latitude": "51.695843202232886",
- "address": "25 января 34б",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-25-10-12-45-ybn.jpg",
- "trainings": 3
- },
- {
- "id": 6037,
- "name": "№6037 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.48593521078874",
- "latitude": "55.86573730625009",
- "address": "улица Лавочкина 56/23",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-13-14-12-51-pke.jpg",
- "trainings": 0
- },
- {
- "id": 6038,
- "name": "№6038 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.48669373979283",
- "latitude": "55.866681280078495",
- "address": "улица Лавочкина 56/23",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-13-14-12-39-yqg.jpg",
- "trainings": 0
- },
- {
- "id": 6039,
- "name": "№6039 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "91.42749577760696",
- "latitude": "53.73310736751",
- "address": "Крылова 63",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-14-17-12-25-giw.jpg",
- "trainings": 1
- },
- {
- "id": 6040,
- "name": "№6040 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.45932176350709",
- "latitude": "50.43017616252233",
- "address": "антонова",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-15-16-12-30-izu.jpg",
- "trainings": 0
- },
- {
- "id": 6043,
- "name": "№6043 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.59455490112305",
- "latitude": "47.231429899725576",
- "address": "Ростов-на-Дону, ул.Еременко 96/1 ",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-17-21-12-16-jaj.jpg",
- "trainings": 3
- },
- {
- "id": 6044,
- "name": "№6044 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.3330557346344",
- "latitude": "55.948973945452515",
- "address": "Подрезково, Центральная ул, д 4 к 1",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-18-11-12-17-idf.jpg",
- "trainings": 3
- },
- {
- "id": 6045,
- "name": "№6045 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.48863029470158",
- "latitude": "55.68147159171099",
- "address": " Улица Коштоянца, 6к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-20-18-12-51-k7s.jpg",
- "trainings": 2
- },
- {
- "id": 6046,
- "name": "№6046 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.627006866409374",
- "latitude": "50.517546305250484",
- "address": "",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-21-13-12-50-x5l.jpg",
- "trainings": 0
- },
- {
- "id": 6048,
- "name": "№6048 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "29.67303457258822",
- "latitude": "46.83787414160817",
- "address": "школа № 5",
- "city_id": 7926,
- "country_id": 15,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-22-12-12-37-xl3.jpg",
- "trainings": 0
- },
- {
- "id": 6049,
- "name": "№6049 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.97105342149734",
- "latitude": "55.99465193686518",
- "address": "Щорса д.1",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-23-13-12-59--nj.jpg",
- "trainings": 0
- },
- {
- "id": 6050,
- "name": "№6050 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "34.105451703071594",
- "latitude": "44.96071377727617",
- "address": "Декабристов 17а",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-23-14-12-37-pjn.jpg",
- "trainings": 1
- },
- {
- "id": 6051,
- "name": "№6051 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.48540735225106",
- "latitude": "55.836468756560976",
- "address": "Ленинградское шоссе 52",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-23-14-12-13-syw.jpg",
- "trainings": 1
- },
- {
- "id": 6053,
- "name": "№6053 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.096938371658325",
- "latitude": "44.96529894023788",
- "address": "Парк им. Юрия Гагарина",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-24-14-12-14-mdp.jpg",
- "trainings": 0
- },
- {
- "id": 6054,
- "name": "№6054 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "76.93047255277634",
- "latitude": "43.264557867363145",
- "address": "Сейфуллина",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-24-20-12-34-cci.jpg",
- "trainings": 0
- },
- {
- "id": 6056,
- "name": "№6056 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.12425059126281",
- "latitude": "56.29583271636515",
- "address": "хотьковский проезд ",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-25-23-12-23-t8a.jpg",
- "trainings": 2
- },
- {
- "id": 6058,
- "name": "№6058 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "38.076961040496826",
- "latitude": "44.549591616450996",
- "address": "Микрорайон Парус 24",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-26-20-12-25-w6i.jpg",
- "trainings": 1
- },
- {
- "id": 6059,
- "name": "№6059 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.60805216770632",
- "latitude": "50.556953821134925",
- "address": "лыжероллерная трасса Олимпия",
- "city_id": 626,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-26-22-12-04-cn2.jpg",
- "trainings": 1
- },
- {
- "id": 6061,
- "name": "№6061 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.60903936624527",
- "latitude": "50.50576430588042",
- "address": "проспект Маяковского 24а",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-27-22-12-06-abf.jpg",
- "trainings": 0
- },
- {
- "id": 6062,
- "name": "№6062 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.8188681602478",
- "latitude": "55.74281556438348",
- "address": "Кетчерская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-28-15-12-56-eqb.jpg",
- "trainings": 0
- },
- {
- "id": 6063,
- "name": "№6063 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.47239112854004",
- "latitude": "55.799206492024254",
- "address": "Маршала Новикова, д.7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-29-19-12-50-sgg.jpg",
- "trainings": 2
- },
- {
- "id": 6065,
- "name": "№6065 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.592352390092856",
- "latitude": "55.67411671529366",
- "address": "Нагорный бульвар,3 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2016/12/2016-12-31-22-12-51-oos.jpg",
- "trainings": 0
- },
- {
- "id": 6066,
- "name": "№6066 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "109.20169997960329",
- "latitude": "12.224716079714115",
- "address": "У пешеходной дорожки, напротив Пирамиды.",
- "city_id": 7625,
- "country_id": 33,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-03-05-01-36-kbi.jpg",
- "trainings": 0
- },
- {
- "id": 6068,
- "name": "№6068 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "76.9283401966095",
- "latitude": "43.23530789029382",
- "address": "Байтурсынова Бухар Жыраю",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-15-14-12-37-hvn.png",
- "trainings": 1
- },
- {
- "id": 6072,
- "name": "№6072 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.432815551757812",
- "latitude": "60.05687289554779",
- "address": "",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-04-21-01-10-efc.jpg",
- "trainings": 1
- },
- {
- "id": 6073,
- "name": "№6073 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.59779554605484",
- "latitude": "50.5059212471783",
- "address": "проспек Маяковского ",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-05-20-01-06-ice.jpg",
- "trainings": 1
- },
- {
- "id": 6074,
- "name": "№6074 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.46843218803406",
- "latitude": "55.89132965979006",
- "address": "Эко парк",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-06-10-01-38-4hr.jpg",
- "trainings": 4
- },
- {
- "id": 6075,
- "name": "№6075 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "76.92060470581055",
- "latitude": "43.257830757007234",
- "address": "Гоголя",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-07-14-01-22-xvg.jpeg",
- "trainings": 2
- },
- {
- "id": 6076,
- "name": "№6076 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.79055953025818",
- "latitude": "55.99436692065262",
- "address": "Борисова 12",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-09-13-01-02-lp-.jpg",
- "trainings": 0
- },
- {
- "id": 6079,
- "name": "№6079 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "54.096188843250275",
- "latitude": "54.09830554643505",
- "address": "Тропа здоровья",
- "city_id": 8008,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-11-20-01-00-gfh.jpg",
- "trainings": 0
- },
- {
- "id": 6080,
- "name": "№6080 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "15.590193399999976",
- "latitude": "49.6036649",
- "address": "Plovarenská 3820",
- "city_id": 7680,
- "country_id": 30,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-13-21-01-38-xlf.jpg",
- "trainings": 1
- },
- {
- "id": 6081,
- "name": "№6081 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "16.59387240000001",
- "latitude": "49.2070896",
- "address": "Björnsenův sad 602 00 Brno-střed",
- "city_id": 7680,
- "country_id": 30,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-13-21-01-55-unt.jpg",
- "trainings": 0
- },
- {
- "id": 6083,
- "name": "№6083 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.628864884376526",
- "latitude": "50.109372098276665",
- "address": "Гляйсфилд парк",
- "city_id": 7518,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-15-18-01-08-n9g.jpeg",
- "trainings": 1
- },
- {
- "id": 6084,
- "name": "№6084 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.6946496963501",
- "latitude": "55.77491239152147",
- "address": "Большая почтовая 18/20 корп 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-15-22-01-39-4us.jpg",
- "trainings": 1
- },
- {
- "id": 6085,
- "name": "№6085 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.519691100000045",
- "latitude": "50.5184211",
- "address": "Приречная",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-17-13-01-22-e3x.jpg",
- "trainings": 0
- },
- {
- "id": 6086,
- "name": "№6086 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.518516999999974",
- "latitude": "50.517889",
- "address": "Приречная, 17",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-17-13-01-10-nho.jpg",
- "trainings": 0
- },
- {
- "id": 6087,
- "name": "№6087 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.51768900000002",
- "latitude": "50.50223039999999",
- "address": "Оболонская набережная",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-17-13-01-15-fbg.jpg",
- "trainings": 1
- },
- {
- "id": 6088,
- "name": "№6088 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.35550699999999",
- "latitude": "50.4673133",
- "address": "Академика Палладина, 25",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-17-13-01-56-buo.jpg",
- "trainings": 0
- },
- {
- "id": 6089,
- "name": "№6089 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.50450699999999",
- "latitude": "50.434362",
- "address": "Жилянская, 45",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-17-13-01-23-jeh.jpg",
- "trainings": 1
- },
- {
- "id": 6090,
- "name": "№6090 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.517626899999982",
- "latitude": "50.5165572",
- "address": "приречная, 15",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-17-13-01-48-trg.jpg",
- "trainings": 0
- },
- {
- "id": 6091,
- "name": "№6091 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.76670175790787",
- "latitude": "57.6915912724494",
- "address": "Двор школы №10",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-17-19-01-31-is6.jpg",
- "trainings": 1
- },
- {
- "id": 6092,
- "name": "№6092 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.265967202377283",
- "latitude": "59.9072919915733",
- "address": "Бумажная ул дом 22 к 4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-18-19-01-43-uwi.jpg",
- "trainings": 0
- },
- {
- "id": 6093,
- "name": "№6093 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "158.38578343391418",
- "latitude": "53.18737564836055",
- "address": "парк \"Сказка\"",
- "city_id": 8160,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-13-03-10-59-zbz.jpeg",
- "trainings": 2
- },
- {
- "id": 6094,
- "name": "№6094 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.453758239746094",
- "latitude": "60.047253568272566",
- "address": "Мурино, ул. Английская-13",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-19-07-01-27-rkz.jpg",
- "trainings": 4
- },
- {
- "id": 6097,
- "name": "№6097 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.02750611305237",
- "latitude": "56.318131358084145",
- "address": "Белинского 89",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-19-14-01-40-rsw.jpg",
- "trainings": 0
- },
- {
- "id": 6098,
- "name": "№6098 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.02496337890625",
- "latitude": "56.31765535431857",
- "address": "Полтавская 2а",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-19-14-01-01-9md.jpg",
- "trainings": 0
- },
- {
- "id": 6099,
- "name": "№6099 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.61100366711617",
- "latitude": "49.952231239934775",
- "address": "протозанова 79",
- "city_id": 421,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-19-19-01-05-sly.jpg",
- "trainings": 1
- },
- {
- "id": 6100,
- "name": "№6100 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.325533896684647",
- "latitude": "59.88840941555309",
- "address": "ул. Заставская, 24",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-19-22-01-30-x6p.jpg",
- "trainings": 1
- },
- {
- "id": 6109,
- "name": "№6109 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.01495401230318",
- "latitude": "56.32080709837962",
- "address": "Варварская 40б",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-20-13-01-47-5mq.jpg",
- "trainings": 0
- },
- {
- "id": 6110,
- "name": "№6110 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.01499349021299",
- "latitude": "56.32148231149204",
- "address": "Ковалихенская 47",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-20-13-01-08-ien.jpg",
- "trainings": 0
- },
- {
- "id": 6111,
- "name": "№6111 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.023847579956055",
- "latitude": "56.32077009633437",
- "address": "Ковалихенская 77",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-20-13-01-32-w9-.jpg",
- "trainings": 0
- },
- {
- "id": 6112,
- "name": "№6112 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.346126556396484",
- "latitude": "59.98657014752656",
- "address": "м. Лесная , Парголовская улица ,(рядом выставочный комплекс \"Евразия\")",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-20-20-01-15-i-x.jpg",
- "trainings": 1
- },
- {
- "id": 6113,
- "name": "№6113 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.026808738708496",
- "latitude": "56.322599554138506",
- "address": "Трудовая 14",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-23-13-01-59-br8.jpg",
- "trainings": 1
- },
- {
- "id": 6119,
- "name": "№6119 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.71334457397461",
- "latitude": "43.58615744269523",
- "address": "Переулок Ривьерский 5 (Пляж \"Ривьера\")",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 13,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-23-16-01-21-g5h.jpg",
- "trainings": 9
- },
- {
- "id": 6120,
- "name": "№6120 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "44.03113356483459",
- "latitude": "56.307146169606234",
- "address": "Панина 7к4",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-24-13-01-26-jlt.jpg",
- "trainings": 0
- },
- {
- "id": 6121,
- "name": "№6121 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.040936837295476",
- "latitude": "56.30436982591627",
- "address": "Надежды Сусловой 12 к1",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-24-14-01-50-pqd.jpg",
- "trainings": 1
- },
- {
- "id": 6122,
- "name": "№6122 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "31.282389163970947",
- "latitude": "58.526500741452",
- "address": "Великая 2",
- "city_id": 14,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-01-07-09-12-6fu.jpg",
- "trainings": 1
- },
- {
- "id": 6123,
- "name": "№6123 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "31.209282875061035",
- "latitude": "58.502237556902465",
- "address": "Панковка",
- "city_id": 14,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-25-23-01-27-tta.jpg",
- "trainings": 1
- },
- {
- "id": 6124,
- "name": "№6124 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "90.517258644104",
- "latitude": "53.13167162622938",
- "address": "Ул.Горького 10",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-27-09-01-13-1eb.jpg",
- "trainings": 1
- },
- {
- "id": 6125,
- "name": "№6125 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "90.5156922340393",
- "latitude": "53.13353833498042",
- "address": "Стадион ",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-27-10-01-06-kiu.jpg",
- "trainings": 1
- },
- {
- "id": 6126,
- "name": "№6126 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.044174999999996",
- "latitude": "55.37569666666667",
- "address": "ул. Октябрьская, дом 121, территория СК \"Мещёра\"",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-28-16-01-07-4sz.jpg",
- "trainings": 2
- },
- {
- "id": 6128,
- "name": "№6128 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.89124319906864",
- "latitude": "55.71387982906708",
- "address": "Святоозерская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-30-17-01-31-xb3.jpg",
- "trainings": 3
- },
- {
- "id": 6130,
- "name": "№6130 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.506074577831896",
- "latitude": "55.81754500651573",
- "address": "ул. Космонавта Волкова, д. 5к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/01/2017-01-31-22-01-24-tgo.jpg",
- "trainings": 1
- },
- {
- "id": 6131,
- "name": "№6131 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "104.32424068450928",
- "latitude": "52.26955348013085",
- "address": "Депутатская, 45/2",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-01-04-02-30-iim.jpg",
- "trainings": 1
- },
- {
- "id": 6134,
- "name": "№6134 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.847840147607485",
- "latitude": "55.71805115501201",
- "address": "Муромская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-02-15-02-38-t07.jpg",
- "trainings": 1
- },
- {
- "id": 6135,
- "name": "№6135 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.60729200000003",
- "latitude": "50.505469",
- "address": "проспект Маяковского 20а",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-02-15-02-32-qp6.jpg",
- "trainings": 0
- },
- {
- "id": 6137,
- "name": "№6137 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.185129642486572",
- "latitude": "59.834228072628925",
- "address": "Авангардная ул.,16, к.1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-05-18-02-50-myj.jpg",
- "trainings": 4
- },
- {
- "id": 6138,
- "name": "№6138 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.54309429985051",
- "latitude": "52.5878802845352",
- "address": "",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-03-01-02-20-v5w.jpg",
- "trainings": 0
- },
- {
- "id": 6141,
- "name": "№6141 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.185601711273193",
- "latitude": "59.83436824556606",
- "address": "Авангардная ул., 16, к.1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-05-18-02-01-sc2.jpg",
- "trainings": 3
- },
- {
- "id": 6142,
- "name": "№6142 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.869403541088104",
- "latitude": "43.50602084032092",
- "address": "Пляж \"Хоста\"",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-05-18-02-16-vly.jpg",
- "trainings": 2
- },
- {
- "id": 6143,
- "name": "№6143 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.75258529186249",
- "latitude": "43.565338393979324",
- "address": "Стадион им. Славы Метревели, улица Бзугу 2",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-13-10-02-47-h7l.jpg",
- "trainings": 2
- },
- {
- "id": 6144,
- "name": "№6144 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.49327430129051",
- "latitude": "52.05221667547224",
- "address": "новобульварная 133",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-06-05-02-45-fil.jpg",
- "trainings": 2
- },
- {
- "id": 6145,
- "name": "№6145 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.718303620782535",
- "latitude": "55.38342614674072",
- "address": "Пионерский переулок 14Б",
- "city_id": 85,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-06-14-02-40-0ms.jpeg",
- "trainings": 0
- },
- {
- "id": 6147,
- "name": "№6147 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.479538678926474",
- "latitude": "55.861492751769525",
- "address": " ул. Смольная, д. 39 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-02-11-02-30-4jm.jpg",
- "trainings": 3
- },
- {
- "id": 6151,
- "name": "№6151 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.898599169372574",
- "latitude": "55.6759291898018",
- "address": "Московская обл., Люберецкий р-н, Люберцы г., Октябрьский просп., 202",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-08-14-02-14-kw_.jpg",
- "trainings": 1
- },
- {
- "id": 6152,
- "name": "№6152 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.571435928344727",
- "latitude": "48.185459801809145",
- "address": "Корбинианплатз",
- "city_id": 7469,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-12-00-02-39-gjj.jpeg",
- "trainings": 5
- },
- {
- "id": 6153,
- "name": "№6153 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.565383",
- "latitude": "55.3983238",
- "address": "Ул. Сосновая д.18",
- "city_id": 103,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-16-21-02-54-rxm.jpg",
- "trainings": 0
- },
- {
- "id": 6160,
- "name": "№6160 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.85997533798218",
- "latitude": "56.22479275192827",
- "address": "Южное шоссе 20",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-19-13-02-05-0jo.jpg",
- "trainings": 0
- },
- {
- "id": 6162,
- "name": "№6162 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.46341236000001",
- "latitude": "56.0080093",
- "address": "улица Мирная, 19",
- "city_id": 73,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-20-10-02-58-htg.jpg",
- "trainings": 0
- },
- {
- "id": 6163,
- "name": "№6163 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.4792817234993",
- "latitude": "55.65930174039166",
- "address": "Рузская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-20-10-02-23-njl.jpg",
- "trainings": 6
- },
- {
- "id": 6164,
- "name": "№6164 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "44.92559040000003",
- "latitude": "53.2258302",
- "address": "Тернопольская улица, 16",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-20-14-02-51-_oc.jpg",
- "trainings": 1
- },
- {
- "id": 6165,
- "name": "№6165 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.92008899999996",
- "latitude": "53.22930299999999",
- "address": "улица Рахманинова, 37А",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-20-16-02-23-er2.jpg",
- "trainings": 2
- },
- {
- "id": 6166,
- "name": "№6166 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.07145743301953",
- "latitude": "56.29007604285272",
- "address": "",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-21-19-02-10-ksj.jpg",
- "trainings": 0
- },
- {
- "id": 6169,
- "name": "№6169 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.144673347473145",
- "latitude": "51.69396782997234",
- "address": "45-й Стрелковой Дивизии 226",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-22-21-02-17-jfp.jpg",
- "trainings": 1
- },
- {
- "id": 6173,
- "name": "№6173 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "60.611273534595966",
- "latitude": "56.91004710647299",
- "address": "Космонавтов проспект",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-11-08-10-nqu.jpg",
- "trainings": 0
- },
- {
- "id": 6174,
- "name": "№6174 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.608127638697624",
- "latitude": "56.90543644986986",
- "address": "улица Индустрии",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-11-08-31-j_q.jpg",
- "trainings": 1
- },
- {
- "id": 6175,
- "name": "№6175 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.61538837850094",
- "latitude": "56.90769745798796",
- "address": "Космонавтов проспект",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-11-08-43-t9l.jpg",
- "trainings": 0
- },
- {
- "id": 6176,
- "name": "№6176 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "60.60213357210159",
- "latitude": "56.88761580935886",
- "address": "Летний парк «Уралмаш»",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-12-08-51-brx.jpg",
- "trainings": 0
- },
- {
- "id": 6181,
- "name": "№6181 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.70770925283432",
- "latitude": "47.236252545577955",
- "address": "Мечникова",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-26-14-02-11-hay.jpg",
- "trainings": 1
- },
- {
- "id": 6182,
- "name": "№6182 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.70884382724762",
- "latitude": "47.236150560631195",
- "address": "Мечникова",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-26-14-02-04-iun.jpg",
- "trainings": 2
- },
- {
- "id": 6183,
- "name": "№6183 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.71137046813965",
- "latitude": "47.241133024272735",
- "address": "Студенческий парк",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-26-14-02-29-tyr.jpg",
- "trainings": 6
- },
- {
- "id": 6184,
- "name": "№6184 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.7034552693367",
- "latitude": "47.23191436962905",
- "address": "Буденновский 74а",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-26-14-02-32-uep.jpg",
- "trainings": 2
- },
- {
- "id": 6185,
- "name": "№6185 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.92009210513788",
- "latitude": "45.00455545841283",
- "address": "50 лет ВЛКСМ 67/2",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-26-15-02-52-atc.jpg",
- "trainings": 1
- },
- {
- "id": 6186,
- "name": "№6186 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "27.55813408780523",
- "latitude": "53.91623146632205",
- "address": "",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-26-15-02-14-sxv.jpg",
- "trainings": 2
- },
- {
- "id": 6187,
- "name": "№6187 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.60953990000007",
- "latitude": "56.896686",
- "address": "Ильича 48А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-26-17-02-07-svk.jpg",
- "trainings": 1
- },
- {
- "id": 6188,
- "name": "№6188 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.469463914632797",
- "latitude": "60.05846602687052",
- "address": "Новое - Девяткино , Арсенальная улица",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-26-22-02-09-ihs.jpg",
- "trainings": 1
- },
- {
- "id": 6189,
- "name": "№6189 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.482668429613113",
- "latitude": "60.05678185714935",
- "address": "Новое - Девяткино , улица Энергетиков ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-26-22-02-58-vzl.jpg",
- "trainings": 1
- },
- {
- "id": 6192,
- "name": "№6192 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "43.81528060000005",
- "latitude": "54.8601372",
- "address": "ул.Юбилейная,д.2,корп.1",
- "city_id": 8018,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-27-20-02-39-y_o.jpg",
- "trainings": 1
- },
- {
- "id": 6193,
- "name": "№6193 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "84.95320240000001",
- "latitude": "56.4529143",
- "address": "Лагерный сад",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-28-10-02-55-2em.jpg",
- "trainings": 1
- },
- {
- "id": 6195,
- "name": "№6195 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.419340133666992",
- "latitude": "59.89315644503186",
- "address": "ул.Пинегина Палевский сад",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-28-14-02-16-x2e.jpg",
- "trainings": 2
- },
- {
- "id": 6196,
- "name": "№6196 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.513129536770634",
- "latitude": "55.871381286512026",
- "address": "ангарская 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-28-14-02-03-qhz.jpg",
- "trainings": 1
- },
- {
- "id": 6198,
- "name": "№6198 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.94432970881462",
- "latitude": "52.47573452402637",
- "address": "Гагарина 7",
- "city_id": 8019,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-28-15-02-18-_tl.jpg",
- "trainings": 1
- },
- {
- "id": 6199,
- "name": "№6199 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "41.28672347298584",
- "latitude": "56.33074146692674",
- "address": "Еловая, 1",
- "city_id": 7426,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-28-15-02-50-c4e.jpg",
- "trainings": 2
- },
- {
- "id": 6200,
- "name": "№6200 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.89728049364021",
- "latitude": "55.67476133299783",
- "address": "Московская обл., Люберецкий р-н, Люберцы г., Октябрьский просп., 202",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-28-15-02-20-bvo.jpg",
- "trainings": 1
- },
- {
- "id": 6201,
- "name": "№6201 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.90600776672363",
- "latitude": "55.693696814690206",
- "address": "Ул. Воинов-Интернационалистов дом 21",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/02/2017-02-28-22-02-04-1yd.jpg",
- "trainings": 0
- },
- {
- "id": 6202,
- "name": "№6202 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "24.05756950378418",
- "latitude": "56.88099231398759",
- "address": "Tiraine",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-00-03-07-rs3.jpg",
- "trainings": 0
- },
- {
- "id": 6203,
- "name": "№6203 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.96860833333335",
- "latitude": "56.96740333333333",
- "address": "улица Куликова",
- "city_id": 44,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-20-03-29-edu.jpg",
- "trainings": 1
- },
- {
- "id": 6204,
- "name": "№6204 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.84544310000001",
- "latitude": "56.1852337",
- "address": "окский берег",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-11-03-52-sqa.jpg",
- "trainings": 1
- },
- {
- "id": 6205,
- "name": "№6205 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.03799365410612",
- "latitude": "44.03654945541757",
- "address": "Кочубея, 17",
- "city_id": 735,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-11-03-01-ypd.jpg",
- "trainings": 1
- },
- {
- "id": 6206,
- "name": "№6206 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.46820746505125",
- "latitude": "59.925067823842035",
- "address": "Российский проспект, 6с6",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-02-22-03-15-d5c.jpg",
- "trainings": 6
- },
- {
- "id": 6207,
- "name": "№6207 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.23862040042877",
- "latitude": "51.61922227302728",
- "address": "Парк \"Южный\" (Козлиный)",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-15-03-40-ebb.jpg",
- "trainings": 2
- },
- {
- "id": 6208,
- "name": "№6208 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "76.89004898071289",
- "latitude": "43.19299836161811",
- "address": "",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-16-03-21-alg.png",
- "trainings": 2
- },
- {
- "id": 6211,
- "name": "№6211 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.25886583328247",
- "latitude": "55.43947095858793",
- "address": "Былово",
- "city_id": 138,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-20-03-25-uyg.jpg",
- "trainings": 1
- },
- {
- "id": 6212,
- "name": "№6212 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.32883059768369",
- "latitude": "43.910206841897526",
- "address": "лазарева",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-21-03-35-qni.jpg",
- "trainings": 2
- },
- {
- "id": 6213,
- "name": "№6213 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.61693805456161",
- "latitude": "49.95373956827851",
- "address": "Протозанова 61",
- "city_id": 421,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-21-03-59-uuj.jpg",
- "trainings": 0
- },
- {
- "id": 6214,
- "name": "№6214 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "82.62022778391838",
- "latitude": "49.954495440456604",
- "address": "Протозанова 51",
- "city_id": 421,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-21-03-03-elv.jpg",
- "trainings": 0
- },
- {
- "id": 6215,
- "name": "№6215 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.32390606193235",
- "latitude": "43.913723591948404",
- "address": "лазарева",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-21-03-18-4gy.jpg",
- "trainings": 2
- },
- {
- "id": 6216,
- "name": "№6216 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "82.62901872396469",
- "latitude": "49.958447181728076",
- "address": "Протозанова 19",
- "city_id": 421,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-21-03-45-eun.jpg",
- "trainings": 0
- },
- {
- "id": 6217,
- "name": "№6217 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.60407149791718",
- "latitude": "49.96240204956307",
- "address": "Независимости 30",
- "city_id": 421,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-21-03-00-gtd.jpg",
- "trainings": 1
- },
- {
- "id": 6218,
- "name": "№6218 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "82.596655189991",
- "latitude": "49.96140128474131",
- "address": "Гвардейской девизии 20/1",
- "city_id": 421,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-21-03-47-grd.jpg",
- "trainings": 1
- },
- {
- "id": 6219,
- "name": "№6219 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.59482055902481",
- "latitude": "49.966491165496414",
- "address": "Независимости 31/1",
- "city_id": 421,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-21-03-30-jr0.jpg",
- "trainings": 1
- },
- {
- "id": 6220,
- "name": "№6220 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.60033518075943",
- "latitude": "49.96257459311935",
- "address": "Независимости 21",
- "city_id": 421,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-21-03-38-kxh.jpg",
- "trainings": 0
- },
- {
- "id": 6221,
- "name": "№6221 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.5595910847187",
- "latitude": "49.99765020128528",
- "address": "Независимости 145",
- "city_id": 421,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-21-03-00-jrd.jpg",
- "trainings": 0
- },
- {
- "id": 6222,
- "name": "№6222 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.831527187341294",
- "latitude": "59.20481132242961",
- "address": "Гагарина 81б",
- "city_id": 19,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-01-21-03-21-zaa.jpg",
- "trainings": 1
- },
- {
- "id": 6224,
- "name": "№6224 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "113.49073827266693",
- "latitude": "52.0732680290372",
- "address": "Северный микрорайон 24",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-02-01-03-21-3n5.jpg",
- "trainings": 2
- },
- {
- "id": 6226,
- "name": "№6226 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.52743286508178",
- "latitude": "55.73021883887397",
- "address": "Пырьева 24",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-02-08-03-31-8ki.jpg",
- "trainings": 1
- },
- {
- "id": 6227,
- "name": "№6227 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.39674830436707",
- "latitude": "52.06994427008156",
- "address": "5 мкр 6 школа",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-02-10-03-31-b9l.jpg",
- "trainings": 1
- },
- {
- "id": 6228,
- "name": "№6228 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.65623040342712",
- "latitude": "55.85259935951487",
- "address": "ул. Амундсена",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-02-14-03-59-3sr.jpg",
- "trainings": 2
- },
- {
- "id": 6229,
- "name": "№6229 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.37761499999999",
- "latitude": "55.58914499999999",
- "address": "ул. Радужная, 23",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-02-15-03-46--g3.jpg",
- "trainings": 3
- },
- {
- "id": 6230,
- "name": "№6230 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "47.790141105651855",
- "latitude": "52.02782630540409",
- "address": "комсомольская 47б",
- "city_id": 7924,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-02-18-03-35-udm.jpg",
- "trainings": 0
- },
- {
- "id": 6231,
- "name": "№6231 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.238786697387695",
- "latitude": "55.947259393315306",
- "address": "Пгт. Вольгинский, ул. Старовская, 9",
- "city_id": 8376,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-03-10-03-25-a1n.jpg",
- "trainings": 4
- },
- {
- "id": 6233,
- "name": "№6233 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.75630831718445",
- "latitude": "55.91232704793228",
- "address": "Станционная 3 ",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-04-00-03-46-yti.jpg",
- "trainings": 1
- },
- {
- "id": 6238,
- "name": "№6238 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.50127952545881",
- "latitude": "55.53985671019656",
- "address": "адмирала Семёнова 21",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-14-17-03-11-fha.jpg",
- "trainings": 2
- },
- {
- "id": 6239,
- "name": "№6239 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.49399262565612",
- "latitude": "59.9238076419894",
- "address": "пр. Солидарности 8к5",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-04-13-03-30-_gt.jpg",
- "trainings": 2
- },
- {
- "id": 6240,
- "name": "№6240 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.67382270097733",
- "latitude": "66.08305596139878",
- "address": "Проспект Ленинградский, 4Б",
- "city_id": 570,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-04-13-03-36-wjq.jpg",
- "trainings": 3
- },
- {
- "id": 6253,
- "name": "№6253 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.08225303888321",
- "latitude": "44.56001577949504",
- "address": "Островского 23",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-04-17-03-05-6sm.jpg",
- "trainings": 0
- },
- {
- "id": 6265,
- "name": "№6265 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "43.86036157608032",
- "latitude": "56.23754282963738",
- "address": "Героя Смирнова 39а",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-04-18-03-31-vx3.jpg",
- "trainings": 0
- },
- {
- "id": 6267,
- "name": "№6267 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.441484451293945",
- "latitude": "50.46378767891497",
- "address": "Tymofiya Shamryla vulytsya",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-07-19-03-46-ytg.jpeg",
- "trainings": 0
- },
- {
- "id": 6268,
- "name": "№6268 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.92288339021616",
- "latitude": "45.03549041100662",
- "address": "ленина 466",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-04-20-03-11-rj_.jpg",
- "trainings": 0
- },
- {
- "id": 6274,
- "name": "№6274 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "65.4870782539673",
- "latitude": "57.159370185065065",
- "address": "Ямская 102/а",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-05-12-03-35-rbt.jpg",
- "trainings": 0
- },
- {
- "id": 6275,
- "name": "№6275 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "65.48752528836053",
- "latitude": "57.161511005202705",
- "address": "Ямская 98/д",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-05-12-03-57-9dr.jpg",
- "trainings": 0
- },
- {
- "id": 6277,
- "name": "№6277 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "65.4896072552948",
- "latitude": "57.164464085581045",
- "address": "Военная 15",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-05-13-03-58-bcz.jpg",
- "trainings": 0
- },
- {
- "id": 6278,
- "name": "№6278 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "65.48314569444278",
- "latitude": "57.15812935656539",
- "address": "Ямская 99",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-05-13-03-35-oiq.jpg",
- "trainings": 0
- },
- {
- "id": 6279,
- "name": "№6279 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.452446857672157",
- "latitude": "53.85219433100746",
- "address": "Есенина 38",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-05-23-03-18-ust.jpg",
- "trainings": 0
- },
- {
- "id": 6280,
- "name": "№6280 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.453728875393608",
- "latitude": "53.851912737587874",
- "address": "есенина 36",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-05-23-03-45-xip.jpg",
- "trainings": 1
- },
- {
- "id": 6281,
- "name": "№6281 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.7685821056366",
- "latitude": "55.73841866714134",
- "address": "Кусковская улица 32",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-06-14-03-05-p19.jpg",
- "trainings": 1
- },
- {
- "id": 6282,
- "name": "№6282 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.77666091918945",
- "latitude": "55.73995280568995",
- "address": "Перовский ПКиО",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-06-14-03-33-rwy.jpg",
- "trainings": 0
- },
- {
- "id": 6283,
- "name": "№6283 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.77702569961548",
- "latitude": "55.741064112484054",
- "address": "Перовский ПКиО",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-06-14-03-02-mmz.jpg",
- "trainings": 0
- },
- {
- "id": 6284,
- "name": "№6284 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.772852182388306",
- "latitude": "55.7415412399298",
- "address": "Перовский ПКиО",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-06-14-03-00-jkj.jpg",
- "trainings": 7
- },
- {
- "id": 6285,
- "name": "№6285 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.76993930339813",
- "latitude": "55.740725892027235",
- "address": "улица Плеханова 35",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-06-14-03-17-hwg.jpg",
- "trainings": 0
- },
- {
- "id": 6286,
- "name": "№6286 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.773383259773254",
- "latitude": "55.74423478671142",
- "address": "улица Лазо 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-06-14-03-14-7sj.jpg",
- "trainings": 0
- },
- {
- "id": 6287,
- "name": "№6287 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.778356075286865",
- "latitude": "55.742737052705436",
- "address": "Перовская улица, 38к4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-06-14-03-57-upu.jpg",
- "trainings": 0
- },
- {
- "id": 6288,
- "name": "№6288 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.77947187423706",
- "latitude": "55.74256795009307",
- "address": "Перовская улица, 40к4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-06-14-03-39-hvd.jpg",
- "trainings": 0
- },
- {
- "id": 6289,
- "name": "№6289 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.78568387031555",
- "latitude": "55.74238072848889",
- "address": "Кусковская улица 31к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-06-14-03-37-qok.jpg",
- "trainings": 0
- },
- {
- "id": 6290,
- "name": "№6290 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.7859628200531",
- "latitude": "55.7429182332626",
- "address": "Кусковская улица 31к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-06-14-03-29-s0q.jpg",
- "trainings": 0
- },
- {
- "id": 6291,
- "name": "№6291 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.793869972229004",
- "latitude": "55.743594633243355",
- "address": "Кусковская улица 47",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-06-14-03-46-kqx.jpg",
- "trainings": 0
- },
- {
- "id": 6292,
- "name": "№6292 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.614765392620825",
- "latitude": "55.85655614074164",
- "address": "ул Отрадная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-07-09-03-40-m5g.jpg",
- "trainings": 0
- },
- {
- "id": 6295,
- "name": "№6295 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.45899349451065",
- "latitude": "55.901741057416515",
- "address": "СК \"Родина\", ул. Чкалова, 4а",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-08-15-03-10-sxw.jpg",
- "trainings": 3
- },
- {
- "id": 6296,
- "name": "№6296 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.599347399999942",
- "latitude": "50.5273585",
- "address": "Радунская 5Б",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-08-22-03-40-l9d.jpg",
- "trainings": 2
- },
- {
- "id": 6297,
- "name": "№6297 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.494766722753866",
- "latitude": "55.86828405860968",
- "address": "петрозаводская 24",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-10-12-03-05-bks.jpg",
- "trainings": 3
- },
- {
- "id": 6298,
- "name": "№6298 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "104.16256904605689",
- "latitude": "52.34921101906413",
- "address": "ул. Баумана 206",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-10-15-03-29-c6o.jpg",
- "trainings": 0
- },
- {
- "id": 6299,
- "name": "№6299 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.533038333333366",
- "latitude": "55.58048333333333",
- "address": "ул. Спортивная, д. 9, территория лицея",
- "city_id": 668,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-12-23-03-49-mrp.jpeg",
- "trainings": 3
- },
- {
- "id": 6304,
- "name": "№6304 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.51989666666668",
- "latitude": "55.583705",
- "address": "Маршала Борзова проспект, д. 13",
- "city_id": 668,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-12-23-03-41-5qt.jpeg",
- "trainings": 1
- },
- {
- "id": 6310,
- "name": "№6310 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.51878666666664",
- "latitude": "55.57809166666667",
- "address": "улица Академическая, д. 7",
- "city_id": 668,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-12-23-03-23-5as.jpeg",
- "trainings": 0
- },
- {
- "id": 6311,
- "name": "№6311 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "42.05695152282715",
- "latitude": "55.56919791301075",
- "address": "Красногвардейская улица, 40, Муром, Владимирская область, Россия",
- "city_id": 792,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-11-13-03-02-pwp.jpg",
- "trainings": 2
- },
- {
- "id": 6314,
- "name": "№6314 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.486334800720215",
- "latitude": "48.095652173297246",
- "address": "Форст-Кастен-аллее 114",
- "city_id": 7469,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-11-23-03-46-2m8.jpg",
- "trainings": 0
- },
- {
- "id": 6316,
- "name": "№6316 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.77282524108887",
- "latitude": "47.23317834168481",
- "address": "Площадь Карла Маркса 1/1",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-12-14-03-34-ucy.jpg",
- "trainings": 0
- },
- {
- "id": 6317,
- "name": "№6317 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.715447425842285",
- "latitude": "47.24666854547898",
- "address": "Турмалиновская 79 /1 ",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-12-18-03-23-q2u.jpg",
- "trainings": 1
- },
- {
- "id": 6318,
- "name": "№6318 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "29.85857216190186",
- "latitude": "59.87281222141829",
- "address": "Чебышевская 10/2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-13-00-03-04-xl0.jpg",
- "trainings": 2
- },
- {
- "id": 6319,
- "name": "№6319 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.39013665914536",
- "latitude": "52.06802178465292",
- "address": "Фадеева, 21",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-13-04-03-40-elx.jpg",
- "trainings": 0
- },
- {
- "id": 6320,
- "name": "№6320 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.90161434299171",
- "latitude": "55.68171599103494",
- "address": "30 дом,Киселевская улица, Люберцы, Московская область, Россия",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-19-16-03-04-mbd.jpg",
- "trainings": 0
- },
- {
- "id": 6322,
- "name": "№6322 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.55018591880798",
- "latitude": "55.610117339833344",
- "address": "Рокотова, 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-13-09-03-22-x_w.jpeg",
- "trainings": 10
- },
- {
- "id": 6323,
- "name": "№6323 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "113.35667073726654",
- "latitude": "52.06677195985186",
- "address": "Строителей 5",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-27-11-03-00-nue.jpg",
- "trainings": 1
- },
- {
- "id": 6325,
- "name": "№6325 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.97697399999993",
- "latitude": "56.051554",
- "address": "Ферганская 8",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-15-08-03-06-j1k.jpg",
- "trainings": 3
- },
- {
- "id": 6326,
- "name": "№6326 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.22942578792572",
- "latitude": "51.61128788608502",
- "address": "Танеева 12",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-14-00-03-20-k6b.jpg",
- "trainings": 3
- },
- {
- "id": 6327,
- "name": "№6327 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.5408571115006",
- "latitude": "55.574697879858164",
- "address": "улица Войкова 3 за школой №2",
- "city_id": 668,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-14-12-03-22-gdn.jpg",
- "trainings": 0
- },
- {
- "id": 6328,
- "name": "№6328 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.499326344088786",
- "latitude": "55.56973202999631",
- "address": "улица Новый Тупик ПТУ №66",
- "city_id": 668,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-14-12-03-20-bjm.jpg",
- "trainings": 0
- },
- {
- "id": 6329,
- "name": "№6329 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.54046197301636",
- "latitude": "55.57446782010015",
- "address": "проспект Ильича 24, Территория школы №2",
- "city_id": 668,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-14-12-03-51-qop.jpg",
- "trainings": 0
- },
- {
- "id": 6330,
- "name": "№6330 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.53836087164996",
- "latitude": "55.573548087953824",
- "address": "улица Советская 25к1",
- "city_id": 668,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-14-12-03-36-nci.jpg",
- "trainings": 0
- },
- {
- "id": 6331,
- "name": "№6331 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.52371864736028",
- "latitude": "55.561821376621545",
- "address": "улица Чехова 73",
- "city_id": 668,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-14-12-03-54-dof.jpg",
- "trainings": 0
- },
- {
- "id": 6332,
- "name": "№6332 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "104.15188193321228",
- "latitude": "52.34945787363318",
- "address": "20-й советский переулок",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-14-14-03-16-pmn.jpg",
- "trainings": 1
- },
- {
- "id": 6334,
- "name": "№6334 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.433044999999993",
- "latitude": "50.47425",
- "address": "Ryz'ka vulytsya",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-14-18-03-39-k_0.jpg",
- "trainings": 0
- },
- {
- "id": 6335,
- "name": "№6335 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.61898726224899",
- "latitude": "55.69760899790133",
- "address": "варшавское шоссе 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-15-13-03-10-sb1.jpg",
- "trainings": 1
- },
- {
- "id": 6336,
- "name": "№6336 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.37053406238556",
- "latitude": "56.149060754061544",
- "address": "Проспект Строителей, 2Б",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-18-13-03-51-pse.jpg",
- "trainings": 1
- },
- {
- "id": 6337,
- "name": "№6337 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "65.48539012670517",
- "latitude": "57.16189640418855",
- "address": "Садовая 121",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-16-16-03-01-r5z.jpg",
- "trainings": 2
- },
- {
- "id": 6338,
- "name": "№6338 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "65.49386590719223",
- "latitude": "57.160206267136324",
- "address": "Ямская 75",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-16-16-03-11-zj7.jpg",
- "trainings": 1
- },
- {
- "id": 6339,
- "name": "№6339 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "46.187896728515625",
- "latitude": "48.283449916726006",
- "address": "Сталинградская улица 11",
- "city_id": 7992,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-16-17-03-20-atu.jpg",
- "trainings": 1
- },
- {
- "id": 6341,
- "name": "№6341 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "65.47382444143295",
- "latitude": "57.16311814190601",
- "address": "Затюменский парк",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-17-08-03-27-3y_.jpg",
- "trainings": 3
- },
- {
- "id": 6343,
- "name": "№6343 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.920700907707214",
- "latitude": "55.68569285238755",
- "address": "2-я вольская д.6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-17-09-03-47-2vm.jpg",
- "trainings": 0
- },
- {
- "id": 6345,
- "name": "№6345 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.61761128902435",
- "latitude": "55.69226366041939",
- "address": "варшавское шоссе 15",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-17-14-03-53-2dq.jpg",
- "trainings": 0
- },
- {
- "id": 6346,
- "name": "№6346 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.52747648954391",
- "latitude": "52.034231234492154",
- "address": "Баргузинская, 43а",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-18-13-03-17-npv.jpg",
- "trainings": 1
- },
- {
- "id": 6347,
- "name": "№6347 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.46705663204193",
- "latitude": "50.44894460796742",
- "address": "проспект победы 27",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-18-13-03-18-fr5.jpg",
- "trainings": 1
- },
- {
- "id": 6348,
- "name": "№6348 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "40.990805625915534",
- "latitude": "56.96767295732764",
- "address": "Московский микрорайон",
- "city_id": 44,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-07-06-05-11-r6q.jpg",
- "trainings": 2
- },
- {
- "id": 6349,
- "name": "№6349 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "113.36184130290223",
- "latitude": "52.0684533286645",
- "address": "строителей 7а",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-18-17-03-09-wph.jpg",
- "trainings": 1
- },
- {
- "id": 6351,
- "name": "№6351 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.478270530700684",
- "latitude": "55.64289361758521",
- "address": "Ленинский проспект 131 к4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-19-11-03-03-js_.jpg",
- "trainings": 0
- },
- {
- "id": 6352,
- "name": "№6352 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.327153696295227",
- "latitude": "59.841807886213054",
- "address": "Московское шоссе 4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-19-18-03-28-q0d.jpg",
- "trainings": 0
- },
- {
- "id": 6353,
- "name": "№6353 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "45.183865427970886",
- "latitude": "53.199766820174816",
- "address": "парк им.М.Ю.Лермонтова",
- "city_id": 788,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-19-22-03-01-b9m.jpg",
- "trainings": 1
- },
- {
- "id": 6354,
- "name": "№6354 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "91.42452980000007",
- "latitude": "53.7321727",
- "address": "Крылова 71",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-20-08-03-42-o7b.jpg",
- "trainings": 0
- },
- {
- "id": 6355,
- "name": "№6355 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.90667657909853",
- "latitude": "55.695903112792195",
- "address": "Комсомольский проспект 19к2",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-20-15-03-38-jbs.jpg",
- "trainings": 0
- },
- {
- "id": 6356,
- "name": "№6356 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.929661300247176",
- "latitude": "55.65427222040414",
- "address": "Ул Шевченко 4",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-20-16-03-12-czf.jpg",
- "trainings": 0
- },
- {
- "id": 6357,
- "name": "№6357 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.90811720104978",
- "latitude": "55.69545166743105",
- "address": "Комсомольский проспект 19к1",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-20-16-03-50-nx-.jpg",
- "trainings": 0
- },
- {
- "id": 6359,
- "name": "№6359 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.92088912222903",
- "latitude": "55.68743902870641",
- "address": "2 вольская д3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-21-12-03-00-4zy.jpg",
- "trainings": 1
- },
- {
- "id": 6360,
- "name": "№6360 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.53585099999998",
- "latitude": "55.595641",
- "address": "Голубинская 24 к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-21-19-03-07-cbz.jpg",
- "trainings": 1
- },
- {
- "id": 6361,
- "name": "№6361 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.90405511856079",
- "latitude": "55.69480943831871",
- "address": "Воинов Интернационалистов ",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-22-23-03-49-fxu.jpg",
- "trainings": 1
- },
- {
- "id": 6363,
- "name": "№6363 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.901716232299805",
- "latitude": "55.6935093586793",
- "address": "Воинов Интернационалистов 27А",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-23-14-03-31-gjz.jpg",
- "trainings": 1
- },
- {
- "id": 6365,
- "name": "№6365 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.38790237903595",
- "latitude": "52.06675876890227",
- "address": "6-й микрорайон",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-25-11-03-28-0e3.jpg",
- "trainings": 1
- },
- {
- "id": 6369,
- "name": "№6369 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.352329490599004",
- "latitude": "56.12912471133418",
- "address": "ул. Балакирева, 41А",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-25-20-03-19-a1p.jpg",
- "trainings": 0
- },
- {
- "id": 6370,
- "name": "№6370 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.3577623584747",
- "latitude": "56.13522380764882",
- "address": "Проспект Строителей 44В",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-25-20-03-43-gfm.jpg",
- "trainings": 1
- },
- {
- "id": 6371,
- "name": "№6371 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.35921444907376",
- "latitude": "56.135458805050774",
- "address": "Проспект Строителей 44Г",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-25-20-03-14-1wb.jpg",
- "trainings": 1
- },
- {
- "id": 6372,
- "name": "№6372 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "92.9001431965728",
- "latitude": "55.99718019767756",
- "address": "ул.Навигационная 5 ",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-11-03-58-5by.jpg",
- "trainings": 0
- },
- {
- "id": 6373,
- "name": "№6373 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "92.90199661589963",
- "latitude": "55.99765218989769",
- "address": "ул.Навигационная 7",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-11-03-23-jit.jpg",
- "trainings": 0
- },
- {
- "id": 6375,
- "name": "№6375 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.902582585811615",
- "latitude": "55.6915349690083",
- "address": "Комсомольский проспект, 11",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-16-03-06-vvt.jpg",
- "trainings": 1
- },
- {
- "id": 6378,
- "name": "№6378 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.56146460771561",
- "latitude": "55.542297256608585",
- "address": "Изюмская ул., 61",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-17-03-49-4zr.jpg",
- "trainings": 3
- },
- {
- "id": 6379,
- "name": "№6379 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.560928436215136",
- "latitude": "55.54313056655874",
- "address": "Изюмская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-18-03-48-n2z.jpg",
- "trainings": 1
- },
- {
- "id": 6380,
- "name": "№6380 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.55699796004944",
- "latitude": "55.54765736865876",
- "address": "Скобелевская ул., 21с2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-18-03-25-dyg.jpg",
- "trainings": 2
- },
- {
- "id": 6381,
- "name": "№6381 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.56003986983637",
- "latitude": "55.54828224982991",
- "address": "Скобелевская ул., 23к5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-18-03-18-k2n.jpg",
- "trainings": 1
- },
- {
- "id": 6382,
- "name": "№6382 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.56132057354125",
- "latitude": "55.547190625610234",
- "address": "Ливенская ул., 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-18-03-12-mto.jpg",
- "trainings": 0
- },
- {
- "id": 6383,
- "name": "№6383 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.561749726983635",
- "latitude": "55.54662766663203",
- "address": "Ливенская ул., 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-18-03-50-wjf.jpg",
- "trainings": 0
- },
- {
- "id": 6384,
- "name": "№6384 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.56352549206542",
- "latitude": "55.54926280045229",
- "address": "Изюмская ул., 28к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-18-03-04-u5e.jpg",
- "trainings": 0
- },
- {
- "id": 6385,
- "name": "№6385 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.055168099999946",
- "latitude": "55.80936680000001",
- "address": "Мещера 21",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-18-03-36-2w6.jpg",
- "trainings": 1
- },
- {
- "id": 6386,
- "name": "№6386 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.5962769985199",
- "latitude": "55.64265747930816",
- "address": "Балаклавский пр-т 20 корп 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-19-03-53-urf.jpg",
- "trainings": 2
- },
- {
- "id": 6387,
- "name": "№6387 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.125132800000074",
- "latitude": "56.292947",
- "address": "Сергиев Посад , ул куликова 4",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-21-03-09-eto.jpg",
- "trainings": 2
- },
- {
- "id": 6389,
- "name": "№6389 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.13073905753322",
- "latitude": "56.29609246414471",
- "address": "ул Вознесенская 84",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-21-03-53-ttt.jpg",
- "trainings": 1
- },
- {
- "id": 6393,
- "name": "№6393 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.311723700000016",
- "latitude": "59.91148159999999",
- "address": "Ул.7-ая красноармейская, д. 18",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-23-03-15-lsc.jpg",
- "trainings": 0
- },
- {
- "id": 6394,
- "name": "№6394 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.304712600000016",
- "latitude": "59.91299410000001",
- "address": "Ул. 10-ая Красноармейская, д. 3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-23-03-58-grc.jpg",
- "trainings": 0
- },
- {
- "id": 6395,
- "name": "№6395 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.29778239999996",
- "latitude": "59.91460559999999",
- "address": "Ул. 8-ая Красноармейская, д. 25",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-23-03-41-ec-.jpg",
- "trainings": 0
- },
- {
- "id": 6396,
- "name": "№6396 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.300541000000067",
- "latitude": "59.913892",
- "address": "Ул. 8-ая Красноармейская, д. 16",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-26-23-03-00-xp0.jpg",
- "trainings": 2
- },
- {
- "id": 6397,
- "name": "№6397 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.302170515060425",
- "latitude": "59.913471662570984",
- "address": "Ул. 10-ая Красноармейская, д. 5а",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-27-00-03-31-_xi.jpg",
- "trainings": 0
- },
- {
- "id": 6398,
- "name": "№6398 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.8991992",
- "latitude": "47.2181234",
- "address": "Чехова 182 Г",
- "city_id": 133,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-27-08-03-21-6va.jpg",
- "trainings": 0
- },
- {
- "id": 6400,
- "name": "№6400 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.43350473016358",
- "latitude": "56.14766372752859",
- "address": "ул. Мира, 59",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-27-12-03-49-emn.jpg",
- "trainings": 0
- },
- {
- "id": 6401,
- "name": "№6401 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "40.43122708797455",
- "latitude": "56.14718712940854",
- "address": "ул.Мира, 57",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-27-12-03-49-x39.jpg",
- "trainings": 0
- },
- {
- "id": 6402,
- "name": "№6402 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "40.40396715938573",
- "latitude": "56.14070670519239",
- "address": "ул. Мира, 31",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-27-12-03-57-2im.jpg",
- "trainings": 1
- },
- {
- "id": 6403,
- "name": "№6403 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.931006000000025",
- "latitude": "55.792337",
- "address": "Разина 2к4",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-27-22-03-51-q5a.jpg",
- "trainings": 1
- },
- {
- "id": 6404,
- "name": "№6404 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.42228990000001",
- "latitude": "52.0548092",
- "address": "Яковлева,41",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-28-04-03-03-xvw.jpg",
- "trainings": 0
- },
- {
- "id": 6405,
- "name": "№6405 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.42112880000002",
- "latitude": "52.0536983",
- "address": "Рахова,96",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-28-04-03-22-bed.jpg",
- "trainings": 0
- },
- {
- "id": 6406,
- "name": "№6406 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.4217916",
- "latitude": "52.0523823",
- "address": "Рахова,86",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-28-04-03-26-sug.jpg",
- "trainings": 0
- },
- {
- "id": 6407,
- "name": "№6407 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.42275199999995",
- "latitude": "52.052522",
- "address": "Яковлева,37",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-28-04-03-09-n4s.jpg",
- "trainings": 0
- },
- {
- "id": 6409,
- "name": "№6409 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.81275272369385",
- "latitude": "55.73266209000277",
- "address": "Алля Жемчуговой",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-28-17-03-54-uak.jpg",
- "trainings": 9
- },
- {
- "id": 6412,
- "name": "№6412 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.308322185180714",
- "latitude": "56.33381878585938",
- "address": "ул Еловая 86/2",
- "city_id": 7426,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-29-11-03-02-qqn.jpg",
- "trainings": 1
- },
- {
- "id": 6414,
- "name": "№6414 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.896371696295205",
- "latitude": "55.67994408465559",
- "address": "Ул.Смирновская 13",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-29-17-03-18-jj7.jpg",
- "trainings": 2
- },
- {
- "id": 6415,
- "name": "№6415 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "113.44122871756554",
- "latitude": "52.11828749313954",
- "address": "Биофабрика, Школа №20",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-30-04-03-30--nd.jpg",
- "trainings": 0
- },
- {
- "id": 6416,
- "name": "№6416 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "132.8923738002777",
- "latitude": "48.800660539114965",
- "address": "ул. Пионерская, д. 81",
- "city_id": 633,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-30-04-03-59-114.jpg",
- "trainings": 1
- },
- {
- "id": 6417,
- "name": "№6417 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.81271383166313",
- "latitude": "55.94995223950724",
- "address": "пос. Челюсткинский, Большая Тарасовская 106",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-30-12-03-35-d92.jpeg",
- "trainings": 0
- },
- {
- "id": 6418,
- "name": "№6418 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.38220952380368",
- "latitude": "56.144456286964285",
- "address": "ул. Горького, 83",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-30-14-03-12-aht.jpg",
- "trainings": 0
- },
- {
- "id": 6419,
- "name": "№6419 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.38448317790983",
- "latitude": "56.14355745269067",
- "address": "ул. Студенческая, 2А",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-30-14-03-50-nim.jpg",
- "trainings": 0
- },
- {
- "id": 6422,
- "name": "№6422 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.95208278570556",
- "latitude": "56.166031243220296",
- "address": "Львовский парк",
- "city_id": 126,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-30-14-03-27-p1n.jpg",
- "trainings": 1
- },
- {
- "id": 6423,
- "name": "№6423 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.881234884262085",
- "latitude": "55.69545643858462",
- "address": "Парк Наташинские пруды",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-30-18-03-41-55b.jpg",
- "trainings": 3
- },
- {
- "id": 6426,
- "name": "№6426 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "35.932626128196716",
- "latitude": "56.833036639858314",
- "address": "Улица Склизкого 96",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/03/2017-03-31-19-03-57-s5y.jpg",
- "trainings": 4
- },
- {
- "id": 6427,
- "name": "№6427 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.4203536",
- "latitude": "52.0517196",
- "address": "Рахова,75",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-01-10-04-37-b53.jpg",
- "trainings": 1
- },
- {
- "id": 6428,
- "name": "№6428 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.946144699904835",
- "latitude": "45.03854576756985",
- "address": "Краснофлотская 46",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-01-12-04-56-aqm.jpg",
- "trainings": 0
- },
- {
- "id": 6429,
- "name": "№6429 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.38017796560666",
- "latitude": "56.122601159892994",
- "address": "Проспект Ленина, 8",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-01-21-04-04-ye2.jpg",
- "trainings": 0
- },
- {
- "id": 6430,
- "name": "№6430 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.3722131951065",
- "latitude": "56.12003272867795",
- "address": "Проспект Ленина, 21",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-01-21-04-03-zcq.jpg",
- "trainings": 0
- },
- {
- "id": 6432,
- "name": "№6432 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.80424142540892",
- "latitude": "56.02374277148969",
- "address": "Свободный проспект, 44Б",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-02-12-04-23-x1w.jpg",
- "trainings": 0
- },
- {
- "id": 6433,
- "name": "№6433 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.370500306884765",
- "latitude": "56.1480322586835",
- "address": "Белоконской, 8А",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-02-19-04-34-b7h.jpg",
- "trainings": 1
- },
- {
- "id": 6434,
- "name": "№6434 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.376047763229394",
- "latitude": "56.152310323412",
- "address": "Тракторная, 11",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-02-19-04-20-h7u.jpg",
- "trainings": 1
- },
- {
- "id": 6435,
- "name": "№6435 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.37727110185244",
- "latitude": "56.151575206442054",
- "address": "Тракторная, 13",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-02-20-04-29-y2n.jpg",
- "trainings": 0
- },
- {
- "id": 6436,
- "name": "№6436 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.383254150787366",
- "latitude": "56.148392128637475",
- "address": "Асаткина, 9",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-02-20-04-28-7wq.jpg",
- "trainings": 1
- },
- {
- "id": 6437,
- "name": "№6437 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.365724288360525",
- "latitude": "56.14792920168876",
- "address": "Белоконской, 17",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-02-20-04-13-qmm.jpg",
- "trainings": 0
- },
- {
- "id": 6438,
- "name": "№6438 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.36500659259036",
- "latitude": "56.148611047205",
- "address": "Белоконской, 16",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-02-20-04-45-t28.jpg",
- "trainings": 0
- },
- {
- "id": 6440,
- "name": "№6440 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.992090187966824",
- "latitude": "55.81576683009512",
- "address": "улица Набережная, 1",
- "city_id": 95,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-06-20-04-47-ahh.jpg",
- "trainings": 0
- },
- {
- "id": 6444,
- "name": "№6444 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.50029750080262",
- "latitude": "55.79941143717508",
- "address": "ул Панфиловская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-03-19-04-30-hwe.jpg",
- "trainings": 0
- },
- {
- "id": 6445,
- "name": "№6445 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.3862202167511",
- "latitude": "60.020501825005425",
- "address": "ул. Вавиловых, 8, к.2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-03-23-04-50-o5o.jpg",
- "trainings": 1
- },
- {
- "id": 6447,
- "name": "№6447 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.1737003326416",
- "latitude": "55.990700524726485",
- "address": "Школьное озеро",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-04-17-04-30--uo.jpg",
- "trainings": 2
- },
- {
- "id": 6449,
- "name": "№6449 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.069769978523254",
- "latitude": "55.359535933850076",
- "address": "Егорьевск Коломенское шоссе, 7",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-05-12-04-51-4vt.jpg",
- "trainings": 1
- },
- {
- "id": 6450,
- "name": "№6450 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.05471980571747",
- "latitude": "43.63901990738902",
- "address": "Город Майский, Улица Зеленая 1",
- "city_id": 593,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-05-19-04-36-jkg.jpg",
- "trainings": 1
- },
- {
- "id": 6451,
- "name": "№6451 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.60914890000004",
- "latitude": "55.7640531",
- "address": "Тверская, 12, стр 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-06-00-04-58-ook.jpg",
- "trainings": 2
- },
- {
- "id": 6452,
- "name": "№6452 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.12988638877869",
- "latitude": "55.59238213655771",
- "address": "Жуковский ул.чкалова 16",
- "city_id": 41,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-06-09-04-26-ms8.jpeg",
- "trainings": 1
- },
- {
- "id": 6453,
- "name": "№6453 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.54571199417114",
- "latitude": "55.61006280091969",
- "address": "Литовский бульвар 13/12",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-06-10-04-16-il_.jpg",
- "trainings": 1
- },
- {
- "id": 6454,
- "name": "№6454 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.591933400000016",
- "latitude": "55.63805379999999",
- "address": "Северное чертаново 5А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-06-10-04-07-yo1.jpg",
- "trainings": 3
- },
- {
- "id": 6455,
- "name": "№6455 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.300787172228866",
- "latitude": "49.98361192695399",
- "address": "Таманський провулок, Харків, Харківська область",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-06-17-04-11-8sg.jpg",
- "trainings": 1
- },
- {
- "id": 6458,
- "name": "№6458 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.32662923809812",
- "latitude": "55.8321492998968",
- "address": "Лесная 3А",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-06-20-04-25-98g.jpg",
- "trainings": 0
- },
- {
- "id": 6460,
- "name": "№6460 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.00164091607735",
- "latitude": "55.81853277400204",
- "address": "ул. Набережная, 10А",
- "city_id": 95,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-06-21-04-53-_tr.jpg",
- "trainings": 1
- },
- {
- "id": 6461,
- "name": "№6461 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.49888699999997",
- "latitude": "52.047705",
- "address": "Красноармейская,66",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-07-03-04-05-zpz.jpg",
- "trainings": 0
- },
- {
- "id": 6462,
- "name": "№6462 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.50073299999997",
- "latitude": "52.047385",
- "address": "Богомягкова,73",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-07-03-04-36-jp4.jpg",
- "trainings": 0
- },
- {
- "id": 6463,
- "name": "№6463 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "113.5007167",
- "latitude": "52.0468811",
- "address": "Богомягкова,73 Б",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-07-03-04-27--7t.jpg",
- "trainings": 0
- },
- {
- "id": 6464,
- "name": "№6464 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "104.31666612625122",
- "latitude": "52.271308793017155",
- "address": "Карла либкенхта 195",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-08-09-04-08-ymo.jpg",
- "trainings": 1
- },
- {
- "id": 6465,
- "name": "№6465 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.75599631268051",
- "latitude": "55.91207157666615",
- "address": "московская обл, ул. станционная, д3 к. 2",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-08-16-04-59-tmd.jpg",
- "trainings": 0
- },
- {
- "id": 6466,
- "name": "№6466 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.535679181259184",
- "latitude": "55.58336515239167",
- "address": "Стадион шатура",
- "city_id": 668,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-08-19-04-54-wmr.jpg",
- "trainings": 2
- },
- {
- "id": 6467,
- "name": "№6467 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.29953969311521",
- "latitude": "55.83716156071159",
- "address": "улица Ленина, 47к1",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-29-19-09-48-fpn.jpg",
- "trainings": 3
- },
- {
- "id": 6472,
- "name": "№6472 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.833195358514786",
- "latitude": "50.90698906783435",
- "address": "чешка",
- "city_id": 540,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-09-20-04-07-kko.jpg",
- "trainings": 1
- },
- {
- "id": 6474,
- "name": "№6474 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.02403697371483",
- "latitude": "55.36569574009176",
- "address": "Поселковая улица, 77",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-10-18-04-29-2l6.jpg",
- "trainings": 1
- },
- {
- "id": 6475,
- "name": "№6475 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.296130626983654",
- "latitude": "55.83347224157593",
- "address": "улица Братьев Горожанкиных, 24",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-11-07-04-11-ot-.jpg",
- "trainings": 1
- },
- {
- "id": 6476,
- "name": "№6476 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "11.685590744018555",
- "latitude": "48.12843183289767",
- "address": "Flughafen-riem-str.52",
- "city_id": 7469,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-11-13-04-42-acx.jpg",
- "trainings": 1
- },
- {
- "id": 6477,
- "name": "№6477 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.516869068145752",
- "latitude": "48.18787750849775",
- "address": "Wittenberger stressig 32",
- "city_id": 7469,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-11-14-04-08-nmq.jpg",
- "trainings": 0
- },
- {
- "id": 6478,
- "name": "№6478 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.38059139251709",
- "latitude": "48.27845204953743",
- "address": "Людвиг-Тома-Штрассе 34",
- "city_id": 8043,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-11-14-04-26-as7.jpg",
- "trainings": 0
- },
- {
- "id": 6480,
- "name": "№6480 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.363501582031176",
- "latitude": "56.118606962129014",
- "address": "Проспект Ленина, 35",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-11-18-04-11-j02.jpg",
- "trainings": 0
- },
- {
- "id": 6481,
- "name": "№6481 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "40.39593884788519",
- "latitude": "56.12722784574043",
- "address": "ул.Дворянская, 1",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-11-18-04-57-x2d.jpg",
- "trainings": 0
- },
- {
- "id": 6482,
- "name": "№6482 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "39.19368267059326",
- "latitude": "51.758065435566195",
- "address": "9 километр. СК \"Олимпик\"",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-11-18-04-22-h0z.jpg",
- "trainings": 4
- },
- {
- "id": 6484,
- "name": "№6484 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "86.31121896207333",
- "latitude": "54.41599427178085",
- "address": "Железнодорожная 15",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-25-14-11-43-3jf.jpg",
- "trainings": 0
- },
- {
- "id": 6485,
- "name": "№6485 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.38244859391784",
- "latitude": "56.14677353650984",
- "address": "ул 850-Летия, 7",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-13-14-04-21-lo8.jpg",
- "trainings": 0
- },
- {
- "id": 6487,
- "name": "№6487 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.38702699999999",
- "latitude": "56.14252097446217",
- "address": "ул.Горького, 77",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-13-14-04-58-85x.jpg",
- "trainings": 1
- },
- {
- "id": 6488,
- "name": "№6488 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.643691373016395",
- "latitude": "55.76510134564918",
- "address": "Огородная Слобода пер., д.12",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-13-22-04-12-znv.jpg",
- "trainings": 0
- },
- {
- "id": 6490,
- "name": "№6490 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "84.95649755001068",
- "latitude": "56.50182275279096",
- "address": "пер. Островского",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-15-16-04-47-vin.jpg",
- "trainings": 0
- },
- {
- "id": 6494,
- "name": "№6494 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "55.14081180052017",
- "latitude": "25.088718503735066",
- "address": "calisthenics park",
- "city_id": 7638,
- "country_id": 50,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-17-07-04-56-ryw.png",
- "trainings": 0
- },
- {
- "id": 6495,
- "name": "№6495 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.41177649259032",
- "latitude": "55.657739054894456",
- "address": "ул. 50 лет Октября, д.29",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-17-08-04-36-y9e.jpg",
- "trainings": 1
- },
- {
- "id": 6496,
- "name": "№6496 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.41239313491815",
- "latitude": "55.649184385314975",
- "address": "ул. 50 лет Октября, д.5, к.2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-17-08-04-35-kba.jpg",
- "trainings": 0
- },
- {
- "id": 6497,
- "name": "№6497 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "24.090828895568848",
- "latitude": "56.95089591621246",
- "address": "Kipsalas pludmale, Kurzemes, Riga, LV-1048",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-18-00-04-09-58g.jpg",
- "trainings": 1
- },
- {
- "id": 6498,
- "name": "№6498 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.391701044982938",
- "latitude": "60.016160785813454",
- "address": "Вавиловых ул.",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-18-10-04-24-lpv.jpg",
- "trainings": 2
- },
- {
- "id": 6499,
- "name": "№6499 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.73020999475102",
- "latitude": "54.609235817883494",
- "address": "ЦПКиО",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-18-11-04-08-ao7.jpg",
- "trainings": 5
- },
- {
- "id": 6500,
- "name": "№6500 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.34760272156518",
- "latitude": "56.11421878579324",
- "address": "ул.Завадского, 7",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-18-14-04-58-zqq.jpg",
- "trainings": 1
- },
- {
- "id": 6502,
- "name": "№6502 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "48.046613931655884",
- "latitude": "46.35912986932367",
- "address": "ул. Савушкина 56",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-18-19-04-07-wog.jpg",
- "trainings": 1
- },
- {
- "id": 6503,
- "name": "№6503 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "48.04662466049194",
- "latitude": "46.35904842135479",
- "address": "ул.Савушкина 56",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-18-20-04-39-7lf.jpg",
- "trainings": 1
- },
- {
- "id": 6505,
- "name": "№6505 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.92732572555542",
- "latitude": "43.11883319717796",
- "address": "Шилкинская 15",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-19-15-04-37-npc.jpg",
- "trainings": 1
- },
- {
- "id": 6506,
- "name": "№6506 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.90901708602905",
- "latitude": "54.238798135888274",
- "address": "старожилово",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-19-16-04-10-yp4.jpg",
- "trainings": 2
- },
- {
- "id": 6507,
- "name": "№6507 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.58696651439095",
- "latitude": "55.855664012282126",
- "address": "ул. Хачатурня, 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-20-15-04-15-r7k.jpg",
- "trainings": 1
- },
- {
- "id": 6513,
- "name": "№6513 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "100.5390402674675",
- "latitude": "54.59575642741836",
- "address": "ул. Станкевича",
- "city_id": 8014,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-21-14-04-43-ylk.jpg",
- "trainings": 1
- },
- {
- "id": 6514,
- "name": "№6514 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.30279354100037",
- "latitude": "55.83826014745828",
- "address": "Карбышева, 15",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-21-19-04-35-kku.jpg",
- "trainings": 0
- },
- {
- "id": 6515,
- "name": "№6515 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.3090861091232",
- "latitude": "55.82151619019677",
- "address": "Пушкинская улица, 21",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-21-19-04-35-yp-.jpg",
- "trainings": 0
- },
- {
- "id": 6517,
- "name": "№6517 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.768804167290796",
- "latitude": "55.42396258714763",
- "address": "ул. Талалихина, д. 9, на территории школы 7",
- "city_id": 36,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-22-13-04-10-n5s.jpg",
- "trainings": 2
- },
- {
- "id": 6518,
- "name": "№6518 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.618518170000016",
- "latitude": "55.86784046",
- "address": "Северный бульвар, 12, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-22-12-04-25-krh.png",
- "trainings": 2
- },
- {
- "id": 6526,
- "name": "№6526 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.581825256347656",
- "latitude": "55.72135788276203",
- "address": "Фрунзенская набережная, 50",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-22-19-04-23-ufz.jpg",
- "trainings": 0
- },
- {
- "id": 6527,
- "name": "№6527 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.58229732513428",
- "latitude": "55.71925497548072",
- "address": "Фрунзенская набережная, 48",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-22-19-04-42-ykd.jpg",
- "trainings": 0
- },
- {
- "id": 6528,
- "name": "№6528 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.5376614074097",
- "latitude": "55.543276342636126",
- "address": "ул. Адмирала Лазарева",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-23-12-04-25-zta.jpg",
- "trainings": 1
- },
- {
- "id": 6531,
- "name": "№6531 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.4204725780487",
- "latitude": "56.143382521646295",
- "address": "ул Полины Осипенко, 6",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-24-13-04-39-_nv.jpg",
- "trainings": 0
- },
- {
- "id": 6532,
- "name": "№6532 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.56603240966797",
- "latitude": "55.86634776122047",
- "address": "Дублинская улица, 14с1,127540",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-05-10-10-47-loo.jpeg",
- "trainings": 1
- },
- {
- "id": 6533,
- "name": "№6533 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.062731862068176",
- "latitude": "55.36703642473084",
- "address": "ул. Антипова, дом 45, территория школы № 3",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-24-20-04-42-ie5.jpg",
- "trainings": 2
- },
- {
- "id": 6535,
- "name": "№6535 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.4109624735413",
- "latitude": "56.137654880278866",
- "address": "ул. Менделеева, 1",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-25-12-04-27-q14.jpg",
- "trainings": 0
- },
- {
- "id": 6536,
- "name": "№6536 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "56.2032193",
- "latitude": "57.98276180000001",
- "address": "Сквер Миндовского",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-25-15-04-08-tfa.jpg",
- "trainings": 1
- },
- {
- "id": 6538,
- "name": "№6538 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.9280257821083",
- "latitude": "43.121585865790465",
- "address": "пр-т Красного Знамени 114",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-25-17-04-29-9ry.jpg",
- "trainings": 2
- },
- {
- "id": 6539,
- "name": "№6539 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.37722776900637",
- "latitude": "56.14521720535059",
- "address": "ул Горького, 87",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-26-13-04-16-j1y.jpg",
- "trainings": 0
- },
- {
- "id": 6540,
- "name": "№6540 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.37935277246095",
- "latitude": "56.14285799321353",
- "address": "ул. Студенческая, 10 Б",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-26-13-04-20-k7m.jpg",
- "trainings": 0
- },
- {
- "id": 6541,
- "name": "№6541 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.37446357724616",
- "latitude": "56.14054500000002",
- "address": "ул. Проспект Стороителей, 7 г",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-26-13-04-25-td6.jpg",
- "trainings": 0
- },
- {
- "id": 6542,
- "name": "№6542 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.37321518432009",
- "latitude": "56.14078207025072",
- "address": "ул. Проспект Стороителей, 7 в",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-26-13-04-21-8ha.jpg",
- "trainings": 0
- },
- {
- "id": 6543,
- "name": "№6543 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.37211649073788",
- "latitude": "56.141073336546",
- "address": "ул. Проспект Стороителей, 7 б",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-26-13-04-03-tbp.jpg",
- "trainings": 0
- },
- {
- "id": 6545,
- "name": "№6545 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.38944912631996",
- "latitude": "56.144928380103245",
- "address": "ул. 1-ый коллективный проезд, 6",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-27-17-04-42-dzz.jpg",
- "trainings": 0
- },
- {
- "id": 6547,
- "name": "№6547 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.51318949999995",
- "latitude": "55.3692028",
- "address": "Стадион Труд",
- "city_id": 57,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-28-18-04-05-zlj.jpg",
- "trainings": 1
- },
- {
- "id": 6548,
- "name": "№6548 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.778737127799104",
- "latitude": "48.780128477895815",
- "address": "бульвар Профсоюзов, 13А",
- "city_id": 7980,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-29-01-04-38-h3e.jpg",
- "trainings": 5
- },
- {
- "id": 6549,
- "name": "№6549 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.383259057998657",
- "latitude": "59.94111072868179",
- "address": "Ул. Кирочная, д. 53а",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-29-06-04-37-mec.jpg",
- "trainings": 4
- },
- {
- "id": 6556,
- "name": "№6556 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.46998405456543",
- "latitude": "48.233935195282996",
- "address": "Hochstr 62",
- "city_id": 8045,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-29-23-04-27-9fa.jpg",
- "trainings": 1
- },
- {
- "id": 6557,
- "name": "№6557 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "49.10884981152776",
- "latitude": "55.828714482015165",
- "address": "пр.Ямашева, парк Победы",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-05-04-18-kqa.jpg",
- "trainings": 1
- },
- {
- "id": 6558,
- "name": "№6558 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.12040176390292",
- "latitude": "55.7942395951668",
- "address": "ул.Дзержинского, парк Черное озеро",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-05-04-40-69o.jpg",
- "trainings": 0
- },
- {
- "id": 6559,
- "name": "№6559 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "24.208545684814453",
- "latitude": "56.951551228128636",
- "address": "Лиелвардес",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-09-04-19-nr8.jpg",
- "trainings": 0
- },
- {
- "id": 6560,
- "name": "№6560 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.342326865304585",
- "latitude": "56.11289834080554",
- "address": "ул Верхняя Дуброва, 4",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-10-04-36-fag.jpg",
- "trainings": 0
- },
- {
- "id": 6561,
- "name": "№6561 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.3393764353882",
- "latitude": "56.112407817698085",
- "address": "ул. Благонравова, 2А",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-10-04-40-nml.jpg",
- "trainings": 0
- },
- {
- "id": 6562,
- "name": "№6562 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "40.34064243804323",
- "latitude": "56.10735267269397",
- "address": "ул. Верхняя Дуброва, 32Б",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-10-04-43-dtx.jpg",
- "trainings": 0
- },
- {
- "id": 6563,
- "name": "№6563 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.34367296826167",
- "latitude": "56.10545212996457",
- "address": "ул Верхняя Дуброва, 4",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-10-04-34-gu4.jpg",
- "trainings": 0
- },
- {
- "id": 6564,
- "name": "№6564 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.35081937434393",
- "latitude": "56.106992407867374",
- "address": "ул. Нижняя Дуброва, 28А",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-10-04-32-owt.jpg",
- "trainings": 0
- },
- {
- "id": 6565,
- "name": "№6565 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.351767660049404",
- "latitude": "56.10699051433925",
- "address": "ул. Нижняя Дуброва, 26",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-10-04-40-r51.jpg",
- "trainings": 0
- },
- {
- "id": 6566,
- "name": "№6566 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.36914779629524",
- "latitude": "56.14589642080474",
- "address": "ул. Проспект Стороителей, 8",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-10-04-29-_ov.jpg",
- "trainings": 0
- },
- {
- "id": 6567,
- "name": "№6567 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.36927725396731",
- "latitude": "56.149902167431456",
- "address": "ул Горького, 107А",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-10-04-15-eak.jpg",
- "trainings": 0
- },
- {
- "id": 6568,
- "name": "№6568 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.366256788885494",
- "latitude": "56.151182836547335",
- "address": "ул. Горького, 125",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-10-04-14-ngd.jpg",
- "trainings": 0
- },
- {
- "id": 6569,
- "name": "№6569 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.3665563214264",
- "latitude": "56.14762829695577",
- "address": "ул. Белоконской, 15",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-11-04-04-hkz.jpg",
- "trainings": 0
- },
- {
- "id": 6570,
- "name": "№6570 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.41493999958038",
- "latitude": "55.75320790807686",
- "address": "Набережные Челны, Дворец спорта, пр. Сююмбике, 44",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-13-04-06-t0v.jpg",
- "trainings": 0
- },
- {
- "id": 6571,
- "name": "№6571 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "52.41464093327522",
- "latitude": "55.75360035954497",
- "address": "Набережные Челны, Дворец спорта, пр. Сююмбике, 44",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-13-04-47--b4.jpg",
- "trainings": 0
- },
- {
- "id": 6573,
- "name": "№6573 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.371728495275875",
- "latitude": "56.15011311793134",
- "address": "ул. Горького, 103",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/04/2017-04-30-20-04-47-6hz.jpg",
- "trainings": 1
- },
- {
- "id": 6575,
- "name": "№6575 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.5585732460022",
- "latitude": "56.32226044174951",
- "address": "Спартаковская ул., 10, Высоковск, Московская область , 141650",
- "city_id": 8031,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-01-15-05-39-m52.jpg",
- "trainings": 1
- },
- {
- "id": 6576,
- "name": "№6576 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "53.1443989276886",
- "latitude": "56.83001664044195",
- "address": "Клубная 39",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-01-17-05-45-tne.jpg",
- "trainings": 2
- },
- {
- "id": 6579,
- "name": "№6579 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.56017446517944",
- "latitude": "55.87364358356742",
- "address": "Дубнинская ул., 24к1, Москва, 127540",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-01-20-05-07-rg_.jpg",
- "trainings": 4
- },
- {
- "id": 6580,
- "name": "№6580 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.56375253200531",
- "latitude": "55.85552490673708",
- "address": "Дубниниская ул., 3, Москва, 127474",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-01-21-05-38-mpz.jpg",
- "trainings": 0
- },
- {
- "id": 6581,
- "name": "№6581 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.936527665741664",
- "latitude": "43.41261677913685",
- "address": "Парусная ул. 39",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-15-10-05-15-o-f.jpg",
- "trainings": 0
- },
- {
- "id": 6585,
- "name": "№6585 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "40.2504301071167",
- "latitude": "47.73277155392733",
- "address": "Шахты г., ул. Ворошилова, 9а",
- "city_id": 598,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-04-12-05-33-wry.jpg",
- "trainings": 0
- },
- {
- "id": 6586,
- "name": "№6586 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "132.92919954285276",
- "latitude": "48.78660752073358",
- "address": "пр-т 60 лет СССР, д. 14",
- "city_id": 633,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-04-16-05-03-jqe.jpg",
- "trainings": 2
- },
- {
- "id": 6587,
- "name": "№6587 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.38528952002525",
- "latitude": "55.7438950839383",
- "address": "проспект Хасана Туфана, 53",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-05-05-05-45-mqx.jpg",
- "trainings": 0
- },
- {
- "id": 6590,
- "name": "№6590 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.35571399685057",
- "latitude": "55.940338211235535",
- "address": "3-я Подрезковская ул, д. 14",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-22-13-07-37-7jt.jpg",
- "trainings": 0
- },
- {
- "id": 6591,
- "name": "№6591 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.351112365722656",
- "latitude": "55.94315497328514",
- "address": "Синявинская ул, д. 11, к 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-06-14-05-47-iin.jpg",
- "trainings": 1
- },
- {
- "id": 6593,
- "name": "№6593 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "45.97717399999999",
- "latitude": "51.564305",
- "address": "Лунная 2/6",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-07-09-05-49-h7s.jpg",
- "trainings": 0
- },
- {
- "id": 6594,
- "name": "№6594 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.468221666666636",
- "latitude": "55.81378666666667",
- "address": "Волоколамское шоссе 45",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-05-23-10-13-upv.jpg",
- "trainings": 1
- },
- {
- "id": 6595,
- "name": "№6595 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.39419651031494",
- "latitude": "56.14817923549936",
- "address": "ул.Горького, 60",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-07-21-05-54-hti.jpg",
- "trainings": 0
- },
- {
- "id": 6599,
- "name": "№6599 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.91814184188843",
- "latitude": "43.09554998806682",
- "address": "Терешковой 25",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-09-15-05-15-4_j.jpg",
- "trainings": 1
- },
- {
- "id": 6600,
- "name": "№6600 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "44.674776792526245",
- "latitude": "43.03357628886099",
- "address": "улица Тхапсаева",
- "city_id": 621,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-09-20-05-57-yg4.jpg",
- "trainings": 0
- },
- {
- "id": 6608,
- "name": "№6608 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "75.41629528979684",
- "latitude": "63.200126746007506",
- "address": "Шевченко 125",
- "city_id": 719,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-10-08-05-49-nhq.jpg",
- "trainings": 1
- },
- {
- "id": 6610,
- "name": "№6610 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.0106725692749",
- "latitude": "56.330600542603655",
- "address": "Георгиевский съезд ",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-10-18-05-00-9o5.jpg",
- "trainings": 0
- },
- {
- "id": 6611,
- "name": "№6611 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "41.40117754498294",
- "latitude": "52.7075540536656",
- "address": "стадион 35ой школы",
- "city_id": 631,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-10-19-05-45-mpp.jpg",
- "trainings": 1
- },
- {
- "id": 6613,
- "name": "№6613 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.02082234621048",
- "latitude": "55.38277978196907",
- "address": "ул. Профсоюзная (Бардыгинская), дом 34, территория ЕТИ ФГБОУ ВО МГТУ «Станкин»",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-11-12-05-55-yze.jpg",
- "trainings": 1
- },
- {
- "id": 6614,
- "name": "№6614 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.96133315078737",
- "latitude": "55.81376812612037",
- "address": "ул.Бирюкова, 14А",
- "city_id": 95,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-11-16-05-49-xet.jpg",
- "trainings": 0
- },
- {
- "id": 6615,
- "name": "№6615 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.99310708650819",
- "latitude": "55.82061370834103",
- "address": "пр-д Беляцкого,19",
- "city_id": 95,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-11-16-05-27-sa9.jpg",
- "trainings": 1
- },
- {
- "id": 6616,
- "name": "№6616 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.50992399999996",
- "latitude": "52.04074199999999",
- "address": "Ленинградская,45",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-12-04-05-35-otm.jpg",
- "trainings": 0
- },
- {
- "id": 6617,
- "name": "№6617 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.50914999999998",
- "latitude": "52.041376",
- "address": "Подгорбунского,41в",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-12-04-05-32-vy0.jpg",
- "trainings": 0
- },
- {
- "id": 6618,
- "name": "№6618 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.50629100000003",
- "latitude": "52.041089",
- "address": "Бутина,75",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-12-04-05-34-rjz.jpg",
- "trainings": 0
- },
- {
- "id": 6619,
- "name": "№6619 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.50502010000002",
- "latitude": "52.0410271",
- "address": "Балябина,30",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-12-04-05-39-qo6.jpg",
- "trainings": 0
- },
- {
- "id": 6620,
- "name": "№6620 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.076528549194336",
- "latitude": "55.84156665127564",
- "address": "Парк Урицкого",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-01-07-06-04-j5i.jpg",
- "trainings": 0
- },
- {
- "id": 6624,
- "name": "№6624 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "55.823538593917874",
- "latitude": "54.71090017791123",
- "address": "Мусы Джалиля 68/1",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-13-18-05-46-i_l.jpg",
- "trainings": 2
- },
- {
- "id": 6625,
- "name": "№6625 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.42831426858902",
- "latitude": "45.47140611786282",
- "address": "г. Кореновск, ул. Космонавтов, СОШ № 19",
- "city_id": 7933,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-13-20-05-50-joq.jpg",
- "trainings": 2
- },
- {
- "id": 6626,
- "name": "№6626 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.453513333333376",
- "latitude": "55.80388333333333",
- "address": "улица Академика Бочвара",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-20-05-05-22-s1l.jpg",
- "trainings": 0
- },
- {
- "id": 6627,
- "name": "№6627 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.554956800000014",
- "latitude": "55.5425836",
- "address": "Веневская ул., 29",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-14-20-05-18-nc6.jpg",
- "trainings": 6
- },
- {
- "id": 6628,
- "name": "№6628 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.511189222335815",
- "latitude": "52.61744548790353",
- "address": "ул.Пожарная 1",
- "city_id": 7809,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-15-22-05-29-nfb.jpg",
- "trainings": 2
- },
- {
- "id": 6629,
- "name": "№6629 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "113.48168849945068",
- "latitude": "52.07061365810157",
- "address": "Красной звезды 50",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 9,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-16-17-05-31-mbe.jpg",
- "trainings": 1
- },
- {
- "id": 6631,
- "name": "№6631 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.512787",
- "latitude": "52.0301126",
- "address": "Ангарская,33",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-17-07-05-55-vdj.jpg",
- "trainings": 0
- },
- {
- "id": 6632,
- "name": "№6632 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.46332475543022",
- "latitude": "52.04378906641134",
- "address": "Недорезова,42",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-17-07-05-11-f7m.jpg",
- "trainings": 0
- },
- {
- "id": 6633,
- "name": "№6633 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.4626859",
- "latitude": "52.04355289999999",
- "address": "Недорезова,30",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-17-07-05-48-cam.jpg",
- "trainings": 0
- },
- {
- "id": 6634,
- "name": "№6634 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.38377714157104",
- "latitude": "52.08111481148359",
- "address": " мкр.3,д. 1",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-17-07-05-01-kns.jpg",
- "trainings": 0
- },
- {
- "id": 6635,
- "name": "№6635 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.38377714157104",
- "latitude": "52.080455471083724",
- "address": "мкр.3, д.3",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-17-07-05-22-vjh.jpg",
- "trainings": 0
- },
- {
- "id": 6636,
- "name": "№6636 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.38382005691528",
- "latitude": "52.08021810615543",
- "address": " мкр.3, д.5",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-17-07-05-41-jqs.jpg",
- "trainings": 0
- },
- {
- "id": 6637,
- "name": "№6637 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.38390588760376",
- "latitude": "52.080191732196596",
- "address": "мкр.3, д.7",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-17-07-05-29-xue.jpg",
- "trainings": 0
- },
- {
- "id": 6638,
- "name": "№6638 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.38390588760376",
- "latitude": "52.079796120944025",
- "address": " мкр.3, д.10",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-17-07-05-24-qxy.jpg",
- "trainings": 1
- },
- {
- "id": 6639,
- "name": "№6639 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.38125160000004",
- "latitude": "52.0790112",
- "address": "ул.Труда,2",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-17-08-05-50-a4h.jpg",
- "trainings": 0
- },
- {
- "id": 6640,
- "name": "№6640 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.179056882858276",
- "latitude": "59.51132174294202",
- "address": "Сквер МУК ДК г.Пикалево",
- "city_id": 7382,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-17-14-05-39-acz.jpg",
- "trainings": 1
- },
- {
- "id": 6641,
- "name": "№6641 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.55565987625414",
- "latitude": "55.90383239883017",
- "address": "Зональная улица, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-19-15-05-48-dz-.jpg",
- "trainings": 1
- },
- {
- "id": 6645,
- "name": "№6645 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.61167824268341",
- "latitude": "55.778377181217536",
- "address": "4-й самотечный пер 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-19-14-05-54-yr8.jpg",
- "trainings": 2
- },
- {
- "id": 6646,
- "name": "№6646 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.62836332142638",
- "latitude": "55.679135237423104",
- "address": "Варшавское ш., д 47 к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-19-14-05-56-4wu.jpg",
- "trainings": 0
- },
- {
- "id": 6652,
- "name": "№6652 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.537150382995605",
- "latitude": "55.60414790860894",
- "address": "Новоясеневский проспект 32 к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-21-02-05-41--yt.jpg",
- "trainings": 1
- },
- {
- "id": 6653,
- "name": "№6653 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.755626916885376",
- "latitude": "47.242538810109515",
- "address": "Шолохова 29в",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-21-16-05-27-oid.jpg",
- "trainings": 0
- },
- {
- "id": 6654,
- "name": "№6654 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.76630210876465",
- "latitude": "47.25138784882583",
- "address": "1-й конной армии 6б",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-21-16-05-43-wkh.jpg",
- "trainings": 0
- },
- {
- "id": 6656,
- "name": "№6656 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.365229119049104",
- "latitude": "56.14323520492803",
- "address": "ул Проспект Строителей, 16Б",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-21-21-05-08-na2.jpg",
- "trainings": 0
- },
- {
- "id": 6657,
- "name": "№6657 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.371517898147545",
- "latitude": "56.13556711627792",
- "address": "ул. Перекопский городок, 2",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-21-21-05-52-bbe.jpg",
- "trainings": 1
- },
- {
- "id": 6658,
- "name": "№6658 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.197982788085938",
- "latitude": "59.983011903290134",
- "address": "Приморский проспект 74а",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-21-22-05-58-dha.jpg",
- "trainings": 2
- },
- {
- "id": 6659,
- "name": "№6659 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.27267381083675",
- "latitude": "59.96255471858792",
- "address": "Новоладожская ул., 8, лит. А",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-21-22-05-18-8kw.jpg",
- "trainings": 0
- },
- {
- "id": 6660,
- "name": "№6660 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.37029554100036",
- "latitude": "56.15359841521507",
- "address": "ул.Тракторная, 1",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-22-19-05-08-k-d.jpg",
- "trainings": 0
- },
- {
- "id": 6661,
- "name": "№6661 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.370391526458775",
- "latitude": "56.15192024120849",
- "address": "ул Горького, 102",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-22-19-05-56-jjl.jpg",
- "trainings": 0
- },
- {
- "id": 6662,
- "name": "№6662 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.37028576455691",
- "latitude": "56.15048185423011",
- "address": "ул Горького, 107А",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-22-19-05-30-fch.jpg",
- "trainings": 0
- },
- {
- "id": 6663,
- "name": "№6663 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.291848083328205",
- "latitude": "59.962926637102385",
- "address": "Чкаловский пр., 22, лит. А",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-24-11-05-17-t0v.jpg",
- "trainings": 1
- },
- {
- "id": 6664,
- "name": "№6664 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.29386817063903",
- "latitude": "59.96396665405463",
- "address": "Пудожская ул., 4Б",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-24-11-05-24-rvj.jpg",
- "trainings": 0
- },
- {
- "id": 6665,
- "name": "№6665 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.297645575393744",
- "latitude": "59.9625008050734",
- "address": "Гатчинская улица, 22",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-24-11-05-58-akg.jpg",
- "trainings": 4
- },
- {
- "id": 6666,
- "name": "№6666 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.29169416798402",
- "latitude": "59.957446286870244",
- "address": "Малая Разночинная улица, 2/4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-24-11-05-54-ct-.jpg",
- "trainings": 0
- },
- {
- "id": 6667,
- "name": "№6667 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "52.386155873537064",
- "latitude": "55.724509010286354",
- "address": "остановка Медгородок",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-25-13-05-45-azx.jpg",
- "trainings": 0
- },
- {
- "id": 6668,
- "name": "№6668 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "28.818737268447876",
- "latitude": "46.06214687728382",
- "address": "Ул. Сыртмача",
- "city_id": 608,
- "country_id": 15,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-25-13-05-56-4vb.jpg",
- "trainings": 1
- },
- {
- "id": 6670,
- "name": "№6670 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.383750901330586",
- "latitude": "56.143005679037934",
- "address": "ул. Студенческая, 4А",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-26-16-05-13-5ud.jpg",
- "trainings": 0
- },
- {
- "id": 6671,
- "name": "№6671 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.38500702579495",
- "latitude": "56.14114259499164",
- "address": "ул.Токарева 10",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-26-16-05-20-xfz.jpg",
- "trainings": 0
- },
- {
- "id": 6673,
- "name": "№6673 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "39.02793244550776",
- "latitude": "55.82746032667945",
- "address": "ул. Кирова, 56",
- "city_id": 95,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-26-21-05-58-rqu.jpg",
- "trainings": 1
- },
- {
- "id": 6678,
- "name": "№6678 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "23.2630794534424",
- "latitude": "42.71155763704161",
- "address": "ул.\"Полковник Стоян Топузов\", 1324 ",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-28-11-05-20-w1i.jpg",
- "trainings": 0
- },
- {
- "id": 6679,
- "name": "№6679 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "93.02265644073486",
- "latitude": "55.98553937825347",
- "address": "Даурская 4",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-28-12-05-36-qvs.jpg",
- "trainings": 0
- },
- {
- "id": 6680,
- "name": "№6680 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.31652095136815",
- "latitude": "55.89070234760225",
- "address": "с. Покровское, ДОХБ, 19",
- "city_id": 780,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-28-13-05-29-j40.jpg",
- "trainings": 2
- },
- {
- "id": 6683,
- "name": "№6683 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.50996971130371",
- "latitude": "52.04850865731448",
- "address": "журавлёва 89",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-29-05-05-24-sg8.jpg",
- "trainings": 1
- },
- {
- "id": 6685,
- "name": "№6685 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "107.72974799999997",
- "latitude": "51.868027",
- "address": "краснодонская 2а",
- "city_id": 615,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-29-16-05-18-32y.jpg",
- "trainings": 2
- },
- {
- "id": 6686,
- "name": "№6686 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "107.62941523054963",
- "latitude": "51.81573040116671",
- "address": "спорт комплекс юность ",
- "city_id": 615,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/05/2017-05-29-18-05-33-oxe.jpg",
- "trainings": 4
- },
- {
- "id": 6694,
- "name": "№6694 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.95599341392517",
- "latitude": "54.96669539845554",
- "address": "Оловозаводская,6/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-03-21-06-11-gaj.jpg",
- "trainings": 0
- },
- {
- "id": 6695,
- "name": "№6695 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "133.2695822417736",
- "latitude": "44.1620058320004",
- "address": "Ломоносова 42а",
- "city_id": 8107,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-05-07-06-55-emv.jpg",
- "trainings": 1
- },
- {
- "id": 6696,
- "name": "№6696 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "23.274594987293995",
- "latitude": "42.71093828617123",
- "address": "Западен Парк София",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-05-08-06-37-vyc.jpg",
- "trainings": 0
- },
- {
- "id": 6702,
- "name": "№6702 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.418081760406494",
- "latitude": "55.89240055499103",
- "address": "Парк Дубки",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-05-17-06-59-a0w.jpg",
- "trainings": 4
- },
- {
- "id": 6703,
- "name": "№6703 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.40048333333334",
- "latitude": "59.98098",
- "address": "Кондратьевский проспект",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-20-19-06-24-ttf.jpg",
- "trainings": 1
- },
- {
- "id": 6706,
- "name": "№6706 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.52481996382369",
- "latitude": "55.6349523769459",
- "address": "Островитянова, 31",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-07-12-06-54-s75.jpg",
- "trainings": 1
- },
- {
- "id": 6707,
- "name": "№6707 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.30627965927124",
- "latitude": "59.98910006531466",
- "address": "Ланское шоссе",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-08-23-06-55-ixt.jpg",
- "trainings": 1
- },
- {
- "id": 6708,
- "name": "№6708 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.29870241880417",
- "latitude": "59.98957564009056",
- "address": "улица Школьная",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-08-23-06-53-zy3.jpg",
- "trainings": 1
- },
- {
- "id": 6709,
- "name": "№6709 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.311196818947792",
- "latitude": "59.98454469877668",
- "address": "Черной Речки набережная",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-08-23-06-12-mgt.jpg",
- "trainings": 1
- },
- {
- "id": 6710,
- "name": "№6710 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.333831310272217",
- "latitude": "59.85048419829145",
- "address": "московский район",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-07-21-06-39-lcy.jpg",
- "trainings": 0
- },
- {
- "id": 6711,
- "name": "№6711 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.113440454006195",
- "latitude": "55.050713522105994",
- "address": "Романенко, 89",
- "city_id": 716,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-08-11-06-27-_dk.jpg",
- "trainings": 0
- },
- {
- "id": 6712,
- "name": "№6712 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.48436450958252",
- "latitude": "55.845012261607856",
- "address": "Пулковская 7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-08-19-06-49-bbo.jpg",
- "trainings": 1
- },
- {
- "id": 6713,
- "name": "№6713 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "46.0060416162014",
- "latitude": "51.5316082516897",
- "address": "улица Астраханская, 98",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-10-07-06-36-m_1.jpg",
- "trainings": 4
- },
- {
- "id": 6714,
- "name": "№6714 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "46.0397931933403",
- "latitude": "51.52361328890722",
- "address": "Бабушкин взвоз, 3",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-10-08-06-35-zhb.jpg",
- "trainings": 0
- },
- {
- "id": 6715,
- "name": "№6715 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "46.07392229139805",
- "latitude": "51.5153116767891",
- "address": "Городской пляж",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-10-08-06-11-ayz.jpg",
- "trainings": 1
- },
- {
- "id": 6717,
- "name": "№6717 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "53.227611780166626",
- "latitude": "56.84946871968722",
- "address": "удмуртская, 222",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-10-20-06-24-nix.jpg",
- "trainings": 4
- },
- {
- "id": 6718,
- "name": "№6718 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "23.24702400188289",
- "latitude": "42.71345094973428",
- "address": "бул Райко Даскалов",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-11-00-06-01-xwk.jpg",
- "trainings": 0
- },
- {
- "id": 6719,
- "name": "№6719 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "23.24869328227851",
- "latitude": "42.71106169786745",
- "address": "ул Александар Грубчев",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-11-00-06-38-ei2.jpg",
- "trainings": 0
- },
- {
- "id": 6720,
- "name": "№6720 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "63.30762952566147",
- "latitude": "61.32528837947376",
- "address": "ул. Мира, 85",
- "city_id": 8002,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-11-07-06-52-t8f.jpg",
- "trainings": 0
- },
- {
- "id": 6722,
- "name": "№6722 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.34109169244766",
- "latitude": "49.96090779649834",
- "address": "Московский проспект, 214/2",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-12-09-06-28-_dy.jpg",
- "trainings": 1
- },
- {
- "id": 6723,
- "name": "№6723 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.33301281929016",
- "latitude": "55.950058868156574",
- "address": "микрорайон Подрезково, ул. Игоря Жаринова",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-12-14-06-32-zye.jpg",
- "trainings": 1
- },
- {
- "id": 6724,
- "name": "№6724 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "56.27407579999999",
- "latitude": "57.91933249999999",
- "address": "Пермский край, село Фролы, ул. Садовая 7",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-12-21-06-29-9jw.jpg",
- "trainings": 1
- },
- {
- "id": 6725,
- "name": "№6725 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.651299834251404",
- "latitude": "55.73480051892098",
- "address": "краснохолмская набережная 11 стр 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-13-16-06-24-euf.jpg",
- "trainings": 0
- },
- {
- "id": 6726,
- "name": "№6726 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.6263568833283",
- "latitude": "55.72187487603144",
- "address": "большая серпуховская 46",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-13-17-06-09-jyb.jpg",
- "trainings": 1
- },
- {
- "id": 6727,
- "name": "№6727 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "63.36291253566742",
- "latitude": "61.30429260628975",
- "address": "Ул.Чкалова",
- "city_id": 8002,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-13-18-06-21-tgr.jpg",
- "trainings": 0
- },
- {
- "id": 6728,
- "name": "№6728 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "63.328218162059784",
- "latitude": "61.31160950682768",
- "address": "Ул.Мира",
- "city_id": 8002,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-13-18-06-18-e6c.jpg",
- "trainings": 0
- },
- {
- "id": 6729,
- "name": "№6729 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "42.903977036476135",
- "latitude": "44.05358287336049",
- "address": "ул.Октябрьская",
- "city_id": 8055,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-13-19-06-32-shr.jpg",
- "trainings": 1
- },
- {
- "id": 6730,
- "name": "№6730 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "40.29834508895874",
- "latitude": "43.67322628959448",
- "address": "Роза Хутор улица Панорамная набережная 3/1",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-13-20-06-49-2fx.jpg",
- "trainings": 3
- },
- {
- "id": 6731,
- "name": "№6731 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.65466634184122",
- "latitude": "55.643905136113304",
- "address": "Москворечье улица, 4 корпус 3, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-29-20-08-29-q24.jpg",
- "trainings": 0
- },
- {
- "id": 6732,
- "name": "№6732 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "71.3671875",
- "latitude": "66.65297740055279",
- "address": "Оболочки пр., 16",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-13-22-06-55-xgo.jpg",
- "trainings": 0
- },
- {
- "id": 6733,
- "name": "№6733 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.32007191296691",
- "latitude": "55.834975476736126",
- "address": "Центральный проезд, 2",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-14-07-06-58-u9c.jpg",
- "trainings": 0
- },
- {
- "id": 6735,
- "name": "№6735 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.53062317196657",
- "latitude": "55.927748562061396",
- "address": "Новодачная 24с1",
- "city_id": 35,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-14-12-06-40-tyn.jpg",
- "trainings": 1
- },
- {
- "id": 6739,
- "name": "№6739 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.120177030563354",
- "latitude": "53.15463294202851",
- "address": "Ул. Советская",
- "city_id": 13,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-15-23-06-55-84u.jpg",
- "trainings": 0
- },
- {
- "id": 6742,
- "name": "№6742 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.59840345363045",
- "latitude": "55.82272484777677",
- "address": "улица Академика Королева, 24",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-16-14-06-52-voe.jpg",
- "trainings": 4
- },
- {
- "id": 6743,
- "name": "№6743 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.422247648239136",
- "latitude": "60.05211714198335",
- "address": "улица Шувалова, 3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-16-14-06-36-e-f.jpg",
- "trainings": 4
- },
- {
- "id": 6745,
- "name": "№6745 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.86157941818237",
- "latitude": "43.098460383901916",
- "address": "Верхнепортовая 76",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-16-17-06-42-vw0.jpg",
- "trainings": 1
- },
- {
- "id": 6749,
- "name": "№6749 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.85527086257935",
- "latitude": "43.08689632532495",
- "address": "ул.Леонова 66",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-17-12-06-37-mkb.jpg",
- "trainings": 1
- },
- {
- "id": 6752,
- "name": "№6752 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.268559083342552",
- "latitude": "59.94427920142986",
- "address": "12-я Линия Васильевского острова, д. 43",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-17-20-06-16-vzm.jpg",
- "trainings": 4
- },
- {
- "id": 6753,
- "name": "№6753 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.57109600000001",
- "latitude": "55.784167",
- "address": "Ленинградский проспект 28",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-17-22-06-21-ctr.jpg",
- "trainings": 2
- },
- {
- "id": 6756,
- "name": "№6756 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.27377869999998",
- "latitude": "57.92232079999999",
- "address": "село Фролы, весенняя 26",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-18-13-06-59-2ba.jpg",
- "trainings": 1
- },
- {
- "id": 6759,
- "name": "№6759 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.57903063297272",
- "latitude": "44.730306227187256",
- "address": "Нахимовский район, Качинский муниципальный округ, село Орловка, Качинское шоссе 3",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-19-08-06-02-amu.jpg",
- "trainings": 1
- },
- {
- "id": 6760,
- "name": "№6760 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "53.216478999999936",
- "latitude": "56.8641231",
- "address": "Шумайлова 112а",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-19-15-06-34-bqe.jpg",
- "trainings": 0
- },
- {
- "id": 6761,
- "name": "№6761 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "72.42505073547363",
- "latitude": "40.1843160336958",
- "address": "ул. Ленинградская,1а",
- "city_id": 55,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-19-15-06-11-csx.jpg",
- "trainings": 0
- },
- {
- "id": 6763,
- "name": "№6763 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.287387520074844",
- "latitude": "59.93820328613082",
- "address": "5-я Линия Васильевского острова, д. 4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-20-11-06-55-ep1.jpg",
- "trainings": 5
- },
- {
- "id": 6764,
- "name": "№6764 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "27.718350291252136",
- "latitude": "42.659588780019014",
- "address": "ul. \"Ivan Vazov\" 19",
- "city_id": 7873,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-20-19-06-10-t35.jpg",
- "trainings": 0
- },
- {
- "id": 6765,
- "name": "№6765 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.706273466392304",
- "latitude": "42.64846696030051",
- "address": "Spectrum Beach",
- "city_id": 7873,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-20-19-06-41-zx4.png",
- "trainings": 0
- },
- {
- "id": 6766,
- "name": "№6766 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.703289330092957",
- "latitude": "42.6500475055309",
- "address": "Спортна база академик",
- "city_id": 7873,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-20-19-06-25-olp.jpg",
- "trainings": 0
- },
- {
- "id": 6769,
- "name": "№6769 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.50046864947001",
- "latitude": "55.870699591247075",
- "address": "Зеленоградская улица, 18Е строение 1, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-25-18-06-09-co8.jpg",
- "trainings": 1
- },
- {
- "id": 6770,
- "name": "№6770 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.501086071133614",
- "latitude": "55.870422860677635",
- "address": "Зеленоградская улица, 18Е строение 1, Москва, Россия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-25-18-06-47-7x-.jpg",
- "trainings": 1
- },
- {
- "id": 6771,
- "name": "№6771 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.362550721276875",
- "latitude": "56.13933545999432",
- "address": "ул Проспект Строителей, 26",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-21-18-06-04-ydb.jpg",
- "trainings": 0
- },
- {
- "id": 6772,
- "name": "№6772 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.362336144555684",
- "latitude": "56.138504531143",
- "address": "ул Проспект Строителей, 28",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-21-18-06-25-un5.jpg",
- "trainings": 1
- },
- {
- "id": 6773,
- "name": "№6773 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.35668383201596",
- "latitude": "56.140207",
- "address": "ул. Лакина, 135",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-21-18-06-48-bq_.jpg",
- "trainings": 0
- },
- {
- "id": 6774,
- "name": "№6774 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "40.360587185180634",
- "latitude": "56.13990246633098",
- "address": "ул. Чернышевского, 76",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-21-18-06-13-w2j.jpg",
- "trainings": 0
- },
- {
- "id": 6775,
- "name": "№6775 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.38323591719973",
- "latitude": "56.141314074381164",
- "address": "ул. Студенческая, 10",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-21-18-06-35-anh.jpg",
- "trainings": 0
- },
- {
- "id": 6776,
- "name": "№6776 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "40.397237048257466",
- "latitude": "56.14044732230499",
- "address": "ул Горького, 40",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-21-18-06-40-ki1.jpg",
- "trainings": 0
- },
- {
- "id": 6777,
- "name": "№6777 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.54999303817749",
- "latitude": "44.72400625298397",
- "address": "Нахимовский район, Качинский муниципальный округ, село Орловка, пляж )",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-21-19-06-49-fj9.jpg",
- "trainings": 2
- },
- {
- "id": 6778,
- "name": "№6778 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "52.398511469364166",
- "latitude": "55.75551123988747",
- "address": " проспект Чулман, 88 Набережные Челны Респ. Татарстан, Россия 423823",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-22-02-06-02-qsm.jpg",
- "trainings": 0
- },
- {
- "id": 6779,
- "name": "№6779 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.572787761688232",
- "latitude": "48.11158615804456",
- "address": "Candid platz 9",
- "city_id": 7469,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-23-14-06-10-vdd.jpg",
- "trainings": 0
- },
- {
- "id": 6780,
- "name": "№6780 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "116.51794373989105",
- "latitude": "50.390521000248995",
- "address": "37 а железнодорожная",
- "city_id": 8233,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-23-15-06-25-uxp.jpg",
- "trainings": 1
- },
- {
- "id": 6781,
- "name": "№6781 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.44375100000002",
- "latitude": "55.884514",
- "address": "Спартаковская, д18",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-24-13-06-55-vc6.jpg",
- "trainings": 1
- },
- {
- "id": 6782,
- "name": "№6782 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.88150358054554",
- "latitude": "59.19740258244744",
- "address": "ст. Локомотив",
- "city_id": 19,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-25-10-06-31-nm3.jpg",
- "trainings": 4
- },
- {
- "id": 6787,
- "name": "№6787 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.97950465232134",
- "latitude": "55.59731338533065",
- "address": "деревня Островцы, ул. Подмосковная, д. 27",
- "city_id": 41,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-26-08-06-20-ida.jpg",
- "trainings": 0
- },
- {
- "id": 6788,
- "name": "№6788 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.505435943603516",
- "latitude": "55.86118056301128",
- "address": "Онежская улица, 57/34",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-25-18-06-11-mdv.jpg",
- "trainings": 0
- },
- {
- "id": 6789,
- "name": "№6789 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "49.61789269999997",
- "latitude": "58.6320967",
- "address": "Дзержинского, 60 корп.1",
- "city_id": 55,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-26-13-06-33-jee.jpg",
- "trainings": 0
- },
- {
- "id": 6790,
- "name": "№6790 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "60.798626767536916",
- "latitude": "56.910866635087906",
- "address": "ул красных героев",
- "city_id": 10,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-26-17-06-28-ge8.jpg",
- "trainings": 2
- },
- {
- "id": 6791,
- "name": "№6791 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.810389999999984",
- "latitude": "54.61170800000001",
- "address": "улица Тимакова, 9",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-26-20-06-19-x8r.jpg",
- "trainings": 1
- },
- {
- "id": 6793,
- "name": "№6793 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.94924041524757",
- "latitude": "55.0472134348086",
- "address": "Березовая роща",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-27-20-06-00-acx.jpg",
- "trainings": 2
- },
- {
- "id": 6794,
- "name": "№6794 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "113.50520074367523",
- "latitude": "52.0333731900181",
- "address": "ОДОРА",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-28-09-06-24-fny.jpg",
- "trainings": 9
- },
- {
- "id": 6795,
- "name": "№6795 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "74.5966637134552",
- "latitude": "42.84804628530147",
- "address": "Малдыбаева, 3 (Школа-гимназия №48)",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-28-22-06-58-xwr.jpg",
- "trainings": 2
- },
- {
- "id": 6799,
- "name": "№6799 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.79192499999999",
- "latitude": "54.6207901",
- "address": "касимовское шоссе 61",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/06/2017-06-29-22-06-13-e5u.jpg",
- "trainings": 0
- },
- {
- "id": 6801,
- "name": "№6801 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.433767318725586",
- "latitude": "55.892123809624934",
- "address": "Ленинградская ул, 18а",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-01-08-07-48-rk7.jpg",
- "trainings": 0
- },
- {
- "id": 6804,
- "name": "№6804 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.51606333333336",
- "latitude": "55.88011166666667",
- "address": "Базовская, 24Б",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-03-21-07-11-91w.jpg",
- "trainings": 0
- },
- {
- "id": 6806,
- "name": "№6806 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.452049255371094",
- "latitude": "55.89959524174962",
- "address": "Северная, д 2",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-02-09-07-46-hsg.jpg",
- "trainings": 0
- },
- {
- "id": 6808,
- "name": "№6808 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.34933289525145",
- "latitude": "56.125811205930454",
- "address": "ул.Сурикова 22",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-02-22-07-37-b2i.jpg",
- "trainings": 0
- },
- {
- "id": 6810,
- "name": "№6810 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "40.34834584233397",
- "latitude": "56.1278323737555",
- "address": "ул. Лакина, 183",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-02-23-07-44-jvf.jpg",
- "trainings": 0
- },
- {
- "id": 6811,
- "name": "№6811 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.349697675677476",
- "latitude": "56.1306905303777",
- "address": "ул. Лакина, 171",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-02-23-07-33-5gw.jpg",
- "trainings": 0
- },
- {
- "id": 6812,
- "name": "№6812 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.787824273109436",
- "latitude": "48.0005978101695",
- "address": "Около Аквапарка",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-03-10-07-56-iei.jpg",
- "trainings": 1
- },
- {
- "id": 6813,
- "name": "№6813 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.547559999999976",
- "latitude": "55.877945",
- "address": "800-летия Москвы, 14.",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-03-21-07-14-koz.jpg",
- "trainings": 0
- },
- {
- "id": 6814,
- "name": "№6814 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.537757479098445",
- "latitude": "55.89239396780326",
- "address": "Долгопрудная, 11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-03-21-07-24-bhr.jpg",
- "trainings": 0
- },
- {
- "id": 6815,
- "name": "№6815 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.54002194113923",
- "latitude": "55.88469244440742",
- "address": "Яхромская, 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-03-21-07-26-ram.jpg",
- "trainings": 0
- },
- {
- "id": 6816,
- "name": "№6816 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.54066916798399",
- "latitude": "55.88326222655072",
- "address": "Дмитровское шоссе, 113 к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-03-21-07-37-j6a.jpg",
- "trainings": 0
- },
- {
- "id": 6817,
- "name": "№6817 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.570871114730835",
- "latitude": "55.83497576967773",
- "address": "Верхняя аллея, 47",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-04-08-07-38-jbh.jpg",
- "trainings": 3
- },
- {
- "id": 6818,
- "name": "№6818 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.420737160000044",
- "latitude": "55.13102591",
- "address": "улица Вагнера, 88, Челябинск, Челябинская область, Россия",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-04-13-07-29-q0f.jpg",
- "trainings": 0
- },
- {
- "id": 6819,
- "name": "№6819 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "61.42236649990082",
- "latitude": "55.12967344314959",
- "address": "Барбюса 140б",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-04-13-07-55-tv7.jpg",
- "trainings": 1
- },
- {
- "id": 6820,
- "name": "№6820 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.038129499999968",
- "latitude": "52.9080534",
- "address": "средняя школа 13",
- "city_id": 7400,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-04-19-07-14--fg.jpg",
- "trainings": 2
- },
- {
- "id": 6829,
- "name": "№6829 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.52867040038109",
- "latitude": "49.93788422752923",
- "address": "Военный городок",
- "city_id": 8516,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-05-14-07-15-sld.jpg",
- "trainings": 0
- },
- {
- "id": 6831,
- "name": "№6831 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.505246117721526",
- "latitude": "55.850696778452296",
- "address": "Кронштадтский бульвар, 43к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-05-21-07-17-2qp.jpg",
- "trainings": 1
- },
- {
- "id": 6832,
- "name": "№6832 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.51638740301132",
- "latitude": "55.85849358915466",
- "address": "Солнечногорская 7к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-05-21-07-26-tjm.jpg",
- "trainings": 1
- },
- {
- "id": 6833,
- "name": "№6833 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.51489152142642",
- "latitude": "55.87277828657124",
- "address": "Весенняя, 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-05-21-07-23-7ri.jpg",
- "trainings": 0
- },
- {
- "id": 6834,
- "name": "№6834 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.516081631183624",
- "latitude": "55.876466434154835",
- "address": "Новая 14, ст1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-05-21-07-05-z_e.jpg",
- "trainings": 0
- },
- {
- "id": 6835,
- "name": "№6835 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.31287479400635",
- "latitude": "55.83104119179761",
- "address": "Парковая улица, 8",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-06-07-07-56-7zb.jpg",
- "trainings": 1
- },
- {
- "id": 6836,
- "name": "№6836 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.55079594254494",
- "latitude": "49.93477502985185",
- "address": "Богучар",
- "city_id": 8516,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-06-17-07-18-zku.jpg",
- "trainings": 0
- },
- {
- "id": 6837,
- "name": "№6837 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "56.28246200000001",
- "latitude": "58.017248",
- "address": "ул. КИМ, 90",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-07-06-07-18-a_4.jpg",
- "trainings": 0
- },
- {
- "id": 6838,
- "name": "№6838 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.60477400000002",
- "latitude": "56.845458",
- "address": "Николая никонова, ккт Космос ",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-07-13-07-06-qh8.jpg",
- "trainings": 6
- },
- {
- "id": 6839,
- "name": "№6839 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.13983738422394",
- "latitude": "56.33877231157628",
- "address": "Пограничная, 30а",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-07-16-07-27-vxm.jpg",
- "trainings": 2
- },
- {
- "id": 6840,
- "name": "№6840 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "76.10356226563454",
- "latitude": "61.02913440833877",
- "address": "Заречная улица, 4, Мегион, Ханты-Мансийский автономный округ, Россия",
- "city_id": 782,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-07-20-07-46-h3j.jpg",
- "trainings": 2
- },
- {
- "id": 6841,
- "name": "№6841 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.51920372247696",
- "latitude": "55.875416165105804",
- "address": "Ангарская, 22 к2 ст1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-08-13-07-06-xgw.jpg",
- "trainings": 0
- },
- {
- "id": 6842,
- "name": "№6842 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.519500202377344",
- "latitude": "55.88712771072057",
- "address": "Клязьминская, 5 к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-08-13-07-30-rzu.jpg",
- "trainings": 0
- },
- {
- "id": 6843,
- "name": "№6843 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.517717",
- "latitude": "55.881930",
- "address": "Базовская, 26",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-08-13-07-41-l9k.jpg",
- "trainings": 0
- },
- {
- "id": 6844,
- "name": "№6844 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.522030051590036",
- "latitude": "55.87752337192818",
- "address": "Ангарская, 28 к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-08-22-07-39-z7m.jpg",
- "trainings": 0
- },
- {
- "id": 6845,
- "name": "№6845 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.52340051653289",
- "latitude": "55.87635323344726",
- "address": "Коровинское шоссе, 21 к1 с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-08-22-07-06-12a.jpg",
- "trainings": 1
- },
- {
- "id": 6846,
- "name": "№6846 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.64310530555724",
- "latitude": "55.81721033714182",
- "address": "улица Кибальчича, 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-12-07-55-86o.jpg",
- "trainings": 0
- },
- {
- "id": 6847,
- "name": "№6847 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.45938241481781",
- "latitude": "55.719031383851636",
- "address": "Ул. Артамонова, д. 7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-14-07-58-pio.jpg",
- "trainings": 0
- },
- {
- "id": 6848,
- "name": "№6848 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.460535764694214",
- "latitude": "55.720318528947445",
- "address": "Ул. Артамонова, д. 2 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-15-07-28-yeh.jpg",
- "trainings": 2
- },
- {
- "id": 6849,
- "name": "№6849 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.46021399999995",
- "latitude": "55.7227478",
- "address": "Ул. Ватутина, д. 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-15-07-01-o4f.jpg",
- "trainings": 0
- },
- {
- "id": 6850,
- "name": "№6850 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.4555221851806",
- "latitude": "55.72372016924271",
- "address": "Кутузовский проспект, д. 67 корп. 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-15-07-46-q_3.jpg",
- "trainings": 0
- },
- {
- "id": 6851,
- "name": "№6851 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.45831489562988",
- "latitude": "55.724584537547685",
- "address": "Ул. Кременчугская, д. 4к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-15-07-15-ggs.jpg",
- "trainings": 0
- },
- {
- "id": 6852,
- "name": "№6852 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.45657682418823",
- "latitude": "55.72669924155455",
- "address": "Ул. Алексея свиридова д. 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-16-07-49-psq.jpg",
- "trainings": 0
- },
- {
- "id": 6853,
- "name": "№6853 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.45541618095092",
- "latitude": "55.72587992366782",
- "address": "Кутузовский проспект, д. 80",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-16-07-06-nvr.jpg",
- "trainings": 1
- },
- {
- "id": 6854,
- "name": "№6854 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.512640017196645",
- "latitude": "55.87752311099546",
- "address": "Базовская, 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-17-07-04-1zw.jpg",
- "trainings": 0
- },
- {
- "id": 6855,
- "name": "№6855 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.453787326812744",
- "latitude": "55.725732533933645",
- "address": "ул. Алексея Свиридова, д. 13, корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-17-07-58-lja.jpg",
- "trainings": 0
- },
- {
- "id": 6856,
- "name": "№6856 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.50756385288696",
- "latitude": "55.87860913378159",
- "address": "Базовская, 15",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-19-07-05-eqr.jpg",
- "trainings": 3
- },
- {
- "id": 6857,
- "name": "№6857 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.51134121719667",
- "latitude": "55.87653782015957",
- "address": "Базовская, 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-20-07-32-frl.jpg",
- "trainings": 0
- },
- {
- "id": 6858,
- "name": "№6858 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.51098542460636",
- "latitude": "55.87554263958976",
- "address": "Весенняя, 20",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-20-07-41-9km.jpg",
- "trainings": 0
- },
- {
- "id": 6859,
- "name": "№6859 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "65.57699292898178",
- "latitude": "57.13289155755789",
- "address": "пр-д геологоразведчиков 162",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-20-07-21-cvj.jpg",
- "trainings": 1
- },
- {
- "id": 6860,
- "name": "№6860 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.50904809325402",
- "latitude": "55.87358314764016",
- "address": "Новая, 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-20-07-34-zgu.jpg",
- "trainings": 0
- },
- {
- "id": 6861,
- "name": "№6861 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.49093708332828",
- "latitude": "55.88358919376848",
- "address": "Бусиновская Горка, 11к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-20-07-00-u9m.jpg",
- "trainings": 3
- },
- {
- "id": 6862,
- "name": "№6862 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.491645777771055",
- "latitude": "55.88428636644879",
- "address": "Бусиновская Горка, 11к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-20-07-05-s7m.jpg",
- "trainings": 2
- },
- {
- "id": 6863,
- "name": "№6863 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.490808086508196",
- "latitude": "55.88161217967009",
- "address": "Маршала Федоренко, 10к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-20-07-13-xbu.jpg",
- "trainings": 0
- },
- {
- "id": 6864,
- "name": "№6864 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.49240696560673",
- "latitude": "55.880894461440484",
- "address": "Маршала Федоренко, 8к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-20-07-09-4vt.jpg",
- "trainings": 0
- },
- {
- "id": 6865,
- "name": "№6865 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "66.61154508590698",
- "latitude": "66.5362538168824",
- "address": "Арктическая ул, 4",
- "city_id": 643,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-09-21-07-55-7br.jpg",
- "trainings": 0
- },
- {
- "id": 6866,
- "name": "№6866 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.29748696088791",
- "latitude": "55.62106600539566",
- "address": "Улица Пыхтино ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-10-13-07-23-i-y.jpg",
- "trainings": 1
- },
- {
- "id": 6869,
- "name": "№6869 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.52330403306587",
- "latitude": "55.874566473964556",
- "address": "Талдомская, 17к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-10-20-07-53-xey.jpg",
- "trainings": 0
- },
- {
- "id": 6871,
- "name": "№6871 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.93755188584328",
- "latitude": "55.966576754251065",
- "address": "Трудовая 18",
- "city_id": 45,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-11-13-07-32-un6.jpg",
- "trainings": 1
- },
- {
- "id": 6874,
- "name": "№6874 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.250658989688077",
- "latitude": "60.019672332707735",
- "address": "Комендантский пр., 29к2 (школа №657)",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-11-20-07-51-vlb.jpg",
- "trainings": 1
- },
- {
- "id": 6875,
- "name": "№6875 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.41476065872189",
- "latitude": "55.79039146563105",
- "address": "Таманская ул., 44с4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-12-20-07-50-dqh.jpg",
- "trainings": 0
- },
- {
- "id": 6876,
- "name": "№6876 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.63443156679534",
- "latitude": "55.8556329421973",
- "address": "пр-д Русанова, 41с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-12-20-07-31-gji.jpg",
- "trainings": 0
- },
- {
- "id": 6878,
- "name": "№6878 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "142.74278104305267",
- "latitude": "46.95263878113223",
- "address": "Физкультурная 124б",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-13-14-07-12--nw.jpg",
- "trainings": 0
- },
- {
- "id": 6879,
- "name": "№6879 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.53253320052488",
- "latitude": "55.88244117130767",
- "address": "Софьи Ковалевской, 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-13-21-07-29-rga.jpg",
- "trainings": 0
- },
- {
- "id": 6881,
- "name": "№6881 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.676732540130615",
- "latitude": "55.7441381604458",
- "address": "Рогожский вал, д.4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-14-14-07-25-aiv.jpg",
- "trainings": 1
- },
- {
- "id": 6886,
- "name": "№6886 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "34.73493641080495",
- "latitude": "32.00658458517687",
- "address": "beach Bat Yam",
- "city_id": 766,
- "country_id": 9,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-14-20-07-07-ltt.jpg",
- "trainings": 0
- },
- {
- "id": 6887,
- "name": "№6887 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.46095418930054",
- "latitude": "55.71332634285238",
- "address": "Ул. Кременчугская д. 38 к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-14-23-07-53-rdv.jpg",
- "trainings": 2
- },
- {
- "id": 6888,
- "name": "№6888 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.441298961639404",
- "latitude": "55.72100740607842",
- "address": "Можайское шоссе, д. 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-14-23-07-58-nxb.jpg",
- "trainings": 0
- },
- {
- "id": 6889,
- "name": "№6889 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.4398398399353",
- "latitude": "55.72029435759939",
- "address": "Можайское шоссе, д. 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-14-23-07-36-3ih.jpg",
- "trainings": 0
- },
- {
- "id": 6890,
- "name": "№6890 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.67492473125458",
- "latitude": "55.76695946707718",
- "address": "Доброслободская ул, д. 15",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-14-23-07-56-rkc.jpg",
- "trainings": 0
- },
- {
- "id": 6891,
- "name": "№6891 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.67835259437561",
- "latitude": "55.770254774421026",
- "address": "Ул. Бауманская д. 46",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-15-00-07-54-byw.jpg",
- "trainings": 1
- },
- {
- "id": 6892,
- "name": "№6892 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.66893804073334",
- "latitude": "55.76463870345378",
- "address": "Гороховский переулок, д.16/2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-15-00-07-05-mll.jpg",
- "trainings": 0
- },
- {
- "id": 6893,
- "name": "№6893 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.67191681349186",
- "latitude": "55.76790701515479",
- "address": "Доброслободская ул. Д. 6с2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-15-00-07-20-ljt.jpg",
- "trainings": 1
- },
- {
- "id": 6894,
- "name": "№6894 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.66907215118408",
- "latitude": "55.76411357002285",
- "address": "Ул. Казакова, д. 29 с2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-15-00-07-35-pst.jpg",
- "trainings": 0
- },
- {
- "id": 6895,
- "name": "№6895 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.67007196560667",
- "latitude": "55.76413934254577",
- "address": "Токмаков пер., д16 стр 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-15-00-07-09-opd.jpg",
- "trainings": 0
- },
- {
- "id": 6896,
- "name": "№6896 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.67058740866776",
- "latitude": "55.76652640705488",
- "address": "Токмаков пер., д. 13-15",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-15-00-07-28-xou.jpg",
- "trainings": 0
- },
- {
- "id": 6898,
- "name": "№6898 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.428635408598325",
- "latitude": "56.13905359987219",
- "address": "ул Усти-на-Лабе , 6",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-15-17-07-47-wfq.jpg",
- "trainings": 0
- },
- {
- "id": 6899,
- "name": "№6899 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.00215045875245",
- "latitude": "54.76100252651518",
- "address": "На территории школы №31",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-15-17-07-19-djo.jpg",
- "trainings": 1
- },
- {
- "id": 6900,
- "name": "№6900 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.82691166666666",
- "latitude": "55.74945",
- "address": "Зеленый проспект",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-16-12-07-49-bvk.jpg",
- "trainings": 2
- },
- {
- "id": 6901,
- "name": "№6901 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.60248425131226",
- "latitude": "55.72329667810904",
- "address": "Ленинский проспект, д. 11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-15-21-07-24-xtj.jpg",
- "trainings": 0
- },
- {
- "id": 6902,
- "name": "№6902 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.40603184700012",
- "latitude": "55.140136507515756",
- "address": "Ширшова, 9",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-16-09-07-21-amz.jpg",
- "trainings": 1
- },
- {
- "id": 6903,
- "name": "№6903 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.58136827249143",
- "latitude": "55.739342102360006",
- "address": "новоконюшенный переулок 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-16-11-07-12-amr.jpg",
- "trainings": 1
- },
- {
- "id": 6904,
- "name": "№6904 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.585580348968506",
- "latitude": "55.742167628617175",
- "address": "смоленский бульвар 20",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-16-11-07-42-1am.jpg",
- "trainings": 2
- },
- {
- "id": 6905,
- "name": "№6905 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "116.5353512763977",
- "latitude": "50.39307574053136",
- "address": "43 школа",
- "city_id": 8233,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-16-16-07-01-tyo.jpg",
- "trainings": 1
- },
- {
- "id": 6942,
- "name": "№6942 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.07363510131836",
- "latitude": "44.57821058499436",
- "address": "Приморский бульвар",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-17-13-07-06--ul.jpg",
- "trainings": 1
- },
- {
- "id": 6943,
- "name": "№6943 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "23.28461855649948",
- "latitude": "42.706245655675694",
- "address": "бул \"Вардар\"",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-18-00-07-56-vex.jpg",
- "trainings": 0
- },
- {
- "id": 6944,
- "name": "№6944 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "142.74226069450378",
- "latitude": "46.95300678735737",
- "address": "Проспект Мира 157",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-18-06-07-25-lg7.jpg",
- "trainings": 0
- },
- {
- "id": 6945,
- "name": "№6945 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.39538226983643",
- "latitude": "56.13772251824023",
- "address": "ул.Мира, 17",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-18-13-07-32-n3h.jpg",
- "trainings": 0
- },
- {
- "id": 6946,
- "name": "№6946 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.392291054834004",
- "latitude": "56.13769749672158",
- "address": "Октябрьский проспект, 36",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-18-13-07-20-nvs.jpg",
- "trainings": 0
- },
- {
- "id": 6950,
- "name": "№6950 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "56.28796199999999",
- "latitude": "58.017346",
- "address": "ким 101",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-18-21-07-27-tve.jpg",
- "trainings": 1
- },
- {
- "id": 6951,
- "name": "№6951 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.06629657745361",
- "latitude": "44.575887347767676",
- "address": "Приморский бульвар",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-19-08-07-18-evu.jpg",
- "trainings": 2
- },
- {
- "id": 6959,
- "name": "№6959 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.21195137500763",
- "latitude": "51.74134037325442",
- "address": "Боевка",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-21-09-07-37-j9m.jpg",
- "trainings": 1
- },
- {
- "id": 6960,
- "name": "№6960 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.801096081733704",
- "latitude": "53.50044856632798",
- "address": "Брянская обл. Жуковский район, хутор Поляковка, ул. Ярославич 32",
- "city_id": 8386,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-21-16-07-44-rzc.jpg",
- "trainings": 0
- },
- {
- "id": 6961,
- "name": "№6961 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.63927233729555",
- "latitude": "55.79053410530839",
- "address": "2-й Крестовский переулок, 12",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-21-18-07-20-3ek.jpg",
- "trainings": 1
- },
- {
- "id": 6962,
- "name": "№6962 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "158.62652779999996",
- "latitude": "53.09453",
- "address": "Биатлонный комплекс \"имени Виталия Фатьянова\"",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-21-23-07-35-4xj.jpg",
- "trainings": 2
- },
- {
- "id": 6969,
- "name": "№6969 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "135.08837342262268",
- "latitude": "48.471961016674534",
- "address": "ул. Павловича, 5",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-23-09-07-50-bcl.jpg",
- "trainings": 1
- },
- {
- "id": 6973,
- "name": "№6973 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.48907499867255",
- "latitude": "55.883392386958",
- "address": "Маршала Федоренко, 14к4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-23-20-07-34-hjb.jpg",
- "trainings": 0
- },
- {
- "id": 6983,
- "name": "№6983 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.563753843307495",
- "latitude": "56.801794735366144",
- "address": "Екатеринбург, улица Чкалова",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-24-22-07-19-yjx.jpg",
- "trainings": 7
- },
- {
- "id": 6984,
- "name": "№6984 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.63304930000004",
- "latitude": "55.7374194",
- "address": "Вишняковский пер 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-25-10-07-18-o6w.jpg",
- "trainings": 0
- },
- {
- "id": 6985,
- "name": "№6985 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.39961349999999",
- "latitude": "55.1409895",
- "address": "Цеховая, 8а",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-25-13-07-53-ogr.jpg",
- "trainings": 0
- },
- {
- "id": 6987,
- "name": "№6987 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.583789189688105",
- "latitude": "54.14657742974542",
- "address": "пр. Ленина д 157",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-26-10-07-49-4zr.jpg",
- "trainings": 0
- },
- {
- "id": 6988,
- "name": "№6988 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.480461835861206",
- "latitude": "54.0696259555254",
- "address": "мкр. Сокольники, Пушкина 25",
- "city_id": 559,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-26-11-07-08-vnz.jpg",
- "trainings": 0
- },
- {
- "id": 6992,
- "name": "№6992 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.424433825656138",
- "latitude": "53.91406461883202",
- "address": "нёманская 33",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-26-20-07-17-nyg.jpg",
- "trainings": 0
- },
- {
- "id": 6993,
- "name": "№6993 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.42416289947505",
- "latitude": "53.91270595009131",
- "address": "неманская 23",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-26-20-07-24-xwq.jpg",
- "trainings": 0
- },
- {
- "id": 6994,
- "name": "№6994 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.42473689999997",
- "latitude": "53.9116822",
- "address": "неманская 11",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-26-20-07-52-ltl.jpg",
- "trainings": 0
- },
- {
- "id": 6995,
- "name": "№6995 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.421518247360268",
- "latitude": "53.91133780469944",
- "address": "неманская 7",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-26-20-07-21-ade.jpg",
- "trainings": 1
- },
- {
- "id": 6997,
- "name": "№6997 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.42216742750861",
- "latitude": "53.91546123869996",
- "address": "казимировская 21а",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-26-20-07-53-cgq.jpg",
- "trainings": 0
- },
- {
- "id": 6998,
- "name": "№6998 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.91530418395996",
- "latitude": "43.441168817135036",
- "address": "Кирпичная, 40",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-27-11-07-44-6df.jpg",
- "trainings": 1
- },
- {
- "id": 7001,
- "name": "№7001 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "116.57704889774323",
- "latitude": "51.98418634054775",
- "address": "нерчинск",
- "city_id": 8443,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-27-08-07-23-dnz.jpg",
- "trainings": 0
- },
- {
- "id": 7020,
- "name": "№7020 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "116.36727601289749",
- "latitude": "51.7466514840222",
- "address": "нерчинск",
- "city_id": 8443,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-27-14-07-16-_ov.jpg",
- "trainings": 0
- },
- {
- "id": 7031,
- "name": "№7031 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.92610925230497",
- "latitude": "55.03357393548492",
- "address": "Центральный парк",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-27-20-07-38-fje.jpg",
- "trainings": 9
- },
- {
- "id": 7042,
- "name": "№7042 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.74018543958664",
- "latitude": "47.22767419708577",
- "address": "Первомайский парк",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-27-23-07-53-1v4.jpg",
- "trainings": 1
- },
- {
- "id": 7043,
- "name": "№7043 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.7381429374218",
- "latitude": "47.22997828481649",
- "address": "Пушкинская/Нахичеванский",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-27-23-07-35-rep.jpg",
- "trainings": 0
- },
- {
- "id": 7044,
- "name": "№7044 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.539483569562435",
- "latitude": "54.120306850652156",
- "address": "п. Косая Гора, Косогорский парк",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-28-11-07-25-5cw.jpg",
- "trainings": 2
- },
- {
- "id": 7048,
- "name": "№7048 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.8056663274765",
- "latitude": "55.67715489809429",
- "address": "улица Головачева 1к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-28-12-07-47-cop.jpg",
- "trainings": 1
- },
- {
- "id": 7049,
- "name": "№7049 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "41.98058366775513",
- "latitude": "45.03073417697608",
- "address": "партизанская 2",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-28-13-07-32-5em.jpg",
- "trainings": 2
- },
- {
- "id": 7073,
- "name": "№7073 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.913485527038574",
- "latitude": "44.99681580884704",
- "address": "Пирогова 92, во дворе ",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-29-22-07-36--ru.jpg",
- "trainings": 1
- },
- {
- "id": 7074,
- "name": "№7074 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.712450230935701",
- "latitude": "50.14411760095268",
- "address": "huthpark",
- "city_id": 7518,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-29-23-07-26-k0h.jpg",
- "trainings": 0
- },
- {
- "id": 7080,
- "name": "№7080 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "47.2134948491821",
- "latitude": "56.14768375488887",
- "address": " г. Чебоксары, Московский пр., 38В",
- "city_id": 146,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-30-14-07-28-v6b.jpg",
- "trainings": 1
- },
- {
- "id": 7081,
- "name": "№7081 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "47.27568805217743",
- "latitude": "56.13544127694666",
- "address": "ул.Гагарина , 40 Стадион \"Спартак\"",
- "city_id": 146,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-30-15-07-09-9wz.jpg",
- "trainings": 1
- },
- {
- "id": 7082,
- "name": "№7082 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.9188928604126",
- "latitude": "44.997604836265346",
- "address": "45 параллель 4/2 во дворе",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-30-15-07-28-txk.jpg",
- "trainings": 0
- },
- {
- "id": 7084,
- "name": "№7084 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "41.32512420415878",
- "latitude": "56.335129726795074",
- "address": "ул. Еловая, 94/1",
- "city_id": 7426,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-30-15-07-53-cy4.jpg",
- "trainings": 1
- },
- {
- "id": 7087,
- "name": "№7087 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.39740008115768",
- "latitude": "52.061716243003474",
- "address": "Проспект Фадеева, 41",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-31-03-07-25-mch.jpg",
- "trainings": 0
- },
- {
- "id": 7088,
- "name": "№7088 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "53.87256872924809",
- "latitude": "57.305977057790976",
- "address": "Шарканская СОШ",
- "city_id": 8061,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-31-12-07-10-pow.jpg",
- "trainings": 0
- },
- {
- "id": 7096,
- "name": "№7096 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.68490791320801",
- "latitude": "55.7053294223067",
- "address": "метро кожуховская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-31-20-07-00-8rx.jpg",
- "trainings": 0
- },
- {
- "id": 7097,
- "name": "№7097 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.682740688323975",
- "latitude": "55.70458586127068",
- "address": "метро кожуховская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/07/2017-07-31-20-07-57-k7t.jpg",
- "trainings": 0
- },
- {
- "id": 7098,
- "name": "№7098 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "46.05401860903726",
- "latitude": "51.55464589643366",
- "address": "весенняя 4",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-01-14-08-46-8zp.jpg",
- "trainings": 1
- },
- {
- "id": 7099,
- "name": "№7099 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "90.48634886741638",
- "latitude": "56.25225560433969",
- "address": "5-й микрорайон, 14",
- "city_id": 8,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-01-17-08-17-dzp.jpg",
- "trainings": 0
- },
- {
- "id": 7106,
- "name": "№7106 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.330141761901814",
- "latitude": "55.81483149369901",
- "address": "Железнодорожная, 6",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-02-13-08-03-_gs.jpg",
- "trainings": 0
- },
- {
- "id": 7107,
- "name": "№7107 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.48054158525008",
- "latitude": "55.78693602370779",
- "address": "ул. Берзарина, 15",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-02-13-08-57-cmd.jpg",
- "trainings": 2
- },
- {
- "id": 7112,
- "name": "№7112 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.661125915869206",
- "latitude": "50.13089214496019",
- "address": "Grüneburgpark",
- "city_id": 7518,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-02-22-08-08-b1w.jpg",
- "trainings": 0
- },
- {
- "id": 7115,
- "name": "№7115 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.49367442726134",
- "latitude": "55.85814866295853",
- "address": "Фестивальная, 8 стр 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-03-19-08-40-zmw.jpg",
- "trainings": 1
- },
- {
- "id": 7116,
- "name": "№7116 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.49986883995052",
- "latitude": "55.85296256567508",
- "address": "Флотская, 44",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-03-19-08-00--wk.jpg",
- "trainings": 0
- },
- {
- "id": 7118,
- "name": "№7118 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "50.29819965362549",
- "latitude": "53.214308339141894",
- "address": "самара,заводское шоссе 68",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-03-20-08-37-tv5.jpg",
- "trainings": 0
- },
- {
- "id": 7119,
- "name": "№7119 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.28890657424927",
- "latitude": "45.00569932656141",
- "address": "Ул. Школьная 4",
- "city_id": 4,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-04-06-08-40-zyq.jpg",
- "trainings": 0
- },
- {
- "id": 7120,
- "name": "№7120 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "85.14347165822983",
- "latitude": "52.50892095684979",
- "address": "имени Героя Советского Союза Васильева, 65",
- "city_id": 569,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-04-13-08-36-hch.jpg",
- "trainings": 2
- },
- {
- "id": 7121,
- "name": "№7121 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.54930665092616",
- "latitude": "52.02377668802618",
- "address": "Славянская, 10",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-04-13-08-56-kei.jpg",
- "trainings": 0
- },
- {
- "id": 7124,
- "name": "№7124 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.15697260000002",
- "latitude": "56.3304055",
- "address": "проспект красной армии д. 238",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-04-22-08-01-asd.jpg",
- "trainings": 1
- },
- {
- "id": 7125,
- "name": "№7125 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.292232513427734",
- "latitude": "45.00744400594526",
- "address": "Ул. Школьная 4",
- "city_id": 4,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-05-06-08-40-wun.jpg",
- "trainings": 1
- },
- {
- "id": 7128,
- "name": "№7128 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.84412384033203",
- "latitude": "55.75573764130791",
- "address": "улица Сталеваров",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-05-13-08-15-7va.jpg",
- "trainings": 0
- },
- {
- "id": 7129,
- "name": "№7129 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.84459590911865",
- "latitude": "55.75380564027848",
- "address": "улица Сталеваров",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-05-13-08-19-hgj.jpg",
- "trainings": 1
- },
- {
- "id": 7130,
- "name": "№7130 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.83584117889404",
- "latitude": "55.753757339026635",
- "address": "Саперный проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-05-13-08-07-tf8.jpg",
- "trainings": 0
- },
- {
- "id": 7131,
- "name": "№7131 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.83348083496094",
- "latitude": "55.75641381905978",
- "address": "Напольный проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-05-13-08-36-82x.jpg",
- "trainings": 0
- },
- {
- "id": 7132,
- "name": "№7132 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.828224999999975",
- "latitude": "55.757345",
- "address": "Напольный проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-05-14-08-03-8ar.jpg",
- "trainings": 0
- },
- {
- "id": 7133,
- "name": "№7133 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.82693833333337",
- "latitude": "55.756855",
- "address": "Напольный проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-05-14-08-40-iww.jpg",
- "trainings": 0
- },
- {
- "id": 7135,
- "name": "№7135 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "142.74088740348816",
- "latitude": "46.952188382009936",
- "address": "Проспект Мира 180",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-06-08-22-0gz.jpg",
- "trainings": 0
- },
- {
- "id": 7136,
- "name": "№7136 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "60.65322160720825",
- "latitude": "56.83828657413476",
- "address": "ул. Коминтерна, 4",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-12-08-28-sgx.jpg",
- "trainings": 0
- },
- {
- "id": 7137,
- "name": "№7137 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "60.59657335281372",
- "latitude": "56.90708091619669",
- "address": "ул. Коммунистическая, д. 81",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-07-19-08-00-cdv.jpg",
- "trainings": 1
- },
- {
- "id": 7138,
- "name": "№7138 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.56286334991455",
- "latitude": "56.91167324902323",
- "address": "Парк Победы, площадка №3 на тропе Кузнецова",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-12-08-26-cy5.jpg",
- "trainings": 0
- },
- {
- "id": 7139,
- "name": "№7139 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.56570649147034",
- "latitude": "56.90463222216917",
- "address": "Парк Победы, площадка №1 на тропе Кузнецова",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-12-08-45-x4d.jpg",
- "trainings": 0
- },
- {
- "id": 7140,
- "name": "№7140 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.56346416473389",
- "latitude": "56.9091897105881",
- "address": "Парк Победы, площадка №2 на тропе Кузнецова",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-12-08-05-h3j.jpg",
- "trainings": 1
- },
- {
- "id": 7141,
- "name": "№7141 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.65599501132965",
- "latitude": "56.86007664025453",
- "address": "ул. Данилы Зверева, д. 8",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-28-10-10-04-4jz.jpg",
- "trainings": 0
- },
- {
- "id": 7142,
- "name": "№7142 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.56561529636383",
- "latitude": "56.92381326513721",
- "address": "В недрах парка Победы",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-12-08-15-ozj.jpg",
- "trainings": 0
- },
- {
- "id": 7143,
- "name": "№7143 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.61460584402084",
- "latitude": "56.876185148703634",
- "address": "ул. Турбинная (на территории пожарной части)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-13-08-14-q_x.jpg",
- "trainings": 0
- },
- {
- "id": 7144,
- "name": "№7144 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "60.63220113515854",
- "latitude": "56.8753760771865",
- "address": "База функционального тренинга \"Чикантэ\" (район пединститута)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-13-08-33-ge1.jpg",
- "trainings": 0
- },
- {
- "id": 7145,
- "name": "№7145 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "61.44270837306976",
- "latitude": "57.01593206091099",
- "address": "ул. Павлова",
- "city_id": 687,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-13-08-36--v1.jpg",
- "trainings": 0
- },
- {
- "id": 7146,
- "name": "№7146 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.64642623066902",
- "latitude": "56.82579586396561",
- "address": "пер. Насосный",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-13-08-30-ta9.jpg",
- "trainings": 0
- },
- {
- "id": 7147,
- "name": "№7147 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.62742372883599",
- "latitude": "56.86103756233634",
- "address": "ул. Омская, д. 91",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-13-08-52-zee.jpg",
- "trainings": 0
- },
- {
- "id": 7148,
- "name": "№7148 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.651177763938904",
- "latitude": "56.82631247967828",
- "address": "переулок Шорный/переулок Виражный",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-13-08-20-eld.jpg",
- "trainings": 0
- },
- {
- "id": 7149,
- "name": "№7149 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.659419528697185",
- "latitude": "56.83715345632432",
- "address": "ул. Комсомольская, д. 74",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-13-08-38-ydo.jpg",
- "trainings": 1
- },
- {
- "id": 7150,
- "name": "№7150 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "113.50168168544769",
- "latitude": "52.04387320189521",
- "address": "Курнатовского, 45",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-13-08-29-z17.jpg",
- "trainings": 1
- },
- {
- "id": 7151,
- "name": "№7151 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.65875634551048",
- "latitude": "56.83894679883341",
- "address": "ул. Фонвизина, д. 9",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-13-08-22-tmi.jpg",
- "trainings": 1
- },
- {
- "id": 7152,
- "name": "№7152 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.656838566064835",
- "latitude": "56.82197826393705",
- "address": "Сибирский тракт, дом 22",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-14-08-55-v4_.jpg",
- "trainings": 0
- },
- {
- "id": 7153,
- "name": "№7153 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.58991879224777",
- "latitude": "56.88661942931737",
- "address": "площадка на бульваре Культуры (сердце Уралмаша)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-14-08-39-osp.jpg",
- "trainings": 0
- },
- {
- "id": 7154,
- "name": "№7154 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.649428963661194",
- "latitude": "56.834835610245406",
- "address": "ул. Гагарина, д. 61 / ул. Педагогическая, д. 3",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-14-08-28-ml5.jpg",
- "trainings": 0
- },
- {
- "id": 7155,
- "name": "№7155 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.58541804552078",
- "latitude": "56.91013277176049",
- "address": "ул. Восстания, д. 124",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-14-08-27-xb4.jpg",
- "trainings": 0
- },
- {
- "id": 7156,
- "name": "№7156 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.64192280173302",
- "latitude": "56.82943256969029",
- "address": "ул. Куйбышева, д. 86/2",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-15-08-49-kan.jpg",
- "trainings": 0
- },
- {
- "id": 7157,
- "name": "№7157 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.658277571201324",
- "latitude": "56.83776718918954",
- "address": "ул. Фонвизина, д. 8 (общежитие)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-15-08-49-yma.jpg",
- "trainings": 0
- },
- {
- "id": 7158,
- "name": "№7158 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "132.9191277878357",
- "latitude": "48.7933939",
- "address": "Пионерская, 28 Лицей №23",
- "city_id": 633,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-15-08-13-wyr.jpg",
- "trainings": 0
- },
- {
- "id": 7159,
- "name": "№7159 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "132.89081275463104",
- "latitude": "48.796153906131636",
- "address": "Набережная, 24 \"а\"",
- "city_id": 633,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-15-08-55-n62.jpg",
- "trainings": 0
- },
- {
- "id": 7160,
- "name": "№7160 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "132.917327806221",
- "latitude": "48.79508806766376",
- "address": "Пионерская, 37",
- "city_id": 633,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-15-08-09-q35.jpg",
- "trainings": 0
- },
- {
- "id": 7161,
- "name": "№7161 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "132.9068260433777",
- "latitude": "48.7971844616466",
- "address": "Пионерская, 60",
- "city_id": 633,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-15-08-21-tdz.jpg",
- "trainings": 0
- },
- {
- "id": 7162,
- "name": "№7162 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.64345812804095",
- "latitude": "55.74753805324554",
- "address": "кинотеатр Иллюзион",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-17-08-00-not.jpg",
- "trainings": 1
- },
- {
- "id": 7163,
- "name": "№7163 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.15196681022644",
- "latitude": "59.84323029012505",
- "address": "парк Новознаменка",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-19-08-45-xh1.jpg",
- "trainings": 5
- },
- {
- "id": 7164,
- "name": "№7164 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.158768892288208",
- "latitude": "59.83206070828219",
- "address": "ул. Тамбасова, д. 26/2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-19-08-31-0d6.jpg",
- "trainings": 0
- },
- {
- "id": 7165,
- "name": "№7165 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "30.474277138710022",
- "latitude": "59.84191514790109",
- "address": "Промышленная зона у железной дороги (Невский район) ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-19-08-52-l5z.jpg",
- "trainings": 0
- },
- {
- "id": 7166,
- "name": "№7166 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.169135630130768",
- "latitude": "59.84197174320594",
- "address": "ул. Добровольцев, д. 8",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-19-08-27-caw.jpg",
- "trainings": 5
- },
- {
- "id": 7167,
- "name": "№7167 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.274264404754604",
- "latitude": "59.897369004982416",
- "address": "проспект Стачек, д. 5 (м. Нарвская)",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-19-08-08-ho4.jpg",
- "trainings": 0
- },
- {
- "id": 7168,
- "name": "№7168 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.58564871549606",
- "latitude": "56.90062492194031",
- "address": "ул. Уральских рабочих, д. 73А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-19-08-18-if9.jpg",
- "trainings": 0
- },
- {
- "id": 7169,
- "name": "№7169 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.453167617321014",
- "latitude": "45.4612142654756",
- "address": "улица Фрунзе, дом 85",
- "city_id": 7933,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-19-08-35-ykw.jpg",
- "trainings": 1
- },
- {
- "id": 7170,
- "name": "№7170 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.81237584352493",
- "latitude": "56.774107117801286",
- "address": "ул. Реактивная, д. 28",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-19-08-41-dxy.png",
- "trainings": 0
- },
- {
- "id": 7171,
- "name": "№7171 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.65012902021408",
- "latitude": "56.89369901235561",
- "address": "Лыжная база СК \"Калининец\" (ул. Краснофлотцев, д. 48/4)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-19-13-08-03-xoa.jpg",
- "trainings": 0
- },
- {
- "id": 7172,
- "name": "№7172 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.52468481659889",
- "latitude": "55.82999628509731",
- "address": "Матроса Железняка бульвар, 13",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-06-22-08-45-zif.jpg",
- "trainings": 1
- },
- {
- "id": 7173,
- "name": "№7173 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.63108",
- "latitude": "55.72771166666666",
- "address": "Стремянный переулок, 19",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-27-09-08-32-u0c.jpg",
- "trainings": 1
- },
- {
- "id": 7174,
- "name": "№7174 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "83.09692812975777",
- "latitude": "54.84687379341323",
- "address": "НГУ",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-07-07-08-45-iiw.jpg",
- "trainings": 2
- },
- {
- "id": 7176,
- "name": "№7176 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.540219655017154",
- "latitude": "55.37893182711788",
- "address": "проспект 50 лет Октября, 4",
- "city_id": 103,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-07-14-08-45-fe6.jpg",
- "trainings": 0
- },
- {
- "id": 7177,
- "name": "№7177 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.54402021957401",
- "latitude": "55.37812857405587",
- "address": "улица Дмитрия Холодова, 4",
- "city_id": 57,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-07-15-08-05-amq.jpg",
- "trainings": 0
- },
- {
- "id": 7178,
- "name": "№7178 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.54228294973757",
- "latitude": "55.37832973075869",
- "address": "улица Дмитрия Холодова, 8/5",
- "city_id": 57,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-07-15-08-20-djh.jpg",
- "trainings": 0
- },
- {
- "id": 7179,
- "name": "№7179 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.54191149563144",
- "latitude": "55.37772149793185",
- "address": "улица Дмитрия Холодова, 5",
- "city_id": 57,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-07-15-08-25-w8t.jpg",
- "trainings": 0
- },
- {
- "id": 7180,
- "name": "№7180 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.53899479762265",
- "latitude": "55.37880524988511",
- "address": "улица Дмитрия Холодова, 14/7",
- "city_id": 57,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-07-15-08-55-j35.jpg",
- "trainings": 0
- },
- {
- "id": 7181,
- "name": "№7181 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.540540100524936",
- "latitude": "55.37856109560696",
- "address": "проспект 50 лет Октября, 6/10",
- "city_id": 57,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-07-15-08-28-hoc.jpg",
- "trainings": 0
- },
- {
- "id": 7182,
- "name": "№7182 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.53975163995051",
- "latitude": "55.37696447480645",
- "address": "проспект 50 лет Октября, 10",
- "city_id": 57,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-07-15-08-42-qmq.jpg",
- "trainings": 0
- },
- {
- "id": 7183,
- "name": "№7183 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.53865225529478",
- "latitude": "55.376001016228166",
- "address": "Западная улица, 9А",
- "city_id": 57,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-07-15-08-56-iim.jpg",
- "trainings": 0
- },
- {
- "id": 7184,
- "name": "№7184 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.53623721957399",
- "latitude": "55.37764986176041",
- "address": "Западная улица, 8",
- "city_id": 57,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-07-15-08-05-c8k.jpg",
- "trainings": 0
- },
- {
- "id": 7185,
- "name": "№7185 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.60027211904526",
- "latitude": "56.91079465761187",
- "address": "ул. Бакинских Комиссаров, д. 118",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-07-19-08-37-3jy.jpg",
- "trainings": 0
- },
- {
- "id": 7186,
- "name": "№7186 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.18299544774629",
- "latitude": "55.839311098800714",
- "address": "Нахабино!! улица Чкалова 3",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-08-04-08-45-bmy.jpg",
- "trainings": 1
- },
- {
- "id": 7187,
- "name": "№7187 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.08752357959747",
- "latitude": "56.51874221460923",
- "address": "Сергиево-Посадский район, поселок Новый",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-08-09-08-57-oon.jpg",
- "trainings": 1
- },
- {
- "id": 7190,
- "name": "№7190 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.64381166666669",
- "latitude": "55.75982833333333",
- "address": "Чистопрудный бульвар д. 14 стр. 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-14-14-08-40-ejy.jpg",
- "trainings": 3
- },
- {
- "id": 7191,
- "name": "№7191 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.63746333333336",
- "latitude": "55.75534666666667",
- "address": "улица Забелина",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-14-14-08-55-klm.jpg",
- "trainings": 0
- },
- {
- "id": 7195,
- "name": "№7195 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.49367499999994",
- "latitude": "59.84144800000001",
- "address": "Шлиссельбургский проспект 10 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-10-10-08-20-2uv.jpg",
- "trainings": 1
- },
- {
- "id": 7197,
- "name": "№7197 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "73.30827393519598",
- "latitude": "55.05044864723104",
- "address": "Белозёрова 20",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-10-12-08-26-7ud.jpg",
- "trainings": 1
- },
- {
- "id": 7199,
- "name": "№7199 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.587749",
- "latitude": "56.890637",
- "address": "ул. Банникова, д. 2 (гимназия №144)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-01-21-01-34-4wf.jpg",
- "trainings": 0
- },
- {
- "id": 7200,
- "name": "№7200 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.65794497728348",
- "latitude": "56.83940748205988",
- "address": "ул. Малышева, д. 138А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-10-18-08-09-rp-.jpg",
- "trainings": 0
- },
- {
- "id": 7201,
- "name": "№7201 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.500664492065425",
- "latitude": "56.88165248615808",
- "address": "Техническая 154",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-11-17-08-43-vkp.jpg",
- "trainings": 1
- },
- {
- "id": 7202,
- "name": "№7202 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.62901660251623",
- "latitude": "56.83019005561006",
- "address": "ул. Куйбышева, д. 111",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-11-19-08-26-529.jpg",
- "trainings": 0
- },
- {
- "id": 7204,
- "name": "№7204 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.593276666666725",
- "latitude": "56.985530000000004",
- "address": "56.985719, 60.593218 (координаты GPS)",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-12-17-08-52-vol.jpg",
- "trainings": 2
- },
- {
- "id": 7209,
- "name": "№7209 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.59215039014816",
- "latitude": "56.97833894593781",
- "address": "ул. Чкалова, д. 60 (напротив, в городском парке возле вагончика)",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-12-13-08-14-gon.jpg",
- "trainings": 0
- },
- {
- "id": 7210,
- "name": "№7210 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.581016519821105",
- "latitude": "56.97442918520105",
- "address": "ул. Орджоникидзе, д. 16 (во дворе)",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-12-14-08-51-xqg.jpg",
- "trainings": 0
- },
- {
- "id": 7211,
- "name": "№7211 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.42385968565941",
- "latitude": "55.75471882456653",
- "address": "Парк Победы",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-12-15-08-21-nwf.jpg",
- "trainings": 0
- },
- {
- "id": 7212,
- "name": "№7212 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "47.248796224594116",
- "latitude": "56.142303920790724",
- "address": "Дзержинского 20",
- "city_id": 146,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-12-23-08-07-6kw.jpg",
- "trainings": 0
- },
- {
- "id": 7216,
- "name": "№7216 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "86.05908393859863",
- "latitude": "55.33942089673794",
- "address": "ул, Мартемьянова 85",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-13-09-08-18-jnc.jpg",
- "trainings": 2
- },
- {
- "id": 7217,
- "name": "№7217 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.71576009468993",
- "latitude": "43.578411861015404",
- "address": "Морской порт",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-13-11-08-47-1jm.jpg",
- "trainings": 12
- },
- {
- "id": 7218,
- "name": "№7218 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "86.07670068740845",
- "latitude": "55.33529292465276",
- "address": "ул, Федоровского",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-13-13-08-43-_br.jpg",
- "trainings": 0
- },
- {
- "id": 7221,
- "name": "№7221 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "27.617649435997013",
- "latitude": "53.90780177531729",
- "address": "Минск, Столетова, 1",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-13-16-08-53-ldj.jpg",
- "trainings": 11
- },
- {
- "id": 7226,
- "name": "№7226 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.3495888710022",
- "latitude": "55.81567264156994",
- "address": "Вокзальная улица, 27",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-13-18-08-50-bag.jpg",
- "trainings": 1
- },
- {
- "id": 7227,
- "name": "№7227 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.34581852037661",
- "latitude": "55.814134528728644",
- "address": "Ильинское шоссе, 4",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-13-18-08-24-diw.jpg",
- "trainings": 0
- },
- {
- "id": 7229,
- "name": "№7229 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.66480695711675",
- "latitude": "55.81011269612141",
- "address": "4 лучевой просек",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-13-19-08-32-9ey.jpg",
- "trainings": 4
- },
- {
- "id": 7230,
- "name": "№7230 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.77672517299652",
- "latitude": "57.71408285186949",
- "address": "Училище 14",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-14-10-08-51-jjb.jpg",
- "trainings": 0
- },
- {
- "id": 7232,
- "name": "№7232 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.46108293533325",
- "latitude": "55.71436588274153",
- "address": "ул. кременчугская, д. 36",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-14-20-08-50-9hq.jpg",
- "trainings": 0
- },
- {
- "id": 7234,
- "name": "№7234 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.45227003097534",
- "latitude": "52.033399591632076",
- "address": "Горбунова-Пр.Советов",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-15-05-08-21-8js.jpg",
- "trainings": 0
- },
- {
- "id": 7235,
- "name": "№7235 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "92.89454350000005",
- "latitude": "55.99743300000001",
- "address": "Капитанская 12",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-15-14-08-51-ixw.jpg",
- "trainings": 1
- },
- {
- "id": 7237,
- "name": "№7237 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.61227254100038",
- "latitude": "56.90484032371103",
- "address": "проспект Космонавтов, д. 49",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-15-18-08-07-io5.jpg",
- "trainings": 0
- },
- {
- "id": 7238,
- "name": "№7238 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.72151206567605",
- "latitude": "56.87639590738619",
- "address": "ул. Рыбаков, д. 61 (недалеко от озера)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-15-18-08-44-s1s.png",
- "trainings": 0
- },
- {
- "id": 7239,
- "name": "№7239 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.61701780104977",
- "latitude": "56.90703037234259",
- "address": "ул. Тепличная, д. 1 («Северное гетто»)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-15-18-08-38-o_o.jpg",
- "trainings": 0
- },
- {
- "id": 7240,
- "name": "№7240 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.3333655152054",
- "latitude": "55.82194985857571",
- "address": "Пионерская улица, 9",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-15-20-08-51-5lr.jpg",
- "trainings": 0
- },
- {
- "id": 7242,
- "name": "№7242 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.68253684043884",
- "latitude": "55.70443472924872",
- "address": "улица Петра Романова 20",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-16-12-08-11-sdz.jpg",
- "trainings": 0
- },
- {
- "id": 7243,
- "name": "№7243 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "132.88820028305054",
- "latitude": "48.78528654574487",
- "address": "Московская, 1а",
- "city_id": 633,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-16-16-08-46-7ju.jpg",
- "trainings": 0
- },
- {
- "id": 7244,
- "name": "№7244 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.52151930332184",
- "latitude": "52.027141973117764",
- "address": "Ангарская, 6",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-17-05-08-02-h3l.jpg",
- "trainings": 1
- },
- {
- "id": 7245,
- "name": "№7245 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "60.64345836639404",
- "latitude": "56.89398029258239",
- "address": "Краснофлотцев 48",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-17-10-08-48-4xh.jpg",
- "trainings": 3
- },
- {
- "id": 7246,
- "name": "№7246 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.76024580001831",
- "latitude": "55.670590626865746",
- "address": "Новороссийская улица 32",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-17-15-08-48-6zg.jpg",
- "trainings": 1
- },
- {
- "id": 7247,
- "name": "№7247 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.380324721336365",
- "latitude": "59.838880420666314",
- "address": "Купчинская ул., 15 к. 3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-17-21-08-34-spq.jpg",
- "trainings": 1
- },
- {
- "id": 7248,
- "name": "№7248 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.57520599999998",
- "latitude": "50.5843084",
- "address": "Дегтярёва 121",
- "city_id": 626,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-18-11-08-50-afc.jpg",
- "trainings": 3
- },
- {
- "id": 7249,
- "name": "№7249 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.845255613327026",
- "latitude": "57.62722964140858",
- "address": "Парк, пересечение проспекта Ленина и улицы Свободы",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-18-12-08-13-xbv.jpg",
- "trainings": 0
- },
- {
- "id": 7251,
- "name": "№7251 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "82.95168042182922",
- "latitude": "54.96912809624219",
- "address": "аникина 2",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-18-15-08-45-r6p.jpg",
- "trainings": 0
- },
- {
- "id": 7256,
- "name": "№7256 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.62795788049698",
- "latitude": "56.90162385791672",
- "address": "ул. Шефская, д. 62 (во дворе)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-19-13-08-52-ons.jpg",
- "trainings": 0
- },
- {
- "id": 7257,
- "name": "№7257 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.63105583190918",
- "latitude": "56.90221851972618",
- "address": "ул. Ульяновская, д. 13",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-19-13-08-25-euc.jpg",
- "trainings": 0
- },
- {
- "id": 7258,
- "name": "№7258 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.64477130770683",
- "latitude": "56.89493545754622",
- "address": "ул. Краснофлотцев, д. 59",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-19-13-08-52-1bb.jpg",
- "trainings": 0
- },
- {
- "id": 7259,
- "name": "№7259 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.88418126106262",
- "latitude": "56.786518093356605",
- "address": "пос. Исток, ул. Главная, д. 1а (рядом на стадионе)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-19-13-08-18-tkf.jpg",
- "trainings": 0
- },
- {
- "id": 7260,
- "name": "№7260 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.51450854365544",
- "latitude": "56.68877584363147",
- "address": "пос. Горный Щит, ул. Ленина, д. 15а",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-19-13-08-04-xuy.jpg",
- "trainings": 0
- },
- {
- "id": 7262,
- "name": "№7262 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.27347469329834",
- "latitude": "57.95446767440653",
- "address": "Героев Хасана, 111/2",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-19-20-08-04-nii.jpg",
- "trainings": 1
- },
- {
- "id": 7263,
- "name": "№7263 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.088236999999936",
- "latitude": "58.043206",
- "address": "Хабаровская 173",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-19-21-08-11-93p.jpg",
- "trainings": 0
- },
- {
- "id": 7264,
- "name": "№7264 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.60410025715828",
- "latitude": "53.87690032205433",
- "address": "Ванеева, 32",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-19-22-08-22-b51.jpg",
- "trainings": 0
- },
- {
- "id": 7265,
- "name": "№7265 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "27.692992687225342",
- "latitude": "53.87864279172292",
- "address": "Герасименко, 9",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-19-23-08-02-uss.jpg",
- "trainings": 1
- },
- {
- "id": 7266,
- "name": "№7266 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.29418409999994",
- "latitude": "55.9431988",
- "address": "Сходня, парк Величко",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-20-10-08-05-5gj.jpg",
- "trainings": 5
- },
- {
- "id": 7271,
- "name": "№7271 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.22555396693417",
- "latitude": "55.998815992415246",
- "address": "Юности 11",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-21-22-08-58-e1h.jpg",
- "trainings": 1
- },
- {
- "id": 7272,
- "name": "№7272 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.64594745635986",
- "latitude": "56.86324963275733",
- "address": "Сулимова 21а",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-22-12-08-07-iz-.jpg",
- "trainings": 0
- },
- {
- "id": 7273,
- "name": "№7273 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.6218022108078",
- "latitude": "56.913242947541356",
- "address": "Турник в лесу (лесопарк «Пышминские озерки»)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-22-18-08-29-vj6.jpg",
- "trainings": 0
- },
- {
- "id": 7275,
- "name": "№7275 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.61730280518532",
- "latitude": "56.911116810196724",
- "address": "«Касторама» (во дворе) [ул. Шефская д. 107]",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-22-19-08-19-upv.jpg",
- "trainings": 0
- },
- {
- "id": 7278,
- "name": "№7278 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.413532733917236",
- "latitude": "55.77021252865365",
- "address": "ул. Крылатская, д. 29 к 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-22-22-08-38-fne.jpg",
- "trainings": 0
- },
- {
- "id": 7279,
- "name": "№7279 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.745429277420044",
- "latitude": "55.658632958548104",
- "address": "метро братиславская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-22-22-08-45-szy.jpg",
- "trainings": 0
- },
- {
- "id": 7281,
- "name": "№7281 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "93.5318666666667",
- "latitude": "56.24374666666667",
- "address": "Березовский район",
- "city_id": 7418,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-24-13-08-57-yk2.jpg",
- "trainings": 0
- },
- {
- "id": 7282,
- "name": "№7282 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.670104801654816",
- "latitude": "55.586678316737675",
- "address": "улица Лебедянская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-13-22-09-08-iuy.jpg",
- "trainings": 2
- },
- {
- "id": 7283,
- "name": "№7283 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "132.91894912719727",
- "latitude": "48.78731320014923",
- "address": "Биршоссе, 2",
- "city_id": 633,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-23-16-08-34-krg.jpg",
- "trainings": 1
- },
- {
- "id": 7284,
- "name": "№7284 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.68890178203583",
- "latitude": "53.93796987994744",
- "address": "Одоев",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-23-17-08-28-ykf.jpg",
- "trainings": 0
- },
- {
- "id": 7285,
- "name": "№7285 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.94373822212219",
- "latitude": "57.75850040403908",
- "address": "улица Нижняя Дебря 19/2",
- "city_id": 64,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-23-20-08-55-x6r.jpg",
- "trainings": 0
- },
- {
- "id": 7286,
- "name": "№7286 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.779463827610016",
- "latitude": "55.78892292167725",
- "address": "Заводской пр-д 53/2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-23-22-08-55-d89.jpg",
- "trainings": 0
- },
- {
- "id": 7287,
- "name": "№7287 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "113.45568581481939",
- "latitude": "52.04815325012899",
- "address": "Ломоносова, 42",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-24-04-08-57-atq.jpg",
- "trainings": 0
- },
- {
- "id": 7288,
- "name": "№7288 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "26.203169500000058",
- "latitude": "50.6374605",
- "address": "Князя Острозького",
- "city_id": 532,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-24-10-08-28-5cy.jpg",
- "trainings": 0
- },
- {
- "id": 7289,
- "name": "№7289 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.25108480453491",
- "latitude": "50.00845611556843",
- "address": "парк Молодежный",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-24-11-08-20-xa1.jpg",
- "trainings": 1
- },
- {
- "id": 7291,
- "name": "№7291 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.624153816671765",
- "latitude": "55.70050641314017",
- "address": "Варшавское шоссе, 9с1Б",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-24-18-08-51-r-v.jpg",
- "trainings": 0
- },
- {
- "id": 7295,
- "name": "№7295 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "113.4205797314644",
- "latitude": "52.04881052261083",
- "address": "Городской пляж",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-25-09-08-15-r7v.jpg",
- "trainings": 2
- },
- {
- "id": 7296,
- "name": "№7296 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.49228590726852",
- "latitude": "52.03151183693957",
- "address": "Журавлёва, 3",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-25-10-08-39-se4.jpg",
- "trainings": 0
- },
- {
- "id": 7297,
- "name": "№7297 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.63416216522455",
- "latitude": "56.82711674223134",
- "address": "Парк им. 50-летия Советской армии",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-25-10-08-21-zot.jpg",
- "trainings": 0
- },
- {
- "id": 7298,
- "name": "№7298 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.64431870146632",
- "latitude": "55.777241011327455",
- "address": "Живарёв пер. 31",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-25-14-08-29-2-8.jpg",
- "trainings": 0
- },
- {
- "id": 7299,
- "name": "№7299 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.22125053405762",
- "latitude": "55.986502644508334",
- "address": "парк победы, пляж",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-25-22-08-04-tgy.jpg",
- "trainings": 3
- },
- {
- "id": 7300,
- "name": "№7300 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.230525612831116",
- "latitude": "55.99753798265103",
- "address": "лицей 1557, рядом с корпусом 504",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-25-22-08-58-qyc.jpg",
- "trainings": 0
- },
- {
- "id": 7302,
- "name": "№7302 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.82745326999998",
- "latitude": "55.77812842",
- "address": "ул.Челябинская ,15",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-28-15-08-18-dku.jpg",
- "trainings": 0
- },
- {
- "id": 7303,
- "name": "№7303 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.75503158569336",
- "latitude": "55.60906896743161",
- "address": "Ул. Воронежская, 46к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-27-14-08-32-fm4.jpg",
- "trainings": 1
- },
- {
- "id": 7304,
- "name": "№7304 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "113.49125329999993",
- "latitude": "52.05012360000001",
- "address": "Шилова 43",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-27-08-08-52-jwg.jpg",
- "trainings": 2
- },
- {
- "id": 7305,
- "name": "№7305 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.41027073851001",
- "latitude": "55.88975478847226",
- "address": "юбилейный пр. дом 49",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-27-09-08-10-r3b.jpg",
- "trainings": 1
- },
- {
- "id": 7306,
- "name": "№7306 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "56.24043343782046",
- "latitude": "58.00359365264561",
- "address": "Краснова 1а",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-27-12-08-42-tg-.jpeg",
- "trainings": 2
- },
- {
- "id": 7307,
- "name": "№7307 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.325870513916016",
- "latitude": "59.998878828781535",
- "address": "Проспект Энгельса, 4к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-27-14-08-40-rfi.jpg",
- "trainings": 2
- },
- {
- "id": 7308,
- "name": "№7308 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.456506967675523",
- "latitude": "60.032363794645036",
- "address": "Муринская дорога, 68",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-27-14-08-41-3at.jpeg",
- "trainings": 2
- },
- {
- "id": 7311,
- "name": "№7311 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.344678163528442",
- "latitude": "60.039284436224115",
- "address": "художников 14",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-27-23-08-44-koz.jpg",
- "trainings": 0
- },
- {
- "id": 7317,
- "name": "№7317 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.741395235061646",
- "latitude": "55.59903226199619",
- "address": "Гурьевский пр-д, 9к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-28-15-08-16-l2i.jpg",
- "trainings": 2
- },
- {
- "id": 7318,
- "name": "№7318 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.0204539373517",
- "latitude": "55.03034002633144",
- "address": "Владимира Высоцкого 43",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-28-18-08-28-box.jpg",
- "trainings": 2
- },
- {
- "id": 7323,
- "name": "№7323 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.789320945739746",
- "latitude": "44.69239312464674",
- "address": "Пр. Ленина, Мал. Земля - Ансамбль Новороссийского Государственного Исторического Музея-Заповедника",
- "city_id": 88,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-28-22-08-22-bow.jpg",
- "trainings": 2
- },
- {
- "id": 7326,
- "name": "№7326 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.619200468063354",
- "latitude": "56.79722414648036",
- "address": "Юлиуса Фучика",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-29-20-08-14-4mm.jpg",
- "trainings": 13
- },
- {
- "id": 7327,
- "name": "№7327 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.59520411491394",
- "latitude": "55.83256264928328",
- "address": "Малая ботаническая улица дом 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-30-10-08-24-sh4.jpg",
- "trainings": 0
- },
- {
- "id": 7328,
- "name": "№7328 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.708468437194824",
- "latitude": "55.79921252264712",
- "address": "1-st Bukhvostova St, PREOBRAZHENSKOYE DISTRICT",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-30-13-08-51-u14.png",
- "trainings": 1
- },
- {
- "id": 7329,
- "name": "№7329 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.12510742199561",
- "latitude": "55.60942624791744",
- "address": "Комсомольская",
- "city_id": 7730,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-30-14-08-36-m_8.jpg",
- "trainings": 0
- },
- {
- "id": 7330,
- "name": "№7330 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.319695389935305",
- "latitude": "59.96093913526162",
- "address": "ул. Мира",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-30-14-08-59-_-s.jpg",
- "trainings": 2
- },
- {
- "id": 7331,
- "name": "№7331 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "13.359332084655762",
- "latitude": "52.516952093701605",
- "address": "John-Foster-Dulles-Allee ",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-30-14-08-10-gv4.jpg",
- "trainings": 0
- },
- {
- "id": 7332,
- "name": "№7332 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "28.30649435520172",
- "latitude": "57.82406325501506",
- "address": "Народная",
- "city_id": 107,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-30-17-08-31-hjh.jpg",
- "trainings": 1
- },
- {
- "id": 7333,
- "name": "№7333 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "24.138162700000066",
- "latitude": "56.9452906",
- "address": "Miera dārzs",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-30-21-08-08-aww.jpg",
- "trainings": 2
- },
- {
- "id": 7335,
- "name": "№7335 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.18544840812683",
- "latitude": "56.740705863490184",
- "address": "стадион Юдекон",
- "city_id": 37,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-30-23-08-43-auh.jpg",
- "trainings": 0
- },
- {
- "id": 7336,
- "name": "№7336 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.66090750694275",
- "latitude": "55.64226524277329",
- "address": "территория школы 2000",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-30-23-08-24-qlz.jpg",
- "trainings": 0
- },
- {
- "id": 7337,
- "name": "№7337 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.634603559949028",
- "latitude": "50.13654116679559",
- "address": " Vitapark in Niddapark",
- "city_id": 7518,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-31-07-08-04-5vg.jpg",
- "trainings": 0
- },
- {
- "id": 7339,
- "name": "№7339 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.23690959999999",
- "latitude": "55.8343968",
- "address": "Сквер им. С.Дежнева ул. Дежнева (Опалиха), 15 Красногорск",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-31-13-08-43-txq.jpg",
- "trainings": 0
- },
- {
- "id": 7340,
- "name": "№7340 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.236144840717316",
- "latitude": "55.83153228260021",
- "address": "улица Геологов, за Магнитом.",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-31-13-08-50-n_f.jpg",
- "trainings": 0
- },
- {
- "id": 7341,
- "name": "№7341 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.60911405086517",
- "latitude": "53.60551863579704",
- "address": "Теплое",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-31-14-08-05-ba7.jpg",
- "trainings": 0
- },
- {
- "id": 7342,
- "name": "№7342 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.01071047782898",
- "latitude": "53.55829575798204",
- "address": "Волово",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-31-14-08-07-uo0.jpg",
- "trainings": 0
- },
- {
- "id": 7343,
- "name": "№7343 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.61034361719669",
- "latitude": "55.731254058319124",
- "address": "Крымский Вал, 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-31-21-08-31-xfe.jpg",
- "trainings": 1
- },
- {
- "id": 7344,
- "name": "№7344 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.61810598518059",
- "latitude": "55.735628058702716",
- "address": "Большая Полянка, 28 к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/08/2017-08-31-21-08-25-hhv.jpg",
- "trainings": 0
- },
- {
- "id": 7345,
- "name": "№7345 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "52.426267079901095",
- "latitude": "55.74635726407539",
- "address": "Глобус",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-02-01-09-27-c8p.jpg",
- "trainings": 0
- },
- {
- "id": 7346,
- "name": "№7346 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.81753530000003",
- "latitude": "51.2903596",
- "address": "Приборостроитель, 16",
- "city_id": 602,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-02-12-09-58-xnd.jpeg",
- "trainings": 1
- },
- {
- "id": 7347,
- "name": "№7347 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.53002643585205",
- "latitude": "55.66697829543464",
- "address": "Воронцовский парк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-02-12-09-39-cbc.jpg",
- "trainings": 0
- },
- {
- "id": 7348,
- "name": "№7348 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "36.41313850879669",
- "latitude": "49.931572398297156",
- "address": "Электровозная 15, \"Торсион\"",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-30-13-09-15-9fn.png",
- "trainings": 1
- },
- {
- "id": 7351,
- "name": "№7351 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "32.031235098838806",
- "latitude": "46.94276941170447",
- "address": "ПКиО им. Ленинского комсомола",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-03-12-09-25-khu.jpg",
- "trainings": 1
- },
- {
- "id": 7352,
- "name": "№7352 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "32.03016221523285",
- "latitude": "46.94253135249092",
- "address": "Школа №19",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-03-12-09-44-rum.jpg",
- "trainings": 2
- },
- {
- "id": 7353,
- "name": "№7353 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "32.03099101781845",
- "latitude": "46.94326383899634",
- "address": "ПКиО им. Ленинского комсомола",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-03-12-09-02-wqx.jpg",
- "trainings": 1
- },
- {
- "id": 7354,
- "name": "№7354 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "34.593313336372375",
- "latitude": "45.05781007166636",
- "address": "Луначарского 48",
- "city_id": 8711,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-10-00-01-56-igy.jpg",
- "trainings": 1
- },
- {
- "id": 7355,
- "name": "№7355 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.61567336320877",
- "latitude": "56.90871817106935",
- "address": "ул. Парниковая, д. 5",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-03-14-09-38-5xe.jpg",
- "trainings": 0
- },
- {
- "id": 7356,
- "name": "№7356 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.620528161525726",
- "latitude": "56.90401123596004",
- "address": "ул. Шефская, д. 87/2",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-03-14-09-25-dt_.jpg",
- "trainings": 0
- },
- {
- "id": 7357,
- "name": "№7357 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.62365858413091",
- "latitude": "56.90855743165172",
- "address": "ул. Совхозная, д. 10",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-03-14-09-23-dwr.jpg",
- "trainings": 0
- },
- {
- "id": 7358,
- "name": "№7358 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.60644602446746",
- "latitude": "56.88877227579047",
- "address": "ул. Кузнецова, д. 5",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-03-14-09-30-y3u.jpg",
- "trainings": 0
- },
- {
- "id": 7359,
- "name": "№7359 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.49701464176178",
- "latitude": "52.0618514653189",
- "address": "Коханского, 16",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-03-17-09-48-66c.jpg",
- "trainings": 1
- },
- {
- "id": 7360,
- "name": "№7360 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.69154600740967",
- "latitude": "54.99597525888685",
- "address": "жко аэропорта 25/1",
- "city_id": 8234,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-03-19-09-46-5re.jpg",
- "trainings": 0
- },
- {
- "id": 7361,
- "name": "№7361 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.520325303077698",
- "latitude": "50.4024932323296",
- "address": "голосеевская 8",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-05-19-09-12-uk_.jpg",
- "trainings": 0
- },
- {
- "id": 7362,
- "name": "№7362 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "45.40208626538515",
- "latitude": "50.08364549740715",
- "address": "Советская 36",
- "city_id": 743,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-04-13-09-09-d1c.jpg",
- "trainings": 1
- },
- {
- "id": 7364,
- "name": "№7364 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.78326204419136",
- "latitude": "59.648676614088714",
- "address": "ул. Кузнецова, д. 15",
- "city_id": 8063,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-05-07-09-40-cot.jpg",
- "trainings": 1
- },
- {
- "id": 7365,
- "name": "№7365 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.693431973457336",
- "latitude": "55.77622756330102",
- "address": "17 Bolshaya Pochtovaya ul, BASMANNY DISTRICT",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-05-11-09-15-z2q.png",
- "trainings": 0
- },
- {
- "id": 7366,
- "name": "№7366 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.520652532577515",
- "latitude": "50.403012952269236",
- "address": "Голосеевская 8",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-05-19-09-28-ttc.jpg",
- "trainings": 0
- },
- {
- "id": 7367,
- "name": "№7367 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.522812483328266",
- "latitude": "50.40296864480023",
- "address": "голосеевская 3",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-05-19-09-30-p57.jpg",
- "trainings": 0
- },
- {
- "id": 7368,
- "name": "№7368 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.446091199999955",
- "latitude": "50.4493399",
- "address": "Металлистов 15",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-05-19-09-05-ybf.jpg",
- "trainings": 0
- },
- {
- "id": 7369,
- "name": "№7369 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.52066057920456",
- "latitude": "50.40483363670745",
- "address": "Голосеевский проспект 5",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-05-19-09-31-n82.jpg",
- "trainings": 0
- },
- {
- "id": 7371,
- "name": "№7371 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.20996866969756",
- "latitude": "56.00170537359017",
- "address": "площадь юности",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-06-22-09-28-ibz.jpg",
- "trainings": 1
- },
- {
- "id": 7372,
- "name": "№7372 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.340469777584076",
- "latitude": "60.03868165053071",
- "address": "учебный переулок 10 к3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-07-15-09-10-vtu.jpg",
- "trainings": 1
- },
- {
- "id": 7375,
- "name": "№7375 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "48.05620870000007",
- "latitude": "46.3102093",
- "address": "ул. Рождественского, 16",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-08-08-09-54-uau.jpg",
- "trainings": 1
- },
- {
- "id": 7379,
- "name": "№7379 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.703495502471924",
- "latitude": "47.234824738461754",
- "address": "Соборный, 79",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-08-20-09-02-g71.jpg",
- "trainings": 1
- },
- {
- "id": 7380,
- "name": "№7380 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "92.8855848312378",
- "latitude": "56.00964082734586",
- "address": "Урицкого 26",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-09-05-09-41-gkk.jpg",
- "trainings": 1
- },
- {
- "id": 7382,
- "name": "№7382 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.88339225362506",
- "latitude": "57.33858810711066",
- "address": "Стадион Машиностроитель",
- "city_id": 8219,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-09-16-09-19-yrs.jpg",
- "trainings": 2
- },
- {
- "id": 7385,
- "name": "№7385 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.625630996364634",
- "latitude": "56.905832489061986",
- "address": "ул. Фрезеровщиков, д. 39 А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-10-15-09-26-et1.jpg",
- "trainings": 0
- },
- {
- "id": 7387,
- "name": "№7387 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.87246662378311",
- "latitude": "57.63840957428657",
- "address": "проспект Ленина, дом 19",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-10-18-09-24-l9r.jpg",
- "trainings": 3
- },
- {
- "id": 7388,
- "name": "№7388 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.878992438316345",
- "latitude": "57.639641367659536",
- "address": "Школа 37",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-10-19-09-13-fcj.jpg",
- "trainings": 0
- },
- {
- "id": 7390,
- "name": "№7390 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.482257843017578",
- "latitude": "48.181625571568674",
- "address": "Hitlstrasse, 80997",
- "city_id": 7469,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-10-20-09-13-eon.jpg",
- "trainings": 2
- },
- {
- "id": 7391,
- "name": "№7391 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.96832084655762",
- "latitude": "54.85630563847436",
- "address": "Софийская ",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-11-04-09-19--pu.jpg",
- "trainings": 1
- },
- {
- "id": 7393,
- "name": "№7393 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.673261642456055",
- "latitude": "47.231575605425384",
- "address": "Муравьева 41",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-11-12-09-38-eyu.jpg",
- "trainings": 0
- },
- {
- "id": 7394,
- "name": "№7394 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.49412200000006",
- "latitude": "54.0271076",
- "address": "Парк \"Лесная поляна\"",
- "city_id": 4428,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-11-14-09-02-c6g.jpg",
- "trainings": 2
- },
- {
- "id": 7395,
- "name": "№7395 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.54895866007996",
- "latitude": "55.80534240579302",
- "address": "Коккинаки",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-11-16-09-15-xje.jpg",
- "trainings": 0
- },
- {
- "id": 7396,
- "name": "№7396 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.726202964782715",
- "latitude": "49.634869255985556",
- "address": "пер. Стадионный",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-11-18-09-31-yyh.jpg",
- "trainings": 0
- },
- {
- "id": 7397,
- "name": "№7397 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.905519599999934",
- "latitude": "56.8284807",
- "address": "Южный парк Тверь Тверская обл. Россия 170043",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-12-03-09-20-a0q.jpg",
- "trainings": 2
- },
- {
- "id": 7398,
- "name": "№7398 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "69.47922348976135",
- "latitude": "56.10822374006097",
- "address": "Ishim, ul. Karla Marksa 32",
- "city_id": 8083,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-12-14-09-05-kqk.jpg",
- "trainings": 3
- },
- {
- "id": 7399,
- "name": "№7399 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.144654599999967",
- "latitude": "59.83072799999999",
- "address": "Комсомольская 2 -я, 40 корп.3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-12-18-09-46-x9f.jpg",
- "trainings": 1
- },
- {
- "id": 7414,
- "name": "№7414 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.57002335714719",
- "latitude": "55.831654870837056",
- "address": "Дмитровское шоссе 39 к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-13-11-09-04-ptm.jpg",
- "trainings": 0
- },
- {
- "id": 7415,
- "name": "№7415 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.57053181349181",
- "latitude": "55.82918028988746",
- "address": "Дмитровское шоссе 31",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-13-11-09-23-h3m.jpg",
- "trainings": 0
- },
- {
- "id": 7416,
- "name": "№7416 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.20496503725667",
- "latitude": "55.988768465604544",
- "address": "вниз от корпуса 451, рядом с мостиком в МИЭТовский лес",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-13-23-09-39-3by.jpg",
- "trainings": 0
- },
- {
- "id": 7417,
- "name": "№7417 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.21031604424138",
- "latitude": "55.99085383764128",
- "address": "корпус 456",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-13-23-09-27-5z5.jpg",
- "trainings": 0
- },
- {
- "id": 7418,
- "name": "№7418 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.205680310726166",
- "latitude": "55.99822796167854",
- "address": "Возле корпуса 414",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-13-23-09-39-fhx.jpg",
- "trainings": 4
- },
- {
- "id": 7419,
- "name": "№7419 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.67929136753082",
- "latitude": "55.885300810630724",
- "address": "Проектируемый проезд № 5016",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-14-11-09-10-t1f.jpg",
- "trainings": 3
- },
- {
- "id": 7420,
- "name": "№7420 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.69784152507782",
- "latitude": "55.88750307368374",
- "address": "Джамгаровский парк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-14-11-09-24-8fa.jpg",
- "trainings": 5
- },
- {
- "id": 7424,
- "name": "№7424 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "92.95746266841888",
- "latitude": "56.05546227966241",
- "address": "Металлургов проспект 14а",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-14-18-09-28-1n5.jpg",
- "trainings": 1
- },
- {
- "id": 7425,
- "name": "№7425 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "40.32288998365402",
- "latitude": "43.65971062549499",
- "address": "Село Эсто-Садок, улица Сулимовка, 49",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-14-18-09-34-mqo.jpg",
- "trainings": 1
- },
- {
- "id": 7427,
- "name": "№7427 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.517787",
- "latitude": "50.402255",
- "address": "Киев",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-15-08-09-10-ltv.jpg",
- "trainings": 0
- },
- {
- "id": 7428,
- "name": "№7428 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "103.84741198271513",
- "latitude": "52.50704028346484",
- "address": "19 микрорайон",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-15-20-09-13-snc.jpg",
- "trainings": 1
- },
- {
- "id": 7430,
- "name": "№7430 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.64738368988037",
- "latitude": "47.22965225793277",
- "address": "Ботанический сад",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-15-12-09-41-4px.jpg",
- "trainings": 0
- },
- {
- "id": 7432,
- "name": "№7432 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.94069339999999",
- "latitude": "45.0373454",
- "address": "Ленина 367",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-15-13-09-54-8wh.jpg",
- "trainings": 1
- },
- {
- "id": 7433,
- "name": "№7433 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "65.62386989593506",
- "latitude": "57.1265154176828",
- "address": "Тюмень, Гилёвская Роща, 1",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-15-14-09-52-gxw.jpg",
- "trainings": 0
- },
- {
- "id": 7434,
- "name": "№7434 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "92.91534899999999",
- "latitude": "55.996092",
- "address": "Красноярск, ул. Побежимова, 46а",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-15-15-09-13-pzs.jpg",
- "trainings": 1
- },
- {
- "id": 7435,
- "name": "№7435 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.601559579372406",
- "latitude": "56.8255111352146",
- "address": "Университетский переулок, д. 3",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-15-18-09-57-ayd.jpg",
- "trainings": 0
- },
- {
- "id": 7438,
- "name": "№7438 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "29.74320888519287",
- "latitude": "62.60047119003214",
- "address": "Kuntopolku 6",
- "city_id": 702,
- "country_id": 23,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-16-02-09-12-4bl.jpg",
- "trainings": 1
- },
- {
- "id": 7439,
- "name": "№7439 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.519117",
- "latitude": "50.401405",
- "address": "Киев голосеевская 13",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-16-08-09-32-ewg.jpg",
- "trainings": 0
- },
- {
- "id": 7440,
- "name": "№7440 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "25.366744995117188",
- "latitude": "57.311945738616096",
- "address": "Дарза 4",
- "city_id": 431,
- "country_id": 13,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-16-13-09-56-cmv.jpg",
- "trainings": 0
- },
- {
- "id": 7441,
- "name": "№7441 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "86.12725496292114",
- "latitude": "55.34045205987094",
- "address": "Ул.Гагарина 125",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-16-15-09-29-r7u.jpg",
- "trainings": 0
- },
- {
- "id": 7442,
- "name": "№7442 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "86.13050580024719",
- "latitude": "55.34363690313674",
- "address": "Ул. Тухачевского 93/2",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-16-15-09-31-won.jpg",
- "trainings": 0
- },
- {
- "id": 7443,
- "name": "№7443 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "86.09658122062683",
- "latitude": "55.350115621443884",
- "address": "Ул. Мичурина 13",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-16-15-09-23-k4l.jpg",
- "trainings": 3
- },
- {
- "id": 7444,
- "name": "№7444 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "86.08825890000003",
- "latitude": "55.348548",
- "address": "Ул.Красная 14",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-16-15-09-59-gzx.jpg",
- "trainings": 0
- },
- {
- "id": 7445,
- "name": "№7445 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "86.08688200000006",
- "latitude": "55.348315",
- "address": "Ул. Красноармейская 138",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-16-15-09-54-vpo.jpg",
- "trainings": 0
- },
- {
- "id": 7446,
- "name": "№7446 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "86.08595300000002",
- "latitude": "55.34856800000001",
- "address": "Ул. Красноармейская 134А",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-16-16-09-38-mpr.jpg",
- "trainings": 0
- },
- {
- "id": 7447,
- "name": "№7447 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "86.08095700000001",
- "latitude": "55.345415",
- "address": "Ул. 50 Лет Октября, 32А",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-16-16-09-21-pcg.jpg",
- "trainings": 0
- },
- {
- "id": 7448,
- "name": "№7448 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "86.0862247",
- "latitude": "55.34335549999999",
- "address": "Пр-т Ленина 51А",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-16-16-09-49-j7j.jpg",
- "trainings": 0
- },
- {
- "id": 7449,
- "name": "№7449 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.47689723968506",
- "latitude": "55.85908970695837",
- "address": "Речной вокзал, Березовая аллея",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-16-16-09-42-0dc.jpg",
- "trainings": 2
- },
- {
- "id": 7450,
- "name": "№7450 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.504437",
- "latitude": "50.434770",
- "address": "Жилянская улица",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-16-16-09-58-8ck.jpg",
- "trainings": 1
- },
- {
- "id": 7451,
- "name": "№7451 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "43.88795210000001",
- "latitude": "56.3125712",
- "address": "Нижний Новгород, Якорная, 121",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-16-16-09-29-at9.jpg",
- "trainings": 2
- },
- {
- "id": 7455,
- "name": "№7455 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "82.83063769340515",
- "latitude": "55.05158317537561",
- "address": "Заельцовский бор",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-14-20-10-03-ls2.jpg",
- "trainings": 2
- },
- {
- "id": 7456,
- "name": "№7456 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "42.08215355873108",
- "latitude": "51.379106997750476",
- "address": "северный м-он дом 1",
- "city_id": 8087,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-17-11-09-30-xob.jpg",
- "trainings": 1
- },
- {
- "id": 7457,
- "name": "№7457 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.96353578567505",
- "latitude": "55.013069869380075",
- "address": "Никитина",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-17-12-09-19-azw.jpg",
- "trainings": 0
- },
- {
- "id": 7461,
- "name": "№7461 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.954129219055176",
- "latitude": "45.06736800184767",
- "address": "Казбекская 3",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-17-19-09-53-s3y.jpg",
- "trainings": 0
- },
- {
- "id": 7462,
- "name": "№7462 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.34057402610779",
- "latitude": "49.959523931856765",
- "address": "Ощэпкова",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-18-07-09-16-n-7.jpg",
- "trainings": 1
- },
- {
- "id": 7465,
- "name": "№7465 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.17497019999996",
- "latitude": "55.9898079",
- "address": "Школьное озеро",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-18-09-09-56-mrn.jpg",
- "trainings": 2
- },
- {
- "id": 7466,
- "name": "№7466 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.95794868469238",
- "latitude": "45.06712552109618",
- "address": "Петина 18/2",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-18-12-09-22-gmw.jpg",
- "trainings": 0
- },
- {
- "id": 7474,
- "name": "№7474 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.609538333333376",
- "latitude": "55.71173833333334",
- "address": "улица Серпуховский Вал 19",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-16-20-06-38-_sg.jpg",
- "trainings": 1
- },
- {
- "id": 7475,
- "name": "№7475 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.19863414764404",
- "latitude": "55.68196396451175",
- "address": "Лесная улица, дом 34",
- "city_id": 7981,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-20-18-09-48-z6h.jpg",
- "trainings": 0
- },
- {
- "id": 7479,
- "name": "№7479 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "32.964800784069894",
- "latitude": "60.980058787241326",
- "address": "Пролетарская, Ило-парк",
- "city_id": 8609,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-19-13-09-50-cr9.jpg",
- "trainings": 4
- },
- {
- "id": 7480,
- "name": "№7480 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.95350694656372",
- "latitude": "45.06241209717907",
- "address": "Ковалева 6/а",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-19-14-09-57-bqq.jpg",
- "trainings": 0
- },
- {
- "id": 7481,
- "name": "№7481 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.974388122558594",
- "latitude": "51.12696005983243",
- "address": "Ивнянский район, Село Самарино",
- "city_id": 626,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-19-17-09-56-h4p.jpg",
- "trainings": 0
- },
- {
- "id": 7482,
- "name": "№7482 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "58.01206111907959",
- "latitude": "48.457469617509176",
- "address": "Пр.Ленина 17",
- "city_id": 54,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-19-18-09-58-pvu.jpg",
- "trainings": 0
- },
- {
- "id": 7483,
- "name": "№7483 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "91.42183382062376",
- "latitude": "53.71705278831632",
- "address": "Хакасская, 165",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-19-18-09-09-67r.jpg",
- "trainings": 1
- },
- {
- "id": 7484,
- "name": "№7484 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "24.138529300689697",
- "latitude": "56.95977675533326",
- "address": "Tallinas Brivibas Terbatas",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-20-02-09-39-u20.jpg",
- "trainings": 1
- },
- {
- "id": 7485,
- "name": "№7485 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.34098720550537",
- "latitude": "53.59542117158147",
- "address": "Ленина",
- "city_id": 7746,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-20-08-09-23-fli.jpg",
- "trainings": 0
- },
- {
- "id": 7486,
- "name": "№7486 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.6152281165123",
- "latitude": "56.90358356964176",
- "address": "проспект Космонавтов, д. 74 (зайти в арку)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-20-09-09-15-7wn.jpg",
- "trainings": 0
- },
- {
- "id": 7487,
- "name": "№7487 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.61587989330292",
- "latitude": "56.89454284668276",
- "address": "ул. Вали Котика, д. 23",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-20-10-09-48-a_k.jpg",
- "trainings": 0
- },
- {
- "id": 7488,
- "name": "№7488 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.38404589682",
- "latitude": "60.044386211059035",
- "address": "ul. Demyana Bednogo, 22к5",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-20-10-09-57-w_b.jpg",
- "trainings": 0
- },
- {
- "id": 7489,
- "name": "№7489 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.62243622817232",
- "latitude": "56.89105581581449",
- "address": "ул. Баумана, д. 17 (гимназия №99)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-20-10-09-13-oxo.jpg",
- "trainings": 0
- },
- {
- "id": 7491,
- "name": "№7491 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.62750995159149",
- "latitude": "56.892655913026196",
- "address": "ул. Старых большевиков, д. 29А (две локации рядом)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-20-10-09-44-qbz.jpg",
- "trainings": 0
- },
- {
- "id": 7492,
- "name": "№7492 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.6194069981575",
- "latitude": "56.89937108765342",
- "address": "ул. Старых большевиков, д. 77",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-20-10-09-02-znf.jpg",
- "trainings": 0
- },
- {
- "id": 7493,
- "name": "№7493 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.62367171049118",
- "latitude": "56.89472450296829",
- "address": "ул. Красных командиров, д. 32",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-20-10-09-21-scr.jpg",
- "trainings": 0
- },
- {
- "id": 7494,
- "name": "№7494 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.381589922615035",
- "latitude": "60.04463136332931",
- "address": "Проспект Просвещения 70 к 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-20-11-09-54-mm-.jpg",
- "trainings": 2
- },
- {
- "id": 7495,
- "name": "№7495 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "60.61647802591324",
- "latitude": "56.891794455106094",
- "address": "проспект Космонавтов, д. 54А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-20-14-09-56-7qa.jpg",
- "trainings": 0
- },
- {
- "id": 7507,
- "name": "№7507 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.36139065027237",
- "latitude": "49.94864833929508",
- "address": "Пер. Северина Потоцкого 8",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-20-22-09-02-7za.jpg",
- "trainings": 1
- },
- {
- "id": 7508,
- "name": "№7508 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.94185600000003",
- "latitude": "45.058997",
- "address": "Каляева 198",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-20-23-09-40-u8z.jpg",
- "trainings": 0
- },
- {
- "id": 7509,
- "name": "№7509 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.14911258465577",
- "latitude": "57.9956771620866",
- "address": "Желябова, 11",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-21-11-09-35-dud.jpg",
- "trainings": 1
- },
- {
- "id": 7510,
- "name": "№7510 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "90.85445791482925",
- "latitude": "54.21602540826963",
- "address": "село Боград, ул. Новая, д. 18",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-21-16-09-19-jpt.jpg",
- "trainings": 1
- },
- {
- "id": 7512,
- "name": "№7512 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.082003593444824",
- "latitude": "54.88305045907306",
- "address": "Ступино г., Чайковского улица, д. 3/10",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-21-19-09-31-x0s.jpg",
- "trainings": 8
- },
- {
- "id": 7513,
- "name": "№7513 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "68.90625",
- "latitude": "68.26938680456566",
- "address": "Городской парк",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-21-22-09-45-r1p.jpg",
- "trainings": 0
- },
- {
- "id": 7514,
- "name": "№7514 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.951683044433594",
- "latitude": "45.07221740086916",
- "address": "Симеренко, 43",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-21-23-09-21-8rz.jpg",
- "trainings": 0
- },
- {
- "id": 7516,
- "name": "№7516 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.643240213394165",
- "latitude": "50.43787587341002",
- "address": "Улица Пражская 29",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-22-08-09-06-igz.jpg",
- "trainings": 1
- },
- {
- "id": 7517,
- "name": "№7517 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.21623754501343",
- "latitude": "51.7406893123415",
- "address": "Боева дача",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-22-09-09-47-b_a.jpg",
- "trainings": 1
- },
- {
- "id": 7518,
- "name": "№7518 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "27.463620901107788",
- "latitude": "53.854285906385186",
- "address": "ул. Космонавтов, 16",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-22-15-09-18-wgl.jpg",
- "trainings": 6
- },
- {
- "id": 7519,
- "name": "№7519 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "73.42489921772153",
- "latitude": "55.0296909708531",
- "address": "Багратиона 29 ж",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-22-16-09-28-jzv.jpg",
- "trainings": 1
- },
- {
- "id": 7520,
- "name": "№7520 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.07081930000004",
- "latitude": "54.88048029999999",
- "address": "кубышева 3 дубки",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-22-17-09-42-sgq.jpg",
- "trainings": 2
- },
- {
- "id": 7521,
- "name": "№7521 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.08437466621399",
- "latitude": "54.882100000903435",
- "address": "ул. Чайковского, парк имени Островского ",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-22-17-09-21-na_.jpg",
- "trainings": 0
- },
- {
- "id": 7523,
- "name": "№7523 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "73.20038080215454",
- "latitude": "49.87797488952224",
- "address": "Ул. Белинского",
- "city_id": 412,
- "country_id": 11,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-22-20-09-34-6-i.jpg",
- "trainings": 2
- },
- {
- "id": 7525,
- "name": "№7525 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.5712251663208",
- "latitude": "55.4084921356959",
- "address": "Молодёжная 6 ",
- "city_id": 103,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-22-23-09-26-rg2.jpg",
- "trainings": 0
- },
- {
- "id": 7527,
- "name": "№7527 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "56.0725075006485",
- "latitude": "54.77726725593784",
- "address": "Юрия Гагарина, 59",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-00-09-44-yg-.jpg",
- "trainings": 1
- },
- {
- "id": 7529,
- "name": "№7529 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "143.1061806011719",
- "latitude": "49.2206499556584",
- "address": "ул. Восточная 61",
- "city_id": 8432,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-07-09-46-uq9.jpg",
- "trainings": 4
- },
- {
- "id": 7530,
- "name": "№7530 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "55.99436150793463",
- "latitude": "54.75803844452657",
- "address": "Зорге 35",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-08-09-48--dt.jpg",
- "trainings": 1
- },
- {
- "id": 7531,
- "name": "№7531 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "92.77263164520264",
- "latitude": "56.000912762845736",
- "address": "Свободный 81",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-09-09-51-ujh.jpg",
- "trainings": 1
- },
- {
- "id": 7532,
- "name": "№7532 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "76.81434631347656",
- "latitude": "43.24420236973",
- "address": "Алатауский район, Микрорайон Аккент",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-09-09-26-c3p.jpg",
- "trainings": 0
- },
- {
- "id": 7535,
- "name": "№7535 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "88.24742317199707",
- "latitude": "73.92374047978198",
- "address": "Спортивный переулок 14",
- "city_id": 614,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-11-09-15-e8l.jpg",
- "trainings": 0
- },
- {
- "id": 7540,
- "name": "№7540 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.185995936393738",
- "latitude": "47.82301716432771",
- "address": "Улица Дружбы Народов, 10",
- "city_id": 8721,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-18-09-29-c3v.jpg",
- "trainings": 1
- },
- {
- "id": 7541,
- "name": "№7541 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.66944705291746",
- "latitude": "55.85925597868046",
- "address": "Радужная 7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-16-09-11-dor.jpg",
- "trainings": 0
- },
- {
- "id": 7543,
- "name": "№7543 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.95135809999999",
- "latitude": "45.0657327",
- "address": "Казбекская 6",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-17-09-23-swu.jpg",
- "trainings": 0
- },
- {
- "id": 7544,
- "name": "№7544 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "28.503229485597217",
- "latitude": "49.24857516564668",
- "address": "Стрілецька, 62",
- "city_id": 486,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-17-09-38-rjt.jpg",
- "trainings": 1
- },
- {
- "id": 7545,
- "name": "№7545 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "71.38823345303535",
- "latitude": "42.88221045965284",
- "address": "тараз",
- "city_id": 8720,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-18-09-23-czv.jpg",
- "trainings": 2
- },
- {
- "id": 7547,
- "name": "№7547 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.856268882751465",
- "latitude": "50.760676146544796",
- "address": "Стадион центральный",
- "city_id": 8357,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-18-09-11-dds.jpg",
- "trainings": 0
- },
- {
- "id": 7549,
- "name": "№7549 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.47574520111084",
- "latitude": "56.99377115204112",
- "address": "Уральская 14",
- "city_id": 8303,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-19-09-33-u3b.png",
- "trainings": 1
- },
- {
- "id": 7550,
- "name": "№7550 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "60.46844699999997",
- "latitude": "56.989068",
- "address": "Уральская 18",
- "city_id": 8303,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-19-09-03-jzn.png",
- "trainings": 1
- },
- {
- "id": 7551,
- "name": "№7551 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.30620861053467",
- "latitude": "54.881347024619686",
- "address": "Городской парк, улица Джалиля",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-21-09-46-ffb.jpg",
- "trainings": 0
- },
- {
- "id": 7552,
- "name": "№7552 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "63.34510053477936",
- "latitude": "61.309332843283194",
- "address": "Садовая улица, 1Б",
- "city_id": 8002,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-23-22-09-21-uur.jpg",
- "trainings": 1
- },
- {
- "id": 7554,
- "name": "№7554 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.80495548248291",
- "latitude": "58.05911625354697",
- "address": "школа 21",
- "city_id": 646,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-24-14-09-28-gly.jpg",
- "trainings": 1
- },
- {
- "id": 7555,
- "name": "№7555 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.342113971710205",
- "latitude": "59.40871999601825",
- "address": "Вырица, улица Ефимова, 14",
- "city_id": 27,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-24-15-09-09-91j.jpg",
- "trainings": 1
- },
- {
- "id": 7556,
- "name": "№7556 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.349597334861755",
- "latitude": "59.42091547656098",
- "address": "Вырица, октябрьская ул. 22",
- "city_id": 27,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-24-15-09-27-obi.jpg",
- "trainings": 1
- },
- {
- "id": 7557,
- "name": "№7557 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.4818547964096",
- "latitude": "52.056844668524334",
- "address": "Мкр. Октябрьский ",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-24-15-09-12-muo.jpg",
- "trainings": 1
- },
- {
- "id": 7558,
- "name": "№7558 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.71687240898609",
- "latitude": "53.36239089535062",
- "address": "улица 2-я Северо-Западная",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-06-09-53-cbi.jpeg",
- "trainings": 1
- },
- {
- "id": 7560,
- "name": "№7560 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "73.20308446884155",
- "latitude": "49.88699662219699",
- "address": "Ул. Магнитогоская, 43.",
- "city_id": 412,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-24-20-09-29-zsb.jpg",
- "trainings": 1
- },
- {
- "id": 7561,
- "name": "№7561 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.25583114267499",
- "latitude": "54.843022760246654",
- "address": "гвардейская",
- "city_id": 8028,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-24-20-09-45-9ro.jpg",
- "trainings": 2
- },
- {
- "id": 7562,
- "name": "№7562 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.005521059036255",
- "latitude": "49.45249651825548",
- "address": "ул. Панаса Мирного, 31/5",
- "city_id": 550,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-24-22-09-23-0g5.jpg",
- "trainings": 1
- },
- {
- "id": 7563,
- "name": "№7563 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.59976387023926",
- "latitude": "55.686972023983884",
- "address": "Севастопольский проспект, 12к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-24-23-09-51-vdv.jpg",
- "trainings": 2
- },
- {
- "id": 7564,
- "name": "№7564 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "47.24490000000003",
- "latitude": "56.1362",
- "address": "ул.Ленинградская, д.34, Стадион \"Энергия\"",
- "city_id": 146,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-24-23-09-12-7ur.jpg",
- "trainings": 0
- },
- {
- "id": 7565,
- "name": "№7565 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.37399249999999",
- "latitude": "52.0784896",
- "address": "улица Весенняя, 23",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-05-09-06-hut.jpg",
- "trainings": 0
- },
- {
- "id": 7566,
- "name": "№7566 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.37354270000003",
- "latitude": "52.0790836",
- "address": "Труда,17",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-05-09-47-yv1.jpg",
- "trainings": 0
- },
- {
- "id": 7567,
- "name": "№7567 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.50510199999997",
- "latitude": "52.03731",
- "address": "Бабушкина,123",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-05-09-41-evq.jpg",
- "trainings": 0
- },
- {
- "id": 7568,
- "name": "№7568 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.95963048934937",
- "latitude": "54.965118685252186",
- "address": "Чигорина 6",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-06-09-34-5oz.jpg",
- "trainings": 1
- },
- {
- "id": 7569,
- "name": "№7569 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.46994062817225",
- "latitude": "52.038561705143024",
- "address": "Чита, Набережная, 52",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-06-09-12-0ji.jpg",
- "trainings": 0
- },
- {
- "id": 7570,
- "name": "№7570 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "91.47938069999998",
- "latitude": "53.7175332",
- "address": "Пушкина3",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-08-09-15-_ql.jpg",
- "trainings": 0
- },
- {
- "id": 7571,
- "name": "№7571 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.06020259857178",
- "latitude": "55.95561516604851",
- "address": "Мира ",
- "city_id": 143,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-10-09-53-vob.jpg",
- "trainings": 1
- },
- {
- "id": 7572,
- "name": "№7572 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.313612818717957",
- "latitude": "59.921667399116956",
- "address": "Садовая улица, 50, Юсуповский сад",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-13-09-16-gzv.png",
- "trainings": 0
- },
- {
- "id": 7573,
- "name": "№7573 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "76.95949896869934",
- "latitude": "43.2390769948649",
- "address": "Ленина-Сатпаева",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-14-09-15-j3l.png",
- "trainings": 2
- },
- {
- "id": 7574,
- "name": "№7574 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.079693222229025",
- "latitude": "54.881356374810544",
- "address": "Ступино г., Чайковского улица, д. 3/10",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-15-09-23-tko.jpg",
- "trainings": 5
- },
- {
- "id": 7575,
- "name": "№7575 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.336158990859985",
- "latitude": "53.966298556017236",
- "address": "Донской парк юбилейный",
- "city_id": 8085,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-16-09-31-0ob.jpg",
- "trainings": 0
- },
- {
- "id": 7576,
- "name": "№7576 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.37400496006012",
- "latitude": "53.98173327398764",
- "address": "Бобрик-Гора ул.Школьная",
- "city_id": 8085,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-16-09-14-qlw.jpg",
- "trainings": 0
- },
- {
- "id": 7577,
- "name": "№7577 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.459734201431274",
- "latitude": "60.029303567501",
- "address": "улица Корнея Чуковского, 7к3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-17-09-05-onp.jpg",
- "trainings": 2
- },
- {
- "id": 7578,
- "name": "№7578 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.454686284065247",
- "latitude": "60.030707769963925",
- "address": "улица Корнея Чуковского, 8",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-17-09-55-w9p.jpg",
- "trainings": 0
- },
- {
- "id": 7579,
- "name": "№7579 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.503236532211304",
- "latitude": "55.690600651851355",
- "address": "Парк 50-летия Октября",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-25-20-09-27-oxm.jpg",
- "trainings": 2
- },
- {
- "id": 7580,
- "name": "№7580 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.261034011709853",
- "latitude": "59.85363425177557",
- "address": "Трамвайный проспект",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-26-00-09-11-1il.png",
- "trainings": 1
- },
- {
- "id": 7581,
- "name": "№7581 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "41.91803455352783",
- "latitude": "44.99973667331895",
- "address": "50 лет влксм 105",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-26-12-09-22-dtv.jpg",
- "trainings": 1
- },
- {
- "id": 7582,
- "name": "№7582 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.387507796238424",
- "latitude": "55.900990712105916",
- "address": "Родионовская 25",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-26-14-09-47-c3h.jpg",
- "trainings": 3
- },
- {
- "id": 7585,
- "name": "№7585 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.69891039999993",
- "latitude": "56.8093515",
- "address": "храм пантелеймона",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-26-16-09-02-fk6.jpg",
- "trainings": 0
- },
- {
- "id": 7586,
- "name": "№7586 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.335909605026245",
- "latitude": "55.8211879374042",
- "address": "Октябрьская улица, 1",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-26-19-09-15-2aq.jpg",
- "trainings": 0
- },
- {
- "id": 7587,
- "name": "№7587 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.316468954086304",
- "latitude": "55.83710859037742",
- "address": "кирова 3",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-26-20-09-13-tar.jpg",
- "trainings": 0
- },
- {
- "id": 7588,
- "name": "№7588 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.628819832016006",
- "latitude": "56.893930619970575",
- "address": "ул. Старых Большевиков, д. 26 (во дворе)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-26-20-09-04-sl5.jpg",
- "trainings": 0
- },
- {
- "id": 7591,
- "name": "№7591 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "129.7057056427002",
- "latitude": "62.02575588928207",
- "address": "Юность",
- "city_id": 622,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-27-01-09-13-ubt.jpg",
- "trainings": 0
- },
- {
- "id": 7593,
- "name": "№7593 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.42087650299072",
- "latitude": "47.09610074626473",
- "address": "Азов ",
- "city_id": 8069,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-27-09-09-23-049.jpg",
- "trainings": 0
- },
- {
- "id": 7594,
- "name": "№7594 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.99344928247592",
- "latitude": "55.74816360002355",
- "address": "Улица главная дом 7",
- "city_id": 40,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-27-12-09-29-4ft.jpg",
- "trainings": 1
- },
- {
- "id": 7596,
- "name": "№7596 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.80385160000003",
- "latitude": "32.0733169",
- "address": "HaBanim Garden",
- "city_id": 8725,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-27-15-09-17-uzr.jpg",
- "trainings": 1
- },
- {
- "id": 7597,
- "name": "№7597 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.79730799999993",
- "latitude": "32.0703255",
- "address": "sderot ha-haskala 38",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-27-16-09-11-tk1.png",
- "trainings": 1
- },
- {
- "id": 7598,
- "name": "№7598 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.733708258197",
- "latitude": "56.09220250987215",
- "address": "ул. 40 Лет Октября, 18",
- "city_id": 7921,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-27-16-09-42-idq.jpg",
- "trainings": 0
- },
- {
- "id": 7600,
- "name": "№7600 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-2.7903127670288086",
- "latitude": "34.00756196861457",
- "address": "25 км. Голоустненского тракта, ДНТ СВЕТЛЫЙ ЯР, ул. Спортивная, 1",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-28-03-09-20-epx.jpg",
- "trainings": 1
- },
- {
- "id": 7601,
- "name": "№7601 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.857513427734375",
- "latitude": "55.668436579918776",
- "address": "Бела дача 53",
- "city_id": 65,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-28-09-09-23-vqx.jpg",
- "trainings": 1
- },
- {
- "id": 7602,
- "name": "№7602 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.824769020080566",
- "latitude": "56.013149493473556",
- "address": "Заводская 10",
- "city_id": 109,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-28-10-09-53-02q.jpg",
- "trainings": 1
- },
- {
- "id": 7603,
- "name": "№7603 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.6423282623291",
- "latitude": "50.440967863841784",
- "address": "улица Азербайджанський 8",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-28-10-09-00-od8.jpg",
- "trainings": 1
- },
- {
- "id": 7605,
- "name": "№7605 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "46.13064869999994",
- "latitude": "51.4834283",
- "address": " ул. Тельмана, 139",
- "city_id": 7925,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-28-12-09-45-iyg.jpg",
- "trainings": 1
- },
- {
- "id": 7607,
- "name": "№7607 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.6741589307785",
- "latitude": "55.77634975528727",
- "address": "Озёра Челябинская область",
- "city_id": 7427,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-29-10-09-08-9vm.jpg",
- "trainings": 0
- },
- {
- "id": 7608,
- "name": "№7608 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.67628860473633",
- "latitude": "55.776054080193354",
- "address": "Озёра Челябинская область",
- "city_id": 7427,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-29-11-09-27-tod.jpg",
- "trainings": 2
- },
- {
- "id": 7610,
- "name": "№7610 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.64864432811737",
- "latitude": "54.64659192618581",
- "address": "Юбилейная 1",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-29-17-09-53--uj.jpg",
- "trainings": 1
- },
- {
- "id": 7611,
- "name": "№7611 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.562121748924255",
- "latitude": "55.861329583012896",
- "address": "Бескудниковский бульвар, 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-29-20-09-29-4ix.jpg",
- "trainings": 4
- },
- {
- "id": 7612,
- "name": "№7612 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.81538966137691",
- "latitude": "58.060349475486035",
- "address": "ул. Академика Губкина, 10",
- "city_id": 646,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-29-20-09-36-irp.jpg",
- "trainings": 1
- },
- {
- "id": 7613,
- "name": "№7613 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.648145544457975",
- "latitude": "58.114268719988914",
- "address": "ул. Судостроительная",
- "city_id": 646,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-29-20-09-01-iob.jpg",
- "trainings": 3
- },
- {
- "id": 7614,
- "name": "№7614 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.72318746864778",
- "latitude": "46.511983003254635",
- "address": "Красный сквер",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-29-21-09-10-mn7.jpg",
- "trainings": 1
- },
- {
- "id": 7616,
- "name": "№7616 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.73685824871063",
- "latitude": "55.771600579906064",
- "address": "Озёра Челябинская область",
- "city_id": 7427,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-30-07-09-34-xlf.jpg",
- "trainings": 0
- },
- {
- "id": 7617,
- "name": "№7617 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.408341999999948",
- "latitude": "50.485313",
- "address": "ул. Маршала Гречка 10А",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-30-12-09-45-hvx.jpg",
- "trainings": 0
- },
- {
- "id": 7620,
- "name": "№7620 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.52435591071844",
- "latitude": "55.67950487387635",
- "address": "улица Марии Ульяновой",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-30-22-09-29-gon.jpg",
- "trainings": 4
- },
- {
- "id": 7622,
- "name": "№7622 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.77383639999994",
- "latitude": "55.794273",
- "address": "Измайловская пл, д.13а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-30-17-09-50-io-.jpg",
- "trainings": 0
- },
- {
- "id": 7625,
- "name": "№7625 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.824882169311536",
- "latitude": "56.01200073993665",
- "address": "Льва Толстого, 20А",
- "city_id": 109,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-30-19-09-48-lsa.jpg",
- "trainings": 1
- },
- {
- "id": 7628,
- "name": "№7628 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.586363554000854",
- "latitude": "55.805230618664964",
- "address": "Ул. Большая Новодмитровская д. 36 стр. 25",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-30-20-09-58-fug.jpg",
- "trainings": 1
- },
- {
- "id": 7629,
- "name": "№7629 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.58582072446745",
- "latitude": "55.80550403695038",
- "address": "Ул. Большая Новодмитровская д. 36 стр. 26",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/09/2017-09-30-20-09-10-igh.jpg",
- "trainings": 1
- },
- {
- "id": 7630,
- "name": "№7630 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "91.4112589383758",
- "latitude": "53.69965599645837",
- "address": "аскизская 160",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-01-08-10-28-kjt.jpg",
- "trainings": 1
- },
- {
- "id": 7631,
- "name": "№7631 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "91.39996891321414",
- "latitude": "53.70018231085062",
- "address": "стофато 26",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-01-08-10-14-edj.jpg",
- "trainings": 0
- },
- {
- "id": 7632,
- "name": "№7632 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "91.43011340947874",
- "latitude": "53.71013249639678",
- "address": "гагарина 26",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-01-08-10-14-tif.jpg",
- "trainings": 0
- },
- {
- "id": 7633,
- "name": "№7633 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "91.46102731216433",
- "latitude": "53.71222745874503",
- "address": "павших коммунаров 100",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-01-08-10-40-8o8.jpg",
- "trainings": 0
- },
- {
- "id": 7634,
- "name": "№7634 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "91.4187762020996",
- "latitude": "53.70759248731427",
- "address": "гагарина 80",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-01-08-10-44-dlm.jpg",
- "trainings": 0
- },
- {
- "id": 7644,
- "name": "№7644 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.023695468902588",
- "latitude": "52.42944469897461",
- "address": "Пляж реки Сож",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-01-17-10-39-8ou.jpg",
- "trainings": 1
- },
- {
- "id": 7645,
- "name": "№7645 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.43765115737915",
- "latitude": "55.72089259406707",
- "address": "Можайское шоссе д. 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-01-19-10-43-0rw.jpg",
- "trainings": 0
- },
- {
- "id": 7646,
- "name": "№7646 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.429888407409635",
- "latitude": "55.7194401407659",
- "address": "Ул. Петра Алексеева д.3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-01-19-10-24-_zf.jpg",
- "trainings": 0
- },
- {
- "id": 7647,
- "name": "№7647 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.42519497871399",
- "latitude": "55.71949669472091",
- "address": "Можайское шоссе д. 25",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-01-19-10-36-zw3.jpg",
- "trainings": 0
- },
- {
- "id": 7648,
- "name": "№7648 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.41836071014404",
- "latitude": "55.71583448787845",
- "address": "Ул. Дорогобужская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-01-19-10-38-7fy.jpg",
- "trainings": 0
- },
- {
- "id": 7649,
- "name": "№7649 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.658409299475124",
- "latitude": "56.837853333860444",
- "address": "коминтерна 11",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-01-21-10-43-flz.jpg",
- "trainings": 1
- },
- {
- "id": 7651,
- "name": "№7651 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.95674705505371",
- "latitude": "45.0463289708299",
- "address": "Артелерийская 236",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-01-22-10-40-ohf.jpg",
- "trainings": 0
- },
- {
- "id": 7652,
- "name": "№7652 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "42.068540600000006",
- "latitude": "51.3669119",
- "address": "переулок Суровикина 2а",
- "city_id": 8087,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-02-05-10-53-wju.jpg",
- "trainings": 2
- },
- {
- "id": 7653,
- "name": "№7653 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "24.627485275268555",
- "latitude": "59.41624306300663",
- "address": "Harku Sõudebaas",
- "city_id": 576,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-02-12-10-34-kyy.jpg",
- "trainings": 1
- },
- {
- "id": 7657,
- "name": "№7657 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.84498617053032",
- "latitude": "55.807734367046585",
- "address": "мкр. 1 мая, д. 2",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-02-17-10-47-_cx.jpg",
- "trainings": 0
- },
- {
- "id": 7658,
- "name": "№7658 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "42.08449339444269",
- "latitude": "51.378390273632206",
- "address": "северный м-он дом 36",
- "city_id": 8087,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-02-17-10-10-v0o.jpg",
- "trainings": 0
- },
- {
- "id": 7659,
- "name": "№7659 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "42.085431522090175",
- "latitude": "51.37897065479775",
- "address": "северный м-он дом 45",
- "city_id": 8087,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-02-17-10-37-jjz.jpg",
- "trainings": 0
- },
- {
- "id": 7660,
- "name": "№7660 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "42.08693325519562",
- "latitude": "51.37855117997869",
- "address": "северный м-он дом 43",
- "city_id": 8087,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-02-17-10-39-0tf.jpg",
- "trainings": 0
- },
- {
- "id": 7661,
- "name": "№7661 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "42.08671285344235",
- "latitude": "51.37775927408074",
- "address": "северный м-он дом 40",
- "city_id": 8087,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-02-17-10-11-wmi.jpg",
- "trainings": 0
- },
- {
- "id": 7662,
- "name": "№7662 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "42.08527639577028",
- "latitude": "51.377383709571085",
- "address": "северный м-он дом 39",
- "city_id": 8087,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-02-17-10-30-cxe.jpg",
- "trainings": 0
- },
- {
- "id": 7663,
- "name": "№7663 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "42.081160051589904",
- "latitude": "51.37726943044945",
- "address": "северный м-он дом 35а",
- "city_id": 8087,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-02-18-10-15-s2r.jpg",
- "trainings": 0
- },
- {
- "id": 7664,
- "name": "№7664 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "42.08124514655765",
- "latitude": "51.37761848389611",
- "address": "северный м-он дом 15",
- "city_id": 8087,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-02-18-10-56-pxy.jpg",
- "trainings": 0
- },
- {
- "id": 7665,
- "name": "№7665 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "42.07741846931151",
- "latitude": "51.3710097573045",
- "address": "Павловского 87",
- "city_id": 8087,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-02-18-10-48-hld.jpg",
- "trainings": 0
- },
- {
- "id": 7666,
- "name": "№7666 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "42.07833543135223",
- "latitude": "51.37318106551621",
- "address": "217 стрелковой дивизии 13",
- "city_id": 8087,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-02-18-10-35-8gk.jpg",
- "trainings": 1
- },
- {
- "id": 7667,
- "name": "№7667 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "42.07850938518072",
- "latitude": "51.37233285367611",
- "address": "бланская 112",
- "city_id": 8087,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-02-18-10-00-sgj.jpg",
- "trainings": 1
- },
- {
- "id": 7668,
- "name": "№7668 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.19069254398346",
- "latitude": "59.85595861246706",
- "address": "Маршала Захарова 28",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-02-22-10-24-agx.jpg",
- "trainings": 0
- },
- {
- "id": 7672,
- "name": "№7672 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.141295433044434",
- "latitude": "48.367340981189095",
- "address": "Херетсхаузен",
- "city_id": 7437,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-03-12-10-18-rd3.jpg",
- "trainings": 0
- },
- {
- "id": 7673,
- "name": "№7673 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.5967812538147",
- "latitude": "55.69213062233704",
- "address": "ул. Большая Черемушинская, 2к5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-03-22-10-12-prz.jpg",
- "trainings": 1
- },
- {
- "id": 7674,
- "name": "№7674 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.046010971069336",
- "latitude": "45.02461488360298",
- "address": "Селезнева 132",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-10-10-32-v6h.jpg",
- "trainings": 0
- },
- {
- "id": 7675,
- "name": "№7675 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.947906494140625",
- "latitude": "45.03711058833796",
- "address": "Кожевенная 44",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-12-10-42-8ue.jpg",
- "trainings": 3
- },
- {
- "id": 7676,
- "name": "№7676 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.04166579246521",
- "latitude": "45.0222602600204",
- "address": "Селезнева 134",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-10-10-36-wsb.jpg",
- "trainings": 0
- },
- {
- "id": 7677,
- "name": "№7677 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.04021739959717",
- "latitude": "45.02132369199726",
- "address": "Стасова 167",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-10-10-58-evo.jpg",
- "trainings": 0
- },
- {
- "id": 7678,
- "name": "№7678 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.03786778450012",
- "latitude": "45.0197235281851",
- "address": "Стасова 179",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-10-10-57-uqa.jpg",
- "trainings": 1
- },
- {
- "id": 7679,
- "name": "№7679 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.038060903549194",
- "latitude": "45.0197235281851",
- "address": "Ставропольская 179/1",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-11-10-00-crt.jpg",
- "trainings": 0
- },
- {
- "id": 7680,
- "name": "№7680 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.03793215751648",
- "latitude": "45.01923816160146",
- "address": "Ставропольская 179",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-11-10-13-s0j.jpg",
- "trainings": 0
- },
- {
- "id": 7681,
- "name": "№7681 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.03630799999996",
- "latitude": "45.018021",
- "address": "Ставропольская 159",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-11-10-19-ssf.jpg",
- "trainings": 0
- },
- {
- "id": 7682,
- "name": "№7682 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.035807847976685",
- "latitude": "45.01848735206254",
- "address": "Ставропольская 157/1",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-11-10-55-wgp.jpg",
- "trainings": 0
- },
- {
- "id": 7683,
- "name": "№7683 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.03299070000003",
- "latitude": "45.0190446",
- "address": "Ставропольская 151",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-11-10-18-nrj.jpg",
- "trainings": 0
- },
- {
- "id": 7684,
- "name": "№7684 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.03266429901123",
- "latitude": "45.02149053114722",
- "address": "Ставропольская 149",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-11-10-45-e7k.jpg",
- "trainings": 2
- },
- {
- "id": 7685,
- "name": "№7685 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.029788970947266",
- "latitude": "45.018396344176715",
- "address": "Димитрова 129",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-11-10-40-hdz.jpg",
- "trainings": 0
- },
- {
- "id": 7686,
- "name": "№7686 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.0269136428833",
- "latitude": "45.02118718687661",
- "address": "Димитрова 139",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-11-10-55-42d.jpg",
- "trainings": 0
- },
- {
- "id": 7687,
- "name": "№7687 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.025577",
- "latitude": "45.021734",
- "address": "2-я пятилетки 6/1",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-11-10-51-jrr.jpg",
- "trainings": 0
- },
- {
- "id": 7688,
- "name": "№7688 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.023135000000025",
- "latitude": "45.020795",
- "address": "Ставропольская 129",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-11-10-41-ms8.jpg",
- "trainings": 0
- },
- {
- "id": 7689,
- "name": "№7689 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.019339084625244",
- "latitude": "45.02330297967339",
- "address": "Ставропольская 107/6",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-12-10-13-i2q.jpg",
- "trainings": 0
- },
- {
- "id": 7690,
- "name": "№7690 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.017584899999974",
- "latitude": "45.02346499999999",
- "address": "Ставропольская 107/2",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-12-10-55-g5e.jpg",
- "trainings": 0
- },
- {
- "id": 7691,
- "name": "№7691 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.01799900000003",
- "latitude": "45.023295",
- "address": "Ставропольская 107/3",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-12-10-29-cqb.jpg",
- "trainings": 0
- },
- {
- "id": 7692,
- "name": "№7692 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.01725769042969",
- "latitude": "45.02364422925327",
- "address": "Таманская 172",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-12-10-01-brz.jpg",
- "trainings": 0
- },
- {
- "id": 7693,
- "name": "№7693 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "143.08910250663757",
- "latitude": "49.22562756090311",
- "address": "ул. Фрунзе 7",
- "city_id": 8432,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-12-10-36-lj9.jpg",
- "trainings": 1
- },
- {
- "id": 7694,
- "name": "№7694 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.01571820000004",
- "latitude": "45.0233949",
- "address": "Таманская 164",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-12-10-59-w7-.jpg",
- "trainings": 0
- },
- {
- "id": 7695,
- "name": "№7695 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.01441799999998",
- "latitude": "45.02315000000001",
- "address": "Таманская 156",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-04-12-10-14-qds.jpg",
- "trainings": 0
- },
- {
- "id": 7698,
- "name": "№7698 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "56.15292285054011",
- "latitude": "57.995633828836255",
- "address": "парковый 28",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-05-09-10-25-mac.jpg",
- "trainings": 1
- },
- {
- "id": 7700,
- "name": "№7700 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "47.19041380027193",
- "latitude": "56.145503604227116",
- "address": "Тимофея Кривова 15А",
- "city_id": 146,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-05-15-10-55-b6b.jpg",
- "trainings": 1
- },
- {
- "id": 7701,
- "name": "№7701 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.214446187019348",
- "latitude": "55.1965627333556",
- "address": "1-я ул. Доватора 3 Витебск Беларусь",
- "city_id": 373,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-05-17-10-31-vc2.jpg",
- "trainings": 1
- },
- {
- "id": 7702,
- "name": "№7702 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "77.76791989803314",
- "latitude": "64.91664734147436",
- "address": "ул. Геологов, 20",
- "city_id": 725,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-06-17-10-57-kog.jpg",
- "trainings": 1
- },
- {
- "id": 7703,
- "name": "№7703 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.56298005580902",
- "latitude": "55.76432784946092",
- "address": "Ул. 1905 года д. 1/2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-29-22-04-56-3bi.jpg",
- "trainings": 9
- },
- {
- "id": 7704,
- "name": "№7704 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "91.4831641749604",
- "latitude": "53.72570397406652",
- "address": "катанова 25",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-07-07-10-45-vk3.jpg",
- "trainings": 0
- },
- {
- "id": 7705,
- "name": "№7705 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.556633949279785",
- "latitude": "55.67741502624612",
- "address": "Нахимовский проспект 61к5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-07-12-10-10-yrz.jpg",
- "trainings": 3
- },
- {
- "id": 7707,
- "name": "№7707 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.59912145137787",
- "latitude": "56.90653026694094",
- "address": "ул. Коммунистическая, д. 53",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-11-10-20-u-r.jpg",
- "trainings": 0
- },
- {
- "id": 7708,
- "name": "№7708 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.625195965606736",
- "latitude": "56.830142800426366",
- "address": "ул. Куйбышева, д. 103",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-11-10-22-3mg.jpg",
- "trainings": 0
- },
- {
- "id": 7709,
- "name": "№7709 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.81591357672119",
- "latitude": "55.695447276528405",
- "address": "Самаркандский бульвар, 17, к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-12-10-30-jni.jpg",
- "trainings": 2
- },
- {
- "id": 7710,
- "name": "№7710 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "143.09021294116974",
- "latitude": "49.21518631233461",
- "address": " ул. 2-я Восточная улица, 27А",
- "city_id": 8432,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-12-10-57-ih-.jpg",
- "trainings": 1
- },
- {
- "id": 7711,
- "name": "№7711 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "143.09147626161575",
- "latitude": "49.21789143810794",
- "address": "ул. Дружбы 35А",
- "city_id": 8432,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-12-10-04-zcz.jpg",
- "trainings": 0
- },
- {
- "id": 7712,
- "name": "№7712 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "143.09883624315262",
- "latitude": "49.22165454040946",
- "address": "ул. Молодёжная",
- "city_id": 8432,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-12-10-52-xxd.jpg",
- "trainings": 1
- },
- {
- "id": 7715,
- "name": "№7715 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.64771500000006",
- "latitude": "56.823592",
- "address": "Сибирский тракт, д. 8 Н (ТЦ «Гагарин»)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-15-10-47-s7q.jpg",
- "trainings": 0
- },
- {
- "id": 7716,
- "name": "№7716 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.61757690000002",
- "latitude": "56.90815724062559",
- "address": "ул. Парниковая, д. 6",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-15-10-39-opa.jpg",
- "trainings": 0
- },
- {
- "id": 7717,
- "name": "№7717 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.12735968828201",
- "latitude": "51.6560347236464",
- "address": "Воронеж, Южно-Моравская, 18",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-15-10-37-09h.jpg",
- "trainings": 1
- },
- {
- "id": 7718,
- "name": "№7718 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.128624349832535",
- "latitude": "51.65659714932228",
- "address": "Воронеж, Южно-Моравская, 18",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-15-10-26-q1y.jpg",
- "trainings": 2
- },
- {
- "id": 7719,
- "name": "№7719 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.287390320220993",
- "latitude": "51.49622963053784",
- "address": "ул Ивана мазепы",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-16-10-23-sco.jpg",
- "trainings": 0
- },
- {
- "id": 7720,
- "name": "№7720 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.287626354614304",
- "latitude": "51.496136118701884",
- "address": "ул Ивана мазепы 1",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-16-10-56-gdh.jpg",
- "trainings": 0
- },
- {
- "id": 7721,
- "name": "№7721 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "29.908658266067505",
- "latitude": "50.07731684959589",
- "address": "Площадь Зигмунда Козара",
- "city_id": 3431,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-16-10-33-qac.jpg",
- "trainings": 0
- },
- {
- "id": 7722,
- "name": "№7722 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.381628399999954",
- "latitude": "61.7614054",
- "address": "Парк «Беличий остров»",
- "city_id": 102,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-18-10-33-k9m.jpeg",
- "trainings": 2
- },
- {
- "id": 7723,
- "name": "№7723 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.01103009999997",
- "latitude": "43.7556069",
- "address": "ул.Гагарина 4",
- "city_id": 8098,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-08-21-10-21-jxb.jpg",
- "trainings": 1
- },
- {
- "id": 7724,
- "name": "№7724 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "56.15130114553722",
- "latitude": "57.99664812246396",
- "address": "парковый 28",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-09-08-10-37-av8.jpg",
- "trainings": 0
- },
- {
- "id": 7725,
- "name": "№7725 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.480555999999979",
- "latitude": "52.487222",
- "address": "Treptower Park, Insel der Jugend",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-09-09-10-24-fj4.jpg",
- "trainings": 0
- },
- {
- "id": 7728,
- "name": "№7728 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.10874918103218",
- "latitude": "51.65533916981418",
- "address": "Шендрикова, 14.",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-09-19-10-33-4pi.jpg",
- "trainings": 0
- },
- {
- "id": 7729,
- "name": "№7729 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.108096063137054",
- "latitude": "51.65717620751857",
- "address": "Шендрикова, 6.",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-09-19-10-36-fo3.jpg",
- "trainings": 0
- },
- {
- "id": 7730,
- "name": "№7730 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.13753231481928",
- "latitude": "57.995904032873035",
- "address": "Куфонина 9",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-08-10-04-fxt.jpg",
- "trainings": 0
- },
- {
- "id": 7731,
- "name": "№7731 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.264251999999942",
- "latitude": "59.84074299999999",
- "address": "Бульвар Новаторов д. 84, корп.2 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-10-10-53-sgc.jpg",
- "trainings": 1
- },
- {
- "id": 7732,
- "name": "№7732 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.205844999999954",
- "latitude": "59.838899",
- "address": "Маршала Жукова пр., д. 58 корп.2 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-12-10-05-xfj.jpg",
- "trainings": 0
- },
- {
- "id": 7733,
- "name": "№7733 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.27938599999993",
- "latitude": "59.85291499999999",
- "address": "Народного Ополчения пр., д.3 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-12-10-14-_tw.jpg",
- "trainings": 0
- },
- {
- "id": 7734,
- "name": "№7734 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.202222000000006",
- "latitude": "59.832716",
- "address": "Ветеранов пр., д. 110 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-12-10-18-cpg.jpg",
- "trainings": 0
- },
- {
- "id": 7735,
- "name": "№7735 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.236249999999927",
- "latitude": "59.86075099999999",
- "address": "Проспект Маршала Жукова у д.22 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-12-10-48-mps.jpg",
- "trainings": 3
- },
- {
- "id": 7736,
- "name": "№7736 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.237446999999975",
- "latitude": "59.853898",
- "address": "Стачек пр., у д.107 к 1 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-12-10-52-7si.jpg",
- "trainings": 3
- },
- {
- "id": 7737,
- "name": "№7737 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.260222",
- "latitude": "59.854052",
- "address": "Трамвайный пр., у д.11, корп. 5 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-12-10-50-7pd.jpg",
- "trainings": 0
- },
- {
- "id": 7738,
- "name": "№7738 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.204226999999946",
- "latitude": "59.83563700000001",
- "address": "ул. Бурцева, д.9 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-12-10-53-xia.jpg",
- "trainings": 0
- },
- {
- "id": 7739,
- "name": "№7739 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.270242999999937",
- "latitude": "59.879825",
- "address": "Улица Васи Алексеева у д.14 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-13-10-46-wsj.jpg",
- "trainings": 2
- },
- {
- "id": 7740,
- "name": "№7740 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.225103999999988",
- "latitude": "59.82904800000001",
- "address": "Улица Козлова у д.47 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-13-10-08--r0.jpg",
- "trainings": 0
- },
- {
- "id": 7741,
- "name": "№7741 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.261247000000026",
- "latitude": "59.84640599999999",
- "address": "Подводника Кузьмина ул., д.26 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-13-10-30-scj.jpg",
- "trainings": 0
- },
- {
- "id": 7742,
- "name": "№7742 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.199930799999947",
- "latitude": "59.82898410000001",
- "address": "Стойкости ул., д.29 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-13-10-56-b5h.jpg",
- "trainings": 0
- },
- {
- "id": 7743,
- "name": "№7743 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.209623400000055",
- "latitude": "59.82735330000001",
- "address": "Улица Стойкости у д.18 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-13-10-46-xs_.jpg",
- "trainings": 2
- },
- {
- "id": 7744,
- "name": "№7744 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "33.540358543395996",
- "latitude": "44.56512588059424",
- "address": "Генерала Лебедя, 10в",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-10-15-10-12-cn4.jpg",
- "trainings": 0
- },
- {
- "id": 7748,
- "name": "№7748 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "56.1387308531647",
- "latitude": "57.99778060781041",
- "address": "Парковый 3",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-11-07-10-46-ht0.jpg",
- "trainings": 1
- },
- {
- "id": 7749,
- "name": "№7749 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.860002517700195",
- "latitude": "55.65817297526366",
- "address": "2-ой покровский проезд дом 4 строение 1",
- "city_id": 65,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-11-09-10-19-de7.jpg",
- "trainings": 0
- },
- {
- "id": 7750,
- "name": "№7750 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.027042388916016",
- "latitude": "45.05578839787249",
- "address": "1 мая,93",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-11-15-10-02-dt3.jpg",
- "trainings": 1
- },
- {
- "id": 7752,
- "name": "№7752 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "65.48642100000006",
- "latitude": "57.159464",
- "address": "Ямская 108 ",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-12-08-10-32-hfd.jpg",
- "trainings": 0
- },
- {
- "id": 7753,
- "name": "№7753 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "86.17167234420776",
- "latitude": "55.33772460549975",
- "address": "Строителей б-р 45",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-12-09-10-50-h7p.jpg",
- "trainings": 0
- },
- {
- "id": 7755,
- "name": "№7755 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.08253571163937",
- "latitude": "54.861734302583784",
- "address": "бульвар Молодежи, 12",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-12-20-10-14-2tp.jpg",
- "trainings": 0
- },
- {
- "id": 7756,
- "name": "№7756 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "86.1637544631958",
- "latitude": "55.34667507815228",
- "address": "Строителей б-р 21",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-12-20-10-05-k3x.jpg",
- "trainings": 2
- },
- {
- "id": 7757,
- "name": "№7757 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.91592368200077",
- "latitude": "55.035752316262254",
- "address": "Фрунзе, 2",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-12-20-10-46-2gc.jpg",
- "trainings": 2
- },
- {
- "id": 7758,
- "name": "№7758 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.91857486427921",
- "latitude": "55.03245240958314",
- "address": "Красный проспект, 31",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-12-20-10-24-hq4.jpg",
- "trainings": 0
- },
- {
- "id": 7760,
- "name": "№7760 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "158.37494730949402",
- "latitude": "53.190588280192706",
- "address": "ул. Виталия Кручины, д. 30 (спортивная площадка за школой N 1)",
- "city_id": 8160,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-13-03-10-14-sqt.jpeg",
- "trainings": 0
- },
- {
- "id": 7762,
- "name": "№7762 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.91803455352783",
- "latitude": "44.99797658580282",
- "address": "45 параллель 10",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-14-08-10-34-vpz.jpg",
- "trainings": 0
- },
- {
- "id": 7763,
- "name": "№7763 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.45389997959137",
- "latitude": "55.721986315835764",
- "address": "Ул. Ватутина д. 16",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-14-16-10-28-nnk.jpg",
- "trainings": 0
- },
- {
- "id": 7764,
- "name": "№7764 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.46844291687012",
- "latitude": "55.814111339368026",
- "address": "Волоколамское шоссе 45",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-14-17-10-58-g46.jpg",
- "trainings": 1
- },
- {
- "id": 7765,
- "name": "№7765 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.84823786143534",
- "latitude": "55.05235629301296",
- "address": "Заельцовски парк",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-14-20-10-15-e-p.jpg",
- "trainings": 0
- },
- {
- "id": 7766,
- "name": "№7766 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "6.962287987696868",
- "latitude": "43.54188258833557",
- "address": "68 Boulevard du Midi Louise Moreau, 06150 Cannes, France",
- "city_id": 7906,
- "country_id": 24,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-14-22-10-24-awt.jpg",
- "trainings": 0
- },
- {
- "id": 7767,
- "name": "№7767 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "116.33886337280273",
- "latitude": "39.935045866702914",
- "address": "SanliHeLu",
- "city_id": 8726,
- "country_id": 34,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-15-11-10-49-zkl.jpg",
- "trainings": 1
- },
- {
- "id": 7768,
- "name": "№7768 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.94688500000007",
- "latitude": "55.998812",
- "address": "Семафорная 417",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-15-11-10-55-cbt.jpg",
- "trainings": 0
- },
- {
- "id": 7769,
- "name": "№7769 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.79641532897949",
- "latitude": "55.085417375380565",
- "address": "Ул. Октябрьской революции, д. 344",
- "city_id": 60,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-15-12-10-15-fog.jpg",
- "trainings": 0
- },
- {
- "id": 7770,
- "name": "№7770 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.70489025115967",
- "latitude": "47.25316476147917",
- "address": "Спортивный комплекс РГУПС",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-15-13-10-53--7c.jpg",
- "trainings": 0
- },
- {
- "id": 7771,
- "name": "№7771 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.563139617443085",
- "latitude": "56.89872364739642",
- "address": "Кировградская, д. 81",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-15-16-10-08-0yz.jpg",
- "trainings": 0
- },
- {
- "id": 7772,
- "name": "№7772 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.56510031223297",
- "latitude": "56.895732386312424",
- "address": "ул. Донбасская, д. 1Г",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-15-16-10-19-tjf.jpg",
- "trainings": 0
- },
- {
- "id": 7773,
- "name": "№7773 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.568638145923615",
- "latitude": "56.90227710658423",
- "address": "ул. Республиканская ул., д. 1",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-15-16-10-33-th8.jpg",
- "trainings": 0
- },
- {
- "id": 7774,
- "name": "№7774 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.840574474066216",
- "latitude": "59.420921142787385",
- "address": "ул. Ломоносова, дом 114, школа № 17",
- "city_id": 7956,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-15-19-10-05-2w4.jpg",
- "trainings": 0
- },
- {
- "id": 7775,
- "name": "№7775 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.555333399999995",
- "latitude": "48.2194983",
- "address": "Aschenbrennerstraße 12",
- "city_id": 7469,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-15-20-10-11-8vm.jpg",
- "trainings": 0
- },
- {
- "id": 7776,
- "name": "№7776 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.13934922218323",
- "latitude": "56.33412163578193",
- "address": "ул Владимирская",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-16-08-10-36-p6u.jpg",
- "trainings": 1
- },
- {
- "id": 7779,
- "name": "№7779 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "78.3846274666123",
- "latitude": "42.47878311249052",
- "address": "Ривер-парк",
- "city_id": 8727,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-16-13-10-32-v2k.jpg",
- "trainings": 1
- },
- {
- "id": 7780,
- "name": "№7780 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "78.40779638808294",
- "latitude": "42.48499831699947",
- "address": "Парк Победы",
- "city_id": 8727,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-16-16-10-33-ccv.jpg",
- "trainings": 0
- },
- {
- "id": 7781,
- "name": "№7781 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "116.18265151977539",
- "latitude": "39.95409596949797",
- "address": "BaDaChu",
- "city_id": 8726,
- "country_id": 34,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-16-17-10-43-gwb.jpg",
- "trainings": 1
- },
- {
- "id": 7782,
- "name": "№7782 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.345993787050247",
- "latitude": "59.83744246708515",
- "address": "ул. Пулковская 6",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-16-18-10-23--89.jpg",
- "trainings": 2
- },
- {
- "id": 7784,
- "name": "№7784 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.691351175308228",
- "latitude": "53.87772571147486",
- "address": "Герасименко 9",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-17-01-10-20-ryx.jpg",
- "trainings": 1
- },
- {
- "id": 7785,
- "name": "№7785 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.75128910788044",
- "latitude": "32.03385809264529",
- "address": "Saharon st.",
- "city_id": 766,
- "country_id": 9,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-17-19-10-55-hap.jpg",
- "trainings": 0
- },
- {
- "id": 7787,
- "name": "№7787 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "11.473288536071777",
- "latitude": "48.17535856293734",
- "address": "Finsterwalderstrasse",
- "city_id": 7469,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-18-08-10-39-qj5.jpg",
- "trainings": 0
- },
- {
- "id": 7788,
- "name": "№7788 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.48127355819702",
- "latitude": "55.89490324141034",
- "address": "ул. Библиотечная, д.26",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-18-09-10-44-n9d.jpg",
- "trainings": 0
- },
- {
- "id": 7789,
- "name": "№7789 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.471736669540405",
- "latitude": "55.78292040449939",
- "address": "бульвар Генерала Карбышева ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-02-16-11-44-xut.jpg",
- "trainings": 4
- },
- {
- "id": 7790,
- "name": "№7790 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.83233833312988",
- "latitude": "56.88113300219667",
- "address": "Фрунзе д 2., к 2",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-18-14-10-09-e0y.jpg",
- "trainings": 0
- },
- {
- "id": 7791,
- "name": "№7791 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.84332466125488",
- "latitude": "56.88694765155943",
- "address": "Паши Савельевой, д 52",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-18-14-10-23-jeu.jpg",
- "trainings": 0
- },
- {
- "id": 7792,
- "name": "№7792 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.82839012145996",
- "latitude": "56.88350117423407",
- "address": "Фрунзе д 2., к 2",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-18-14-10-55-npn.jpg",
- "trainings": 1
- },
- {
- "id": 7794,
- "name": "№7794 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.37887943166993",
- "latitude": "55.6687110756111",
- "address": "Мещерский парк центр",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-19-15-10-47-qez.jpg",
- "trainings": 4
- },
- {
- "id": 7796,
- "name": "№7796 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.450896001327465",
- "latitude": "55.66767319293019",
- "address": "Москва, Улица Никулинская 23, корпус 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-19-23-10-54-38a.jpg",
- "trainings": 0
- },
- {
- "id": 7797,
- "name": "№7797 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "71.33474349975586",
- "latitude": "51.20153259096739",
- "address": "пр. Тлендиева 36",
- "city_id": 406,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-20-18-10-02-dgw.jpg",
- "trainings": 0
- },
- {
- "id": 7798,
- "name": "№7798 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.14470821619034",
- "latitude": "51.649065390973824",
- "address": "Воронеж, Юлюса Янониса, 6",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-20-19-10-20-w-q.jpg",
- "trainings": 1
- },
- {
- "id": 7799,
- "name": "№7799 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "39.14408594369888",
- "latitude": "51.648363073094195",
- "address": "Воронеж, Юлюса Янониса, 4",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-20-19-10-35-efg.jpg",
- "trainings": 0
- },
- {
- "id": 7800,
- "name": "№7800 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "65.58258801698685",
- "latitude": "57.11297630996841",
- "address": "Широтная, д. 83/1",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-21-14-10-22-sfq.jpg",
- "trainings": 1
- },
- {
- "id": 7801,
- "name": "№7801 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.537177205085754",
- "latitude": "55.69917194772776",
- "address": "Ленинские Горы",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-21-17-10-18-tgg.jpeg",
- "trainings": 5
- },
- {
- "id": 7802,
- "name": "№7802 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.839608",
- "latitude": "56.886003",
- "address": "Паши Савельевой, д 52",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-21-19-10-11-kzj.jpg",
- "trainings": 1
- },
- {
- "id": 7803,
- "name": "№7803 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "116.59257888793945",
- "latitude": "51.98284496462696",
- "address": "Стадион",
- "city_id": 8443,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-22-02-10-47-uwi.jpg",
- "trainings": 0
- },
- {
- "id": 7804,
- "name": "№7804 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "158.3791959285736",
- "latitude": "53.19013508708297",
- "address": "ул. Виталия Кручины, д. 26 А",
- "city_id": 8160,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-22-05-10-53-wmz.jpeg",
- "trainings": 0
- },
- {
- "id": 7805,
- "name": "№7805 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.072122395038605",
- "latitude": "56.064848840144144",
- "address": "Московская область, Солнечногорский район, посёлок городского типа Поварово, микрорайон Поваровка, 18",
- "city_id": 126,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-22-19-10-05-3r7.jpg",
- "trainings": 0
- },
- {
- "id": 7806,
- "name": "№7806 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.07179516553879",
- "latitude": "56.06530403322482",
- "address": "Московская область, Солнечногорский район, посёлок городского типа Поварово, микрорайон Поваровка, 11",
- "city_id": 126,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-22-20-10-47-aqp.jpg",
- "trainings": 0
- },
- {
- "id": 7807,
- "name": "№7807 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "40.32075119012006",
- "latitude": "43.6609486208379",
- "address": "Роза Хутор",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-22-23-10-11-h1j.jpg",
- "trainings": 1
- },
- {
- "id": 7808,
- "name": "№7808 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.501235215469364",
- "latitude": "52.6016666456682",
- "address": "Московская, 30 ст2",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-23-16-10-48-1vd.jpg",
- "trainings": 1
- },
- {
- "id": 7809,
- "name": "№7809 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.50459361076355",
- "latitude": "52.607256656140414",
- "address": "Политехническая, 9а",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-23-16-10-12-qgp.jpg",
- "trainings": 1
- },
- {
- "id": 7810,
- "name": "№7810 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.61759650707245",
- "latitude": "56.86038749984152",
- "address": "пер. Трамвайный, д. 2",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-23-17-10-34-nyf.jpg",
- "trainings": 2
- },
- {
- "id": 7811,
- "name": "№7811 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.44522571563721",
- "latitude": "55.72442744068007",
- "address": "Можайское шоссе д. 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-24-15-10-13-5rq.jpg",
- "trainings": 0
- },
- {
- "id": 7812,
- "name": "№7812 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.40041136741638",
- "latitude": "55.704253370050836",
- "address": "Сколковское шоссе д. 36",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-24-15-10-44-jjk.jpg",
- "trainings": 0
- },
- {
- "id": 7813,
- "name": "№7813 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.4376779794693",
- "latitude": "55.72454224229932",
- "address": "Ул. Багрицкого д. 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-24-15-10-03-hju.jpg",
- "trainings": 0
- },
- {
- "id": 7814,
- "name": "№7814 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.43936240673065",
- "latitude": "55.723687264242415",
- "address": "Ул. Ращупкина д. 7 а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-24-15-10-23-jnd.jpg",
- "trainings": 0
- },
- {
- "id": 7815,
- "name": "№7815 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "27.5942873954773",
- "latitude": "53.93382661116403",
- "address": "Восточная, 38",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-24-17-10-41-gcy.jpg",
- "trainings": 5
- },
- {
- "id": 7817,
- "name": "№7817 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.68381810000005",
- "latitude": "51.5754589",
- "address": "Ул.Свердлова, парк им.М.Горького ",
- "city_id": 8402,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-25-20-10-21-cld.jpg",
- "trainings": 0
- },
- {
- "id": 7820,
- "name": "№7820 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.59369134902954",
- "latitude": "54.185820105598765",
- "address": "ул. Первомайская",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-25-21-10-55-dav.jpg",
- "trainings": 1
- },
- {
- "id": 7821,
- "name": "№7821 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "33.95176161437121",
- "latitude": "44.40070660469072",
- "address": "пгт. Понизовка, СОК \"Смена\"",
- "city_id": 557,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-26-19-10-08-gse.jpg",
- "trainings": 1
- },
- {
- "id": 7822,
- "name": "№7822 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.36864060163498",
- "latitude": "56.88275967115538",
- "address": "Фаддеева 46",
- "city_id": 686,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-26-19-10-50-cyb.jpg",
- "trainings": 2
- },
- {
- "id": 7823,
- "name": "№7823 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.68094348907471",
- "latitude": "47.259194168186234",
- "address": "Парк им. Октября",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-27-12-10-02--c9.jpg",
- "trainings": 0
- },
- {
- "id": 7824,
- "name": "№7824 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "125.16303062438965",
- "latitude": "-29.82850771014328",
- "address": "микрорайон Аэропорт, 33",
- "city_id": 603,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-28-11-10-12-exy.jpg",
- "trainings": 1
- },
- {
- "id": 7825,
- "name": "№7825 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.918561599999975",
- "latitude": "55.9655505",
- "address": "ул. Рощинская",
- "city_id": 45,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-28-19-10-17-grj.jpg",
- "trainings": 1
- },
- {
- "id": 7826,
- "name": "№7826 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "43.98213780000003",
- "latitude": "43.7589431",
- "address": "Свободы 319",
- "city_id": 8098,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-29-10-10-02-y32.jpg",
- "trainings": 1
- },
- {
- "id": 7828,
- "name": "№7828 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.752182960510254",
- "latitude": "47.23696643470918",
- "address": "Трудовые резервы",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-29-11-10-09-us5.jpg",
- "trainings": 0
- },
- {
- "id": 7829,
- "name": "№7829 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "56.8406852851806",
- "latitude": "59.409325561223625",
- "address": "ул. Потёмина, дом 3",
- "city_id": 7956,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-29-20-10-06-di4.jpg",
- "trainings": 0
- },
- {
- "id": 7830,
- "name": "№7830 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.84038487777093",
- "latitude": "59.409445679223346",
- "address": "ул. Потёмина, дом 3",
- "city_id": 7956,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-29-20-10-05-mq-.jpg",
- "trainings": 0
- },
- {
- "id": 7831,
- "name": "№7831 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.92462513757323",
- "latitude": "55.68532836011041",
- "address": "2-я Вольская улица, 16к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-30-12-10-11-drs.jpg",
- "trainings": 1
- },
- {
- "id": 7832,
- "name": "№7832 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "116.31989479064941",
- "latitude": "39.91332425469612",
- "address": "Yuyuantan Park",
- "city_id": 8726,
- "country_id": 34,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-30-14-10-38-zak.jpg",
- "trainings": 1
- },
- {
- "id": 7833,
- "name": "№7833 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.545822898286474",
- "latitude": "50.43927740269709",
- "address": "Московская 17/2",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-30-15-10-46-01g.jpg",
- "trainings": 2
- },
- {
- "id": 7834,
- "name": "№7834 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.550043543377683",
- "latitude": "50.438467546730365",
- "address": "Лаврская 2",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-30-16-10-12-qyo.jpg",
- "trainings": 1
- },
- {
- "id": 7835,
- "name": "№7835 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "78.37412125390097",
- "latitude": "42.48556402424485",
- "address": "Школа №3 им. Некрасова",
- "city_id": 8727,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-30-17-10-42-ujc.jpeg",
- "trainings": 0
- },
- {
- "id": 7837,
- "name": "№7837 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.489921927419346",
- "latitude": "50.44946996703872",
- "address": "50°26'58.0\"N 30°29'24.2\"E",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-31-02-10-08-b5w.jpg",
- "trainings": 0
- },
- {
- "id": 7838,
- "name": "№7838 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.45321836679534",
- "latitude": "50.421655750675505",
- "address": "вул. Смілянська, 1",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-31-03-10-56-xfj.jpg",
- "trainings": 0
- },
- {
- "id": 7839,
- "name": "№7839 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.470520973140083",
- "latitude": "50.43511101872487",
- "address": "ул. Курская, 3",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/10/2017-10-31-03-10-26-74p.jpg",
- "trainings": 2
- },
- {
- "id": 7841,
- "name": "№7841 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "91.41539658406987",
- "latitude": "53.74776387688863",
- "address": "северный, 31",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-01-10-11-55-jvf.jpg",
- "trainings": 1
- },
- {
- "id": 7842,
- "name": "№7842 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.63902000000007",
- "latitude": "55.841458",
- "address": "Москва, улица Вильгельма Пика, Сад будущего",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-02-17-11-23-ayd.jpg",
- "trainings": 0
- },
- {
- "id": 7844,
- "name": "№7844 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.638071999999966",
- "latitude": "55.842383",
- "address": "Москва, улица Вильгельма Пика, Сад будущего",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-03-17-11-41-xvl.jpg",
- "trainings": 3
- },
- {
- "id": 7845,
- "name": "№7845 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.69733715057373",
- "latitude": "43.632212013387544",
- "address": "Полтавская 32а",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-03-22-11-05-nb6.jpg",
- "trainings": 2
- },
- {
- "id": 7846,
- "name": "№7846 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.04696609999996",
- "latitude": "55.6689695",
- "address": "Смоленская область д. Клушино",
- "city_id": 8230,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-03-23-11-05-zzs.jpg",
- "trainings": 0
- },
- {
- "id": 7847,
- "name": "№7847 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "37.989628314971924",
- "latitude": "55.76117088115099",
- "address": "Железнодорожный ул. Лесопарковая",
- "city_id": 40,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-03-23-11-57-oxy.jpg",
- "trainings": 0
- },
- {
- "id": 7848,
- "name": "№7848 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.72119003534317",
- "latitude": "43.59339209609796",
- "address": "Сочи Конституции 26а",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-04-10-11-54-fy7.jpg",
- "trainings": 2
- },
- {
- "id": 7849,
- "name": "№7849 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "113.48791390657425",
- "latitude": "52.05835699140041",
- "address": "нечаева 121",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-04-18-11-36-ktg.jpg",
- "trainings": 1
- },
- {
- "id": 7850,
- "name": "№7850 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.74796719999995",
- "latitude": "32.0117293",
- "address": "Kehilat Slonim st., 12",
- "city_id": 766,
- "country_id": 9,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-05-15-11-24-bhg.jpg",
- "trainings": 0
- },
- {
- "id": 7851,
- "name": "№7851 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.08305501937866",
- "latitude": "54.89710721537302",
- "address": "ул.Первомайская д.18",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-05-16-11-41-ctb.jpg",
- "trainings": 5
- },
- {
- "id": 7852,
- "name": "№7852 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.49927419999995",
- "latitude": "52.04342750000001",
- "address": "Балябина, 48",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-06-03-11-51-isr.jpg",
- "trainings": 0
- },
- {
- "id": 7853,
- "name": "№7853 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.40067898413088",
- "latitude": "55.186092238919244",
- "address": "ВОРКАУТ ПЛОЩАДКА ЗА ТЕПЛОТЕХОМ, ВО ДВОРЕ ДОМОВ ПР. ПОБЕДЫ 166 Б В Г",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-06-14-11-11-osj.jpg",
- "trainings": 1
- },
- {
- "id": 7854,
- "name": "№7854 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.44782066345215",
- "latitude": "55.1841359685104",
- "address": "ВОРКАУТ ПЛОЩАДКА В НИКОЛЬСКОЙ РОЩЕ",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-06-18-11-48-9cb.jpg",
- "trainings": 1
- },
- {
- "id": 7863,
- "name": "№7863 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "2.318144",
- "latitude": "48.893826",
- "address": "Square Boulay-Level, 48.893734, 2.318569",
- "city_id": 659,
- "country_id": 24,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-04-12-01-50-suh.jpg",
- "trainings": 0
- },
- {
- "id": 7864,
- "name": "№7864 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.41955374470513",
- "latitude": "55.186875538938644",
- "address": "Кудрявцева 4, Шадринская 71",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-12-13-11-58-n-d.jpg",
- "trainings": 1
- },
- {
- "id": 7865,
- "name": "№7865 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.87993140000003",
- "latitude": "55.9194214",
- "address": "улица Горького, 79с3",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-07-23-11-40-eyy.jpg",
- "trainings": 0
- },
- {
- "id": 7866,
- "name": "№7866 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.41891745899966",
- "latitude": "55.18641322985387",
- "address": "Либединского 27, Проспект победы 152",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-08-10-11-37-1me.jpg",
- "trainings": 1
- },
- {
- "id": 7868,
- "name": "№7868 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.61946201324463",
- "latitude": "55.8366266072301",
- "address": "ВДНХ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-08-17-11-38-f4u.jpg",
- "trainings": 0
- },
- {
- "id": 7871,
- "name": "№7871 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "23.99068057537079",
- "latitude": "49.81007813577195",
- "address": "ул. Владимира Великого, 99",
- "city_id": 516,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-13-17-11-46-_io.jpg",
- "trainings": 1
- },
- {
- "id": 7873,
- "name": "№7873 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.43801987171173",
- "latitude": "55.16836266696518",
- "address": "ВОРКАУТ ПЛОЩАДКА В СКВЕРЕ \"МОЛОДЕЖНЫЙ\"",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-10-18-11-30-514.jpg",
- "trainings": 3
- },
- {
- "id": 7874,
- "name": "№7874 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "61.441404819488525",
- "latitude": "55.16811448397368",
- "address": "Советская площадка в сквере молодежный (киргородок)",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-10-18-11-12-e-w.jpg",
- "trainings": 1
- },
- {
- "id": 7875,
- "name": "№7875 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.846484661102295",
- "latitude": "62.62069747609316",
- "address": "Miilunpolttajantie",
- "city_id": 702,
- "country_id": 23,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-10-23-11-05-jyq.jpg",
- "trainings": 1
- },
- {
- "id": 7876,
- "name": "№7876 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "77.34375",
- "latitude": "47.51720069783942",
- "address": "Av. de la Libertad, s/n 28905 Getafe Madrid Испания",
- "city_id": 7822,
- "country_id": 10,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-11-00-11-16-5mx.png",
- "trainings": 0
- },
- {
- "id": 7877,
- "name": "№7877 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.755324363708496",
- "latitude": "46.464083356774616",
- "address": "Трасса здоровья, Отрада",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-11-01-11-51-9z-.jpg",
- "trainings": 2
- },
- {
- "id": 7879,
- "name": "№7879 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.506439089775085",
- "latitude": "55.53954122081211",
- "address": "ул. Адмирала Лазарева, 68к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-11-17-11-12-dkn.jpg",
- "trainings": 4
- },
- {
- "id": 7880,
- "name": "№7880 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.52232660000004",
- "latitude": "55.5419321",
- "address": "ул. Адмирала Лазарева, 41",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-11-17-11-48-f3g.jpg",
- "trainings": 0
- },
- {
- "id": 7881,
- "name": "№7881 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.51198535449214",
- "latitude": "55.54200897387379",
- "address": "Бунинская aллея, 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-11-17-11-24-grz.jpg",
- "trainings": 0
- },
- {
- "id": 7882,
- "name": "№7882 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.53932297229767",
- "latitude": "55.54853708187223",
- "address": "аллея Витте, 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-11-17-11-31-gqi.jpg",
- "trainings": 1
- },
- {
- "id": 7883,
- "name": "№7883 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.533924985458384",
- "latitude": "55.54462853040157",
- "address": "ул. Горчакова, 9, корп. 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-11-18-11-30-vpl.jpg",
- "trainings": 1
- },
- {
- "id": 7884,
- "name": "№7884 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.548504173755646",
- "latitude": "55.54968114471171",
- "address": "ул. Поляны, 35",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-11-18-11-56-d3x.jpg",
- "trainings": 1
- },
- {
- "id": 7885,
- "name": "№7885 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.55143899458153",
- "latitude": "55.55119945636501",
- "address": "ул. Поляны, 11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-11-18-11-41-gyo.jpg",
- "trainings": 0
- },
- {
- "id": 7886,
- "name": "№7886 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.53139436004949",
- "latitude": "55.54394534776598",
- "address": "ул. Горчакова, 11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-11-18-11-06-pch.jpg",
- "trainings": 0
- },
- {
- "id": 7892,
- "name": "№7892 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.50718557834625",
- "latitude": "52.048010492639264",
- "address": "ул. Курнатовского, д. 70",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-12-06-11-31-aaa.jpg",
- "trainings": 0
- },
- {
- "id": 7893,
- "name": "№7893 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.42146125435829",
- "latitude": "55.18669865528271",
- "address": "Турник на против дома Турбиная 63, у коробки.",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-12-13-11-02-bzs.jpg",
- "trainings": 0
- },
- {
- "id": 7894,
- "name": "№7894 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.419662833213806",
- "latitude": "55.18623237647003",
- "address": "Во дворе домов Проспект победы 148 150 152",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-12-13-11-58-a_h.jpg",
- "trainings": 0
- },
- {
- "id": 7895,
- "name": "№7895 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.509045",
- "latitude": "55.802322",
- "address": "улица Алабяна, 10к4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-13-11-11-52-evz.jpg",
- "trainings": 1
- },
- {
- "id": 7896,
- "name": "№7896 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.48873666666668",
- "latitude": "55.81317833333333",
- "address": "Светлый проезд, 8к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-13-11-11-02-ane.jpg",
- "trainings": 0
- },
- {
- "id": 7897,
- "name": "№7897 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.92518105026238",
- "latitude": "55.68508882812233",
- "address": "1-я Вольская улица, 13к2с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-13-11-11-39-ivr.jpg",
- "trainings": 0
- },
- {
- "id": 7898,
- "name": "№7898 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.514222860336304",
- "latitude": "55.82367709903483",
- "address": "6-й Новоподмосковный пер., 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-13-11-11-54-9_u.jpg",
- "trainings": 0
- },
- {
- "id": 7899,
- "name": "№7899 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.92806429828647",
- "latitude": "55.68533694098698",
- "address": "1-я Вольская улица, 15к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-13-11-11-04-s2q.jpg",
- "trainings": 0
- },
- {
- "id": 7900,
- "name": "№7900 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.92251124180302",
- "latitude": "55.689019180914364",
- "address": "Наташинская улица, 16",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-13-11-11-36-vn7.jpg",
- "trainings": 0
- },
- {
- "id": 7902,
- "name": "№7902 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.748152136802673",
- "latitude": "46.47211582504593",
- "address": "ул. Большая Арнаутская, 2б",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-13-16-11-38-taz.jpg",
- "trainings": 1
- },
- {
- "id": 7904,
- "name": "№7904 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "132.92879819869995",
- "latitude": "48.78570503138391",
- "address": "пр- 60 лет СССР, д.14",
- "city_id": 633,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-14-04-11-08-nam.jpg",
- "trainings": 1
- },
- {
- "id": 7905,
- "name": "№7905 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.74725091457367",
- "latitude": "46.468502469437134",
- "address": "ул. Канатная, 79/1, стадион Спартак",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-14-21-11-54-hn6.jpg",
- "trainings": 1
- },
- {
- "id": 7906,
- "name": "№7906 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "91.4502282378204",
- "latitude": "53.72665277107473",
- "address": "чкалова, 39",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-15-07-11-03-lmd.jpg",
- "trainings": 0
- },
- {
- "id": 7907,
- "name": "№7907 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "91.45138695211483",
- "latitude": "53.72736369507806",
- "address": "чкалова, 39",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-15-07-11-34-wqp.jpg",
- "trainings": 0
- },
- {
- "id": 7908,
- "name": "№7908 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.73522925376892",
- "latitude": "46.47979248573676",
- "address": "Александровский проспект/ул. Жуковского",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-15-10-11-54-hqo.jpg",
- "trainings": 4
- },
- {
- "id": 7909,
- "name": "№7909 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "84.27608013153076",
- "latitude": "49.719845849930294",
- "address": "Жаксыбаева, 33, во дворе",
- "city_id": 8003,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-15-13-11-42-jwq.jpg",
- "trainings": 0
- },
- {
- "id": 7910,
- "name": "№7910 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.709422399999994",
- "latitude": "47.21364850000001",
- "address": "Будённовский 1",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-15-14-11-48-1iv.jpg",
- "trainings": 0
- },
- {
- "id": 7911,
- "name": "№7911 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.70647543668747",
- "latitude": "47.21246288401655",
- "address": "Береговая 8",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-15-14-11-20-7sl.jpg",
- "trainings": 0
- },
- {
- "id": 7912,
- "name": "№7912 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "34.97369080781937",
- "latitude": "57.03348256427767",
- "address": "Торжок",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-15-20-11-19-2z6.jpg",
- "trainings": 5
- },
- {
- "id": 7913,
- "name": "№7913 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.63464839073788",
- "latitude": "56.8273428691658",
- "address": "ул. Мичурина, д. 181 (гимназия №40)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-17-20-11-27-oej.jpg",
- "trainings": 0
- },
- {
- "id": 7914,
- "name": "№7914 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.78105437755585",
- "latitude": "55.71164911988623",
- "address": "Фёдора Полетаева 13",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-17-22-11-27-qkg.jpg",
- "trainings": 2
- },
- {
- "id": 7915,
- "name": "№7915 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "-3.7366390228271484",
- "latitude": "40.300836108166145",
- "address": "40,3000902, -3,7365220",
- "city_id": 777,
- "country_id": 10,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-18-00-11-52-ejp.jpg",
- "trainings": 0
- },
- {
- "id": 7916,
- "name": "№7916 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.41643077135086",
- "latitude": "55.18214818399908",
- "address": "Российская, 47а во дворе",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-18-15-11-14-hfz.jpg",
- "trainings": 0
- },
- {
- "id": 7917,
- "name": "№7917 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "61.41643613576889",
- "latitude": "55.18155397338386",
- "address": "Российская, 49а школа №50 Стадион",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-18-15-11-03-dmp.jpg",
- "trainings": 0
- },
- {
- "id": 7918,
- "name": "№7918 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.41585409641266",
- "latitude": "55.17713387099234",
- "address": "Площадка во дворе домов Российская, 55 Северная, 7",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-18-15-11-24-acz.jpg",
- "trainings": 0
- },
- {
- "id": 7919,
- "name": "№7919 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.416822373867035",
- "latitude": "55.177238023188586",
- "address": "Северная, 5",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-18-15-11-28-qtt.jpg",
- "trainings": 0
- },
- {
- "id": 7920,
- "name": "№7920 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.41650440000001",
- "latitude": "55.1761875",
- "address": "Турник между домами Российская, 57 Российская, 57а (Детский сад)",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-18-15-11-23-len.jpg",
- "trainings": 0
- },
- {
- "id": 7921,
- "name": "№7921 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "61.418461774868774",
- "latitude": "55.17553222659401",
- "address": "Площадка во дворе домов Российская, 59Б Лобкова, 2",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-18-15-11-21-bq5.jpg",
- "trainings": 0
- },
- {
- "id": 7922,
- "name": "№7922 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.4192470908165",
- "latitude": "55.176260819821145",
- "address": "Турник во дворе Российская, 57Б",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-18-15-11-53--xl.jpg",
- "trainings": 0
- },
- {
- "id": 7923,
- "name": "№7923 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.42048772016824",
- "latitude": "55.17424032138083",
- "address": "Турник во дворе 3 Интернационала, 59",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-18-15-11-53-tdn.jpg",
- "trainings": 0
- },
- {
- "id": 7924,
- "name": "№7924 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "61.420813500881195",
- "latitude": "55.17332293876746",
- "address": "Стадион школа №8 3 Интернационала, 61",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-18-16-11-33--jq.jpg",
- "trainings": 1
- },
- {
- "id": 7925,
- "name": "№7925 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.52971529960632",
- "latitude": "55.54986322060665",
- "address": "ул. Бартеневская 27",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-18-16-11-43-cxc.jpg",
- "trainings": 0
- },
- {
- "id": 7926,
- "name": "№7926 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "32.03720837831497",
- "latitude": "46.95032266397466",
- "address": "вулиця Олеся Бердника, 20",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-18-22-11-48-rpu.jpg",
- "trainings": 1
- },
- {
- "id": 7927,
- "name": "№7927 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.51000752886353",
- "latitude": "52.04681856708543",
- "address": "ул. Журавлева, д.100а",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-19-02-11-25-xp9.jpg",
- "trainings": 0
- },
- {
- "id": 7928,
- "name": "№7928 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.50845962762833",
- "latitude": "52.047398501280874",
- "address": "ул. Новобульварна, д.38",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-19-02-11-10-r9d.jpg",
- "trainings": 0
- },
- {
- "id": 7929,
- "name": "№7929 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.50570097565651",
- "latitude": "52.04834452751337",
- "address": "ул. Новобульварна, д.42а",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-19-02-11-23-w0u.jpg",
- "trainings": 0
- },
- {
- "id": 7930,
- "name": "№7930 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.49147656235505",
- "latitude": "52.054538978525535",
- "address": "ул.Шилова, д.81",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-19-11-11-36-vdl.jpg",
- "trainings": 0
- },
- {
- "id": 7931,
- "name": "№7931 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.50467503070831",
- "latitude": "52.04901011548469",
- "address": "ул. Новобульварна, д.42в",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-19-12-11-37-ywq.jpg",
- "trainings": 0
- },
- {
- "id": 7932,
- "name": "№7932 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "113.50079737301633",
- "latitude": "52.04706827871348",
- "address": "ул.Богомягкова, д.73",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-19-12-11-22-czp.jpg",
- "trainings": 0
- },
- {
- "id": 7933,
- "name": "№7933 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.49100985798646",
- "latitude": "52.05786388411414",
- "address": "ул.Июньская, д.8",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-19-12-11-43-bdh.jpg",
- "trainings": 0
- },
- {
- "id": 7934,
- "name": "№7934 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.49216857228089",
- "latitude": "52.058289375004236",
- "address": "ул.Июньская, д.12",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-19-12-11-02-si4.jpg",
- "trainings": 0
- },
- {
- "id": 7936,
- "name": "№7936 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.49160999059677",
- "latitude": "52.05585346730606",
- "address": "ул.Шилова, д.85",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-19-12-11-44-xpc.jpg",
- "trainings": 0
- },
- {
- "id": 7937,
- "name": "№7937 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.49168577465821",
- "latitude": "52.056673147757294",
- "address": "ул.Шилова, д.87",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-19-12-11-57-goa.jpg",
- "trainings": 0
- },
- {
- "id": 7938,
- "name": "№7938 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "20.51571786403656",
- "latitude": "54.725658007713314",
- "address": "озеро верхнее",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-19-16-11-29-dh_.jpg",
- "trainings": 3
- },
- {
- "id": 7939,
- "name": "№7939 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.66383111476898",
- "latitude": "55.74127851857698",
- "address": "Таганский детский парк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-19-20-11-41-boc.jpg",
- "trainings": 0
- },
- {
- "id": 7940,
- "name": "№7940 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.71579074859619",
- "latitude": "47.277307385108074",
- "address": "Парк Дружба",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-20-00-11-08-bsg.jpg",
- "trainings": 3
- },
- {
- "id": 7941,
- "name": "№7941 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "86.09033703804016",
- "latitude": "55.346126027631556",
- "address": "мичурина 26",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-20-12-11-02-mnx.jpg",
- "trainings": 0
- },
- {
- "id": 7942,
- "name": "№7942 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "86.09480023384094",
- "latitude": "55.35099706005522",
- "address": "советский 77",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-20-12-11-03-tjz.jpg",
- "trainings": 0
- },
- {
- "id": 7943,
- "name": "№7943 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.62206774609376",
- "latitude": "55.783457576160195",
- "address": "Суворовская площадь, 2 стр 27",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-20-16-11-49-fqe.jpg",
- "trainings": 5
- },
- {
- "id": 7944,
- "name": "№7944 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "104.37400643745116",
- "latitude": "52.242561805085955",
- "address": "Посёлок Новая разводная",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-21-14-11-11-ahd.jpg",
- "trainings": 0
- },
- {
- "id": 7945,
- "name": "№7945 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.52054214477539",
- "latitude": "55.80009901404464",
- "address": "Чапаевский переулок д 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-21-19-11-27-fsw.jpg",
- "trainings": 0
- },
- {
- "id": 7946,
- "name": "№7946 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "117.01010227203369",
- "latitude": "52.50898625656339",
- "address": "пгт. Чернышевск, школа 78",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-22-13-11-39-49x.jpg",
- "trainings": 2
- },
- {
- "id": 7947,
- "name": "№7947 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "24.14417266845703",
- "latitude": "56.961765586081015",
- "address": "Кр. Барона",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-22-18-11-23-nqg.jpg",
- "trainings": 2
- },
- {
- "id": 7948,
- "name": "№7948 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "56.034178733825684",
- "latitude": "54.746201229223814",
- "address": "Менделеева 205",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-25-07-11-08-w1j.jpg",
- "trainings": 1
- },
- {
- "id": 7953,
- "name": "№7953 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "86.17849588394165",
- "latitude": "55.33674828984187",
- "address": "Строителей бульвар, 50а",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-25-14-11-57-6ci.jpg",
- "trainings": 2
- },
- {
- "id": 7954,
- "name": "№7954 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "86.17592096328735",
- "latitude": "55.33984800898431",
- "address": "строителей 44б",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-25-14-11-41-7g_.jpg",
- "trainings": 0
- },
- {
- "id": 7955,
- "name": "№7955 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "33.877689242362976",
- "latitude": "47.26689923112077",
- "address": "Нововоронцовский район, село Новоалександровка",
- "city_id": 549,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-25-14-11-14-dfb.jpg",
- "trainings": 2
- },
- {
- "id": 7956,
- "name": "№7956 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "86.1794775724411",
- "latitude": "55.34118117973267",
- "address": "ленинградский 41",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-25-14-11-58-elb.jpg",
- "trainings": 0
- },
- {
- "id": 7957,
- "name": "№7957 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "86.1843752861023",
- "latitude": "55.34111711534537",
- "address": "ленинградский 32б",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-25-15-11-43-rv-.jpg",
- "trainings": 0
- },
- {
- "id": 7958,
- "name": "№7958 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "86.18802309036255",
- "latitude": "55.34094627647268",
- "address": "ленинградский 34б",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-25-15-11-45-hec.jpg",
- "trainings": 0
- },
- {
- "id": 7959,
- "name": "№7959 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "86.18836641311646",
- "latitude": "55.33948191305507",
- "address": "ленинградский 34в",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-25-15-11-03-bny.jpg",
- "trainings": 0
- },
- {
- "id": 7960,
- "name": "№7960 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "86.18883848190308",
- "latitude": "55.338066310296036",
- "address": "ленинградский 40в",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-25-15-11-32-lup.jpg",
- "trainings": 1
- },
- {
- "id": 7961,
- "name": "№7961 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.42520695924759",
- "latitude": "55.18635181786804",
- "address": "Турник во дворе домов турбинная 21, проспект победы 140",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-26-10-11-32-rac.jpg",
- "trainings": 0
- },
- {
- "id": 7962,
- "name": "№7962 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.418970823287964",
- "latitude": "55.18453412606023",
- "address": "Турник во дворе домов проспект победы 141, 143",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-26-10-11-57-9uj.jpg",
- "trainings": 0
- },
- {
- "id": 7963,
- "name": "№7963 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.41975671052933",
- "latitude": "55.18472860926323",
- "address": "Турник во дворе домов проспект победы 135,137, 139.",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-26-10-11-04-qcy.jpg",
- "trainings": 0
- },
- {
- "id": 7964,
- "name": "№7964 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.42122119665146",
- "latitude": "55.18479905176398",
- "address": "Турник во дворе домов проспект победы 133, Кудрявцева 27.",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-26-11-11-14-vdz.jpg",
- "trainings": 0
- },
- {
- "id": 7965,
- "name": "№7965 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.42241209745407",
- "latitude": "55.184881744975534",
- "address": "Площадка во дворе домов проспект победы 131, Ульяны Громовой 10, 12.",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-26-11-11-30--ft.jpg",
- "trainings": 0
- },
- {
- "id": 7966,
- "name": "№7966 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.425818502902985",
- "latitude": "55.18495831261095",
- "address": "Турник во дворе домов проспект победы 125, 127 у хоккейной коробки.",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-26-11-11-03-voy.jpg",
- "trainings": 0
- },
- {
- "id": 7968,
- "name": "№7968 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.42222970724106",
- "latitude": "55.18612212255401",
- "address": "Во дворе Проспект победы 144",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-26-15-11-51-s2o.jpg",
- "trainings": 0
- },
- {
- "id": 7969,
- "name": "№7969 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.42346352338791",
- "latitude": "55.18620481301963",
- "address": "Площадка во дворе домов проспект победы 142, Артилерийская 26.",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-26-15-11-46-kaf.jpg",
- "trainings": 0
- },
- {
- "id": 7970,
- "name": "№7970 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.74465811252594",
- "latitude": "55.901691435830166",
- "address": "ул. Мира",
- "city_id": 8398,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-27-09-11-55-biy.jpg",
- "trainings": 0
- },
- {
- "id": 7976,
- "name": "№7976 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.47129678726196",
- "latitude": "56.00706760297338",
- "address": "Улица Западная",
- "city_id": 73,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-27-16-11-37-roo.jpg",
- "trainings": 0
- },
- {
- "id": 7977,
- "name": "№7977 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.42445799999996",
- "latitude": "52.0401625",
- "address": "пер. Авиационный, д.10",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-27-16-11-57-zuj.jpg",
- "trainings": 2
- },
- {
- "id": 7978,
- "name": "№7978 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.177826165760052",
- "latitude": "45.47533413562049",
- "address": "Center Stadium",
- "city_id": 7811,
- "country_id": 31,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-27-19-11-37-l4_.jpg",
- "trainings": 0
- },
- {
- "id": 7979,
- "name": "№7979 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.628274381160736",
- "latitude": "56.90655223448701",
- "address": "ул. Таганская, 79",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-27-20-11-06-gpd.jpg",
- "trainings": 0
- },
- {
- "id": 7980,
- "name": "№7980 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.96149480342865",
- "latitude": "57.05593780339325",
- "address": "Улица Зеленый городок",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-28-00-11-22-cv6.jpg",
- "trainings": 0
- },
- {
- "id": 7981,
- "name": "№7981 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.976590275764465",
- "latitude": "57.03178072391568",
- "address": "улица Максима Горького",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-28-00-11-59-h-j.jpg",
- "trainings": 0
- },
- {
- "id": 7982,
- "name": "№7982 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.953104853630066",
- "latitude": "57.04045550092989",
- "address": "улица Володарского, д.3",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-28-00-11-53-znk.jpg",
- "trainings": 1
- },
- {
- "id": 7983,
- "name": "№7983 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.99183863401413",
- "latitude": "57.0314070675702",
- "address": "улица Калининское шоссе",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-28-00-11-09-iaz.jpg",
- "trainings": 0
- },
- {
- "id": 7987,
- "name": "№7987 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "34.97231483459473",
- "latitude": "57.04833004741989",
- "address": "Ул. Авангард.",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-01-20-05-57-_ck.jpg",
- "trainings": 4
- },
- {
- "id": 7988,
- "name": "№7988 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.13746631145477",
- "latitude": "56.32895884083149",
- "address": "ул. Дружбы",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/11/2017-11-30-14-11-27-bb9.jpg",
- "trainings": 1
- },
- {
- "id": 7991,
- "name": "№7991 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.70184326171875",
- "latitude": "47.22007819464048",
- "address": "Халтуринский, д. 55",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-01-12-12-08-iz3.jpg",
- "trainings": 0
- },
- {
- "id": 7992,
- "name": "№7992 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "34.972572326660156",
- "latitude": "57.03771452524492",
- "address": "Клуб \" Борец\"",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-02-16-12-15-8h-.jpg",
- "trainings": 2
- },
- {
- "id": 7993,
- "name": "№7993 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.95181202888489",
- "latitude": "57.03850717994005",
- "address": "Гимназия N2",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-02-16-12-13-qb3.jpg",
- "trainings": 0
- },
- {
- "id": 7994,
- "name": "№7994 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "34.1489252470825",
- "latitude": "44.489278619099224",
- "address": "стадион Авангард",
- "city_id": 557,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-02-18-12-43-gs4.jpg",
- "trainings": 1
- },
- {
- "id": 7995,
- "name": "№7995 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.41697257757187",
- "latitude": "55.17526521181335",
- "address": "Турник во дворе дома Российская, 59а",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-03-07-12-05-ykd.jpg",
- "trainings": 0
- },
- {
- "id": 7996,
- "name": "№7996 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "61.42111927270889",
- "latitude": "55.181446769494336",
- "address": "Стадион школа №54 Кудрявцева, 18",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-03-07-12-06-_bd.jpg",
- "trainings": 1
- },
- {
- "id": 7997,
- "name": "№7997 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.84967064857483",
- "latitude": "55.75722280203862",
- "address": "Улица Новая, 1А",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-03-08-12-04-05u.jpg",
- "trainings": 1
- },
- {
- "id": 7999,
- "name": "№7999 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.426785087310805",
- "latitude": "60.049623003746554",
- "address": "Охтинская аллея 16",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-04-11-12-38-kme.jpg",
- "trainings": 3
- },
- {
- "id": 8001,
- "name": "№8001 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "111.22807502746582",
- "latitude": "50.98128990891375",
- "address": "озеро арей",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-05-11-12-36-vlx.jpg",
- "trainings": 0
- },
- {
- "id": 8002,
- "name": "№8002 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "24.141801595687866",
- "latitude": "56.956500802705",
- "address": "Зиедоньдарзс",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-07-00-12-48-k51.jpg",
- "trainings": 0
- },
- {
- "id": 8003,
- "name": "№8003 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.619034965606716",
- "latitude": "56.834645621532644",
- "address": "ул. Мамина-Сибиряка, д. 102",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-08-08-12-37-qke.jpg",
- "trainings": 0
- },
- {
- "id": 8004,
- "name": "№8004 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.61698496341705",
- "latitude": "56.90508916769041",
- "address": "проспект Космонавтов, д. 80/3",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-08-09-12-50-oo2.jpg",
- "trainings": 0
- },
- {
- "id": 8006,
- "name": "№8006 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "24.125783443450928",
- "latitude": "56.96991868243956",
- "address": "Grostonas 21",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-09-01-12-33-8ju.jpg",
- "trainings": 0
- },
- {
- "id": 8007,
- "name": "№8007 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "26.26159965991974",
- "latitude": "50.61521652122935",
- "address": "парк",
- "city_id": 532,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-09-15-12-13-vsl.jpg",
- "trainings": 0
- },
- {
- "id": 8008,
- "name": "№8008 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.49927550000007",
- "latitude": "55.947064",
- "address": "центральный парк",
- "city_id": 35,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-11-09-12-58-jty.jpg",
- "trainings": 2
- },
- {
- "id": 8010,
- "name": "№8010 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "49.593132734298706",
- "latitude": "58.586324832478624",
- "address": "Риммы Юровской, 4. (Во дворе)",
- "city_id": 55,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-11-21-12-37-agf.jpg",
- "trainings": 0
- },
- {
- "id": 8011,
- "name": "№8011 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "35.10422859999994",
- "latitude": "47.8626799",
- "address": "ул.Добролюбова,4",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-12-16-12-15-i6l.jpg",
- "trainings": 0
- },
- {
- "id": 8013,
- "name": "№8013 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "101.61851674318314",
- "latitude": "56.16115942020702",
- "address": "Комсомольская 44",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-14-16-12-31-0er.jpg",
- "trainings": 0
- },
- {
- "id": 8017,
- "name": "№8017 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "55.9298837184906",
- "latitude": "53.62796506398148",
- "address": "проспект октября 11 за зданием.",
- "city_id": 564,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-15-20-12-59-fxh.jpg",
- "trainings": 2
- },
- {
- "id": 8018,
- "name": "№8018 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.11683750152588",
- "latitude": "55.865559104283115",
- "address": "Улица победы дом 1 корп 1",
- "city_id": 794,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-15-22-12-05-sbz.jpeg",
- "trainings": 0
- },
- {
- "id": 8022,
- "name": "№8022 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "34.96769607067108",
- "latitude": "57.03895536468421",
- "address": "ул. Карла Маркса, д. 25",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-16-20-12-08-iao.jpg",
- "trainings": 0
- },
- {
- "id": 8023,
- "name": "№8023 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "101.62525981664658",
- "latitude": "56.150622038163256",
- "address": "Подбельского 31",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-17-15-12-28-skn.jpg",
- "trainings": 0
- },
- {
- "id": 8024,
- "name": "№8024 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "101.6394191980362",
- "latitude": "56.14482928055156",
- "address": "Космонавтов 9",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-17-15-12-01-cax.jpg",
- "trainings": 0
- },
- {
- "id": 8025,
- "name": "№8025 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "101.61968618631363",
- "latitude": "56.15726388333651",
- "address": "Кирова 9 школа 31",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-17-15-12-39-rhp.jpg",
- "trainings": 0
- },
- {
- "id": 8027,
- "name": "№8027 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "116.4162290096283",
- "latitude": "39.955716135006085",
- "address": "Temple of the Earth",
- "city_id": 8726,
- "country_id": 34,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-18-12-12-51-yrp.jpg",
- "trainings": 1
- },
- {
- "id": 8031,
- "name": "№8031 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "74.61105108261108",
- "latitude": "42.83386234603078",
- "address": "8 микрорайон, 19/1 (Школа-гимназия №64)",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-23-13-12-05-3iz.jpg",
- "trainings": 0
- },
- {
- "id": 8032,
- "name": "№8032 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.61051732301712",
- "latitude": "42.82912577432371",
- "address": "8 микрорайон, 45",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-23-15-12-41-2bs.jpg",
- "trainings": 0
- },
- {
- "id": 8033,
- "name": "№8033 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.61114764213562",
- "latitude": "42.82910610341857",
- "address": "8 микрорайон, 46",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-24-09-12-59-r1i.jpg",
- "trainings": 0
- },
- {
- "id": 8034,
- "name": "№8034 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "74.61448967456818",
- "latitude": "42.82822877468353",
- "address": "7 микрорайон, 29",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-24-09-12-45-n--.jpg",
- "trainings": 0
- },
- {
- "id": 8035,
- "name": "№8035 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.61194157600403",
- "latitude": "42.82914544522261",
- "address": "8 микрорайон, 47",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-24-09-12-06--nc.jpg",
- "trainings": 0
- },
- {
- "id": 8036,
- "name": "№8036 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "83.05385112762451",
- "latitude": "54.9791160093698",
- "address": "Заречная 23",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-24-14-12-09-rvs.jpg",
- "trainings": 2
- },
- {
- "id": 8037,
- "name": "№8037 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "34.97439622879028",
- "latitude": "57.06044180698002",
- "address": "Торжокский педагогический колледж",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-24-15-12-05-2b3.jpg",
- "trainings": 0
- },
- {
- "id": 8039,
- "name": "№8039 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.838762",
- "latitude": "55.410837",
- "address": "ул. Ильюшина",
- "city_id": 36,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-24-20-12-44-9cu.jpg",
- "trainings": 0
- },
- {
- "id": 8040,
- "name": "№8040 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.581885347360185",
- "latitude": "55.57358741225448",
- "address": "ул. Ратная, 8 к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-25-12-12-13-3v5.jpg",
- "trainings": 4
- },
- {
- "id": 8041,
- "name": "№8041 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.58814965242618",
- "latitude": "55.570924529050004",
- "address": "ул. Старокачаловская, 18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-25-13-12-32-dbn.jpg",
- "trainings": 1
- },
- {
- "id": 8042,
- "name": "№8042 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.17015867990108",
- "latitude": "44.50207329345694",
- "address": "Московская, 23",
- "city_id": 557,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-25-13-12-17-8o4.jpg",
- "trainings": 0
- },
- {
- "id": 8043,
- "name": "№8043 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "39.723208",
- "latitude": "43.619255",
- "address": "Донская 58",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-26-11-12-26-8sp.jpg",
- "trainings": 1
- },
- {
- "id": 8044,
- "name": "№8044 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.45286989212036",
- "latitude": "45.461300804278125",
- "address": "Ленина 124",
- "city_id": 7933,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-27-01-12-46-lzb.jpg",
- "trainings": 0
- },
- {
- "id": 8045,
- "name": "№8045 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.92267850185249",
- "latitude": "55.68536896939823",
- "address": "2-я Вольская ул., 16к2 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-28-10-12-40-kaf.jpg",
- "trainings": 1
- },
- {
- "id": 8046,
- "name": "№8046 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.81042600000001",
- "latitude": "55.807517",
- "address": "13-парковая д 33",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-28-14-12-16-mlo.jpg",
- "trainings": 1
- },
- {
- "id": 8048,
- "name": "№8048 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "61.30150079727173",
- "latitude": "55.1977323277577",
- "address": "Захаренко 13",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-30-15-12-56-oe7.jpg",
- "trainings": 2
- },
- {
- "id": 8049,
- "name": "№8049 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "73.1519522584747",
- "latitude": "49.777242844782876",
- "address": "проспект республики 4",
- "city_id": 412,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-31-13-12-41-1i0.jpg",
- "trainings": 4
- },
- {
- "id": 8050,
- "name": "№8050 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.607287000663746",
- "latitude": "56.90044070087429",
- "address": "ул. Восстания, д. 15",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-31-13-12-08-uka.jpg",
- "trainings": 0
- },
- {
- "id": 8051,
- "name": "№8051 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.60442954301834",
- "latitude": "56.90164582834905",
- "address": "ул. Восстания, д. 25 (заброшенный корт)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-31-13-12-57-mxp.jpg",
- "trainings": 0
- },
- {
- "id": 8052,
- "name": "№8052 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.60594261971278",
- "latitude": "56.89955044955894",
- "address": "ул. Избирателей, д. 30",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-31-14-12-20-jgd.png",
- "trainings": 0
- },
- {
- "id": 8053,
- "name": "№8053 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.60730461838534",
- "latitude": "56.89928077762007",
- "address": "ул. Ильича, д. 67А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-31-14-12-32-vmf.jpg",
- "trainings": 0
- },
- {
- "id": 8054,
- "name": "№8054 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.60826912522316",
- "latitude": "56.90027265148859",
- "address": "ул. Восстания, д. 13",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-31-14-12-39-jpp.jpg",
- "trainings": 0
- },
- {
- "id": 8055,
- "name": "№8055 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.610376849212685",
- "latitude": "56.89655122991703",
- "address": "ул. Ильича, д. 48А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-31-14-12-35-q79.jpg",
- "trainings": 0
- },
- {
- "id": 8056,
- "name": "№8056 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.61265196693421",
- "latitude": "56.897952828403646",
- "address": "ул. Ильича, д. 52В",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-31-14-12-01-y3f.jpg",
- "trainings": 0
- },
- {
- "id": 8057,
- "name": "№8057 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.60339010052485",
- "latitude": "56.898216241549534",
- "address": "ул. Победы, д. 28",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-31-14-12-49-pct.jpg",
- "trainings": 0
- },
- {
- "id": 8058,
- "name": "№8058 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.601833164691925",
- "latitude": "56.898697280813295",
- "address": "ул. Победы, д. 34",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-31-14-12-36-v61.jpg",
- "trainings": 0
- },
- {
- "id": 8059,
- "name": "№8059 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.594864785671234",
- "latitude": "56.899425284631924",
- "address": "ул. 40 лет Октября, д. 60",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-31-15-12-58-f4-.jpg",
- "trainings": 0
- },
- {
- "id": 8060,
- "name": "№8060 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.600813925266266",
- "latitude": "56.89689112556588",
- "address": "ул. Стахановская, д. 43",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2017/12/2017-12-31-15-12-45-w0i.jpg",
- "trainings": 0
- },
- {
- "id": 8062,
- "name": "№8062 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.609914660453796",
- "latitude": "56.90235326936224",
- "address": "ул. Индустрии, д. 96Б",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-01-16-01-43-qhx.jpg",
- "trainings": 0
- },
- {
- "id": 8063,
- "name": "№8063 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.92034673690796",
- "latitude": "43.42077505158532",
- "address": "Адлер улица Карла Маркса 8",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-01-17-01-24-ftz.jpeg",
- "trainings": 7
- },
- {
- "id": 8064,
- "name": "№8064 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "23.28272894024849",
- "latitude": "42.703851834564475",
- "address": "парк \"Лебеда\"",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-02-00-01-06-6yr.jpg",
- "trainings": 0
- },
- {
- "id": 8065,
- "name": "№8065 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "41.928420066833496",
- "latitude": "45.00659442957873",
- "address": "Доваторцев,75",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-03-09-01-07-w7q.jpg",
- "trainings": 0
- },
- {
- "id": 8067,
- "name": "№8067 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.401829719510715",
- "latitude": "55.83996000096325",
- "address": "Василия Петушкова 19",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-03-15-01-21-ynu.jpg",
- "trainings": 1
- },
- {
- "id": 8068,
- "name": "№8068 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.28585998175356",
- "latitude": "59.406026990593254",
- "address": "Olevi 30",
- "city_id": 8734,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-04-10-01-42-par.jpg",
- "trainings": 1
- },
- {
- "id": 8069,
- "name": "№8069 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "27.28234669101562",
- "latitude": "59.40257358808488",
- "address": "Pärna 20",
- "city_id": 8734,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-04-11-01-05-lxx.jpg",
- "trainings": 1
- },
- {
- "id": 8070,
- "name": "№8070 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.2690212726593",
- "latitude": "59.39908715774037",
- "address": "Парковый пруд (Rahvapargi tilk)",
- "city_id": 8734,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-04-11-01-50-pl8.jpg",
- "trainings": 1
- },
- {
- "id": 8071,
- "name": "№8071 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "54.09948825763422",
- "latitude": "54.1052332298276",
- "address": "РФ, Республика Башкортостан, город Белебей",
- "city_id": 8008,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-04-11-01-24-4ig.jpg",
- "trainings": 1
- },
- {
- "id": 8072,
- "name": "№8072 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-0.329328",
- "latitude": "51.529566",
- "address": "Curnell Concrete Skatepark and Bowl, London",
- "city_id": 7676,
- "country_id": 6,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-04-12-01-36-po1.jpg",
- "trainings": 0
- },
- {
- "id": 8073,
- "name": "№8073 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.652490854263306",
- "latitude": "51.65868039308731",
- "address": "Ленинградская ул., 25, Гимназия № 1",
- "city_id": 7923,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-04-14-01-43-x28.jpg",
- "trainings": 2
- },
- {
- "id": 8074,
- "name": "№8074 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.64726859331131",
- "latitude": "51.66386645538801",
- "address": " ул. Молодежная улица, 14, Гимназия № 2",
- "city_id": 7923,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-04-14-01-02-cfk.jpg",
- "trainings": 0
- },
- {
- "id": 8075,
- "name": "№8075 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.658740401268005",
- "latitude": "51.66237076075924",
- "address": "ул. Космонавтов, 34, МБОУ Лицей № 3",
- "city_id": 7923,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-04-14-01-00-8-q.jpg",
- "trainings": 0
- },
- {
- "id": 8076,
- "name": "№8076 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "35.67038118839264",
- "latitude": "51.65644739168807",
- "address": "ул. Строителей, 10, Школа № 4",
- "city_id": 7923,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-27-00-10-11-kru.jpg",
- "trainings": 11
- },
- {
- "id": 8077,
- "name": "№8077 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.06273174285889",
- "latitude": "44.99394031891058",
- "address": "Сквер имени Воробьёва",
- "city_id": 7447,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-04-20-01-17-yqx.jpg",
- "trainings": 2
- },
- {
- "id": 8078,
- "name": "№8078 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.678025418246534",
- "latitude": "51.657056356022565",
- "address": "ул. Энергетиков, МБОУ СОШ № 5",
- "city_id": 7923,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-04-22-01-43-tiz.jpg",
- "trainings": 1
- },
- {
- "id": 8079,
- "name": "№8079 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.6906720995903",
- "latitude": "51.657703676505015",
- "address": "ул. Набережная, 9А, Школа № 6",
- "city_id": 7923,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-04-22-01-44-tux.jpg",
- "trainings": 0
- },
- {
- "id": 8080,
- "name": "№8080 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.66144406795502",
- "latitude": "51.66080014506917",
- "address": "Коммунистический проспект, 37, Комбинат спортивных сооружений, Стадион \"Энергетик\"",
- "city_id": 7923,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-04-23-01-53-mux.jpg",
- "trainings": 3
- },
- {
- "id": 8081,
- "name": "№8081 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "87.13670700788498",
- "latitude": "53.89378593732632",
- "address": "Косыгина 75",
- "city_id": 568,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-05-12-01-57-_qg.jpg",
- "trainings": 0
- },
- {
- "id": 8082,
- "name": "№8082 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.676979800000026",
- "latitude": "44.9030953",
- "address": "Табачное",
- "city_id": 479,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-05-18-01-35-d7l.jpg",
- "trainings": 0
- },
- {
- "id": 8083,
- "name": "№8083 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.586141",
- "latitude": "55.534390",
- "address": "Ленинский район, Новодрожжино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-07-13-01-30-uy1.jpg",
- "trainings": 0
- },
- {
- "id": 8084,
- "name": "№8084 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.855428",
- "latitude": "55.919322",
- "address": "Советская 13к1",
- "city_id": 47,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-07-15-01-08-gda.jpg",
- "trainings": 0
- },
- {
- "id": 8085,
- "name": "№8085 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.37349205",
- "latitude": "60.0474572",
- "address": "проспект Культуры 22к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/IMG_20180107_154139.jpg",
- "trainings": 0
- },
- {
- "id": 8086,
- "name": "№8086 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "24.110162258148193",
- "latitude": "56.93184002133416",
- "address": "Луцавсала",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-08-00-01-46-tmm.jpg",
- "trainings": 0
- },
- {
- "id": 8087,
- "name": "№8087 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.627400",
- "latitude": "55.876187",
- "address": "Ясный проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-08-17-01-26-eg5.jpg",
- "trainings": 0
- },
- {
- "id": 8088,
- "name": "№8088 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.633365",
- "latitude": "55.871999",
- "address": "проезд Дежнева, д. 30",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-08-18-01-37-n_5.jpg",
- "trainings": 0
- },
- {
- "id": 8089,
- "name": "№8089 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.621442",
- "latitude": "55.878403",
- "address": "улица Молодцова, д. 33, кор. 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-08-18-01-40-l3p.jpg",
- "trainings": 1
- },
- {
- "id": 8090,
- "name": "№8090 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.639253",
- "latitude": "55.874845",
- "address": "улица Полярная, д. 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-08-19-01-33-1wz.jpg",
- "trainings": 0
- },
- {
- "id": 8091,
- "name": "№8091 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.610827445951145",
- "latitude": "55.66730081708476",
- "address": "криворожская улица 21к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-09-23-01-46-fhh.jpg",
- "trainings": 0
- },
- {
- "id": 8096,
- "name": "№8096 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "43.992263",
- "latitude": "56.274355",
- "address": "улица Корейская",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-15-10-01-18-tak.jpg",
- "trainings": 0
- },
- {
- "id": 8097,
- "name": "№8097 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.893547",
- "latitude": "56.421378",
- "address": "Клинский район, Раздолье",
- "city_id": 58,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-15-10-01-35-qnz.jpg",
- "trainings": 1
- },
- {
- "id": 8098,
- "name": "№8098 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "28.4108966588974",
- "latitude": "49.23067921203196",
- "address": "Василия Порика 26",
- "city_id": 486,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-15-11-01-09-xic.jpg",
- "trainings": 2
- },
- {
- "id": 8099,
- "name": "№8099 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "28.413557410240173",
- "latitude": "49.232661896494804",
- "address": "Юности 4",
- "city_id": 486,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-15-11-01-50-ibk.jpg",
- "trainings": 2
- },
- {
- "id": 8104,
- "name": "№8104 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.838440120220184",
- "latitude": "50.13484656303532",
- "address": "Россия, Воронежская область, Россошанский район, село Терновка, Школьная улица, 9",
- "city_id": 8089,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-17-23-01-24-ucx.jpg",
- "trainings": 1
- },
- {
- "id": 8111,
- "name": "№8111 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.81354451055495",
- "latitude": "55.92484415797594",
- "address": "пр-д Ударника, 9",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-19-23-01-02--me.jpg",
- "trainings": 1
- },
- {
- "id": 8112,
- "name": "№8112 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.82042912275392",
- "latitude": "55.924378089096486",
- "address": "Карла Макса 3",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-19-23-01-43-99z.jpg",
- "trainings": 1
- },
- {
- "id": 8113,
- "name": "№8113 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.81974100727075",
- "latitude": "55.92657023965839",
- "address": "Грабина 20",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-19-23-01-40-pid.jpg",
- "trainings": 1
- },
- {
- "id": 8114,
- "name": "№8114 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.80651417658237",
- "latitude": "55.92156904664345",
- "address": "Ленина 4",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-19-23-01-24-tzv.jpg",
- "trainings": 1
- },
- {
- "id": 8115,
- "name": "№8115 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.81047723523443",
- "latitude": "55.91796088033823",
- "address": "ул. Октябрьская 10 правая однёрка ",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-19-23-01-55-jnv.jpg",
- "trainings": 1
- },
- {
- "id": 8116,
- "name": "№8116 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.81209250944199",
- "latitude": "55.917725609073344",
- "address": "Октябрьская 10 левая",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-25-14-02-28-v60.jpg",
- "trainings": 0
- },
- {
- "id": 8117,
- "name": "№8117 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.82047750066374",
- "latitude": "55.914132775927726",
- "address": "улица Пионерская 45",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-20-00-01-25-9mz.jpg",
- "trainings": 1
- },
- {
- "id": 8118,
- "name": "№8118 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.83284588271272",
- "latitude": "55.919806561983584",
- "address": "Проезд Циолковского",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-20-00-01-36-lm3.jpg",
- "trainings": 2
- },
- {
- "id": 8119,
- "name": "№8119 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.5639917254448",
- "latitude": "42.83482417193984",
- "address": "Микрорайон Джал, 15",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-21-15-01-35-upd.jpg",
- "trainings": 0
- },
- {
- "id": 8121,
- "name": "№8121 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.53978256136179",
- "latitude": "53.900058997222956",
- "address": "ул. Гебелева, 5, напротив строительного колледжа в Мемориальном сквере",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-26-16-02-04-ae6.jpg",
- "trainings": 0
- },
- {
- "id": 8127,
- "name": "№8127 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.599700808525085",
- "latitude": "56.90238549202928",
- "address": "ул. 40 лет Октября, д. 86",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-25-05-01-34-0cv.jpg",
- "trainings": 0
- },
- {
- "id": 8128,
- "name": "№8128 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.59619516134262",
- "latitude": "56.90349715701697",
- "address": "ул. Избирателей, д. 68",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-25-05-01-02-ei-.jpg",
- "trainings": 0
- },
- {
- "id": 8129,
- "name": "№8129 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.59514411031182",
- "latitude": "56.902530006019084",
- "address": "ул. Избирателей, д. 65",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-25-06-01-49-cfv.jpg",
- "trainings": 0
- },
- {
- "id": 8130,
- "name": "№8130 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.612604916095734",
- "latitude": "56.89528265102873",
- "address": "проспект Космонавтов, д. 27Б",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-25-06-01-03-hx0.jpg",
- "trainings": 0
- },
- {
- "id": 8131,
- "name": "№8131 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "55.13730436563492",
- "latitude": "51.83131727911154",
- "address": "Оренбург, парк 50 лет ссср",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-26-08-01-55-vla.jpg",
- "trainings": 3
- },
- {
- "id": 8132,
- "name": "№8132 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.716867",
- "latitude": "46.401695",
- "address": "Ильфа и Петрова улица",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-26-11-01-53-pun.jpg",
- "trainings": 2
- },
- {
- "id": 8133,
- "name": "№8133 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "55.94136357307434",
- "latitude": "53.345991262623635",
- "address": "Улица. Калинина д.54",
- "city_id": 8010,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-30-20-01-40-k0s.jpg",
- "trainings": 1
- },
- {
- "id": 8134,
- "name": "№8134 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "26.973302364349365",
- "latitude": "49.43314520602705",
- "address": "Парк им. Чекмана",
- "city_id": 550,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/01/2018-01-31-20-01-33-hnh.jpg",
- "trainings": 0
- },
- {
- "id": 8135,
- "name": "№8135 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "65.57803630828857",
- "latitude": "57.11362003199544",
- "address": "Пермякова, 73",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-02-21-02-48-i0q.jpg",
- "trainings": 0
- },
- {
- "id": 8136,
- "name": "№8136 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.685458",
- "latitude": "46.484662",
- "address": "Проценко улица",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-03-12-02-58-tvb.jpg",
- "trainings": 2
- },
- {
- "id": 8137,
- "name": "№8137 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.695520",
- "latitude": "46.488755",
- "address": "Училищная улица",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-03-13-02-07-2fv.jpg",
- "trainings": 2
- },
- {
- "id": 8138,
- "name": "№8138 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.435461",
- "latitude": "55.808576",
- "address": "Ленина проспект",
- "city_id": 153,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-06-18-02-51-wbl.jpg",
- "trainings": 1
- },
- {
- "id": 8139,
- "name": "№8139 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.641950368863036",
- "latitude": "56.80147062020655",
- "address": "ул. Хуторская, д. 14",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-07-11-02-45--26.jpg",
- "trainings": 0
- },
- {
- "id": 8140,
- "name": "№8140 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "20.507722198963165",
- "latitude": "54.708157240789994",
- "address": "остров Канта, под Эстакадным мостом",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-07-14-02-09-9kf.jpg",
- "trainings": 3
- },
- {
- "id": 8141,
- "name": "№8141 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "39.73008155822754",
- "latitude": "47.23647108408858",
- "address": "Динамо",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-07-14-02-10-_12.jpg",
- "trainings": 1
- },
- {
- "id": 8142,
- "name": "№8142 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.59500973016361",
- "latitude": "56.90922330102037",
- "address": "ул. Коммунистическая, д. 18",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-08-09-02-40-ekm.jpg",
- "trainings": 0
- },
- {
- "id": 8143,
- "name": "№8143 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.5987608432406",
- "latitude": "56.91026985206489",
- "address": "ул. Новаторов, д. 14",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-08-09-02-34-q7y.jpg",
- "trainings": 0
- },
- {
- "id": 8144,
- "name": "№8144 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.60355991123288",
- "latitude": "56.909232625620284",
- "address": "ул. Ярославская, д. 19",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-08-09-02-25-ya_.jpg",
- "trainings": 0
- },
- {
- "id": 8145,
- "name": "№8145 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.99428749084473",
- "latitude": "57.02912417924531",
- "address": "\"Калининское шоссе\" Торжок",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-01-20-05-50-amn.jpg",
- "trainings": 0
- },
- {
- "id": 8147,
- "name": "№8147 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "65.58794975280762",
- "latitude": "57.12060995818894",
- "address": "30 лет Победы, 79А",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-08-14-02-47-y4w.jpg",
- "trainings": 0
- },
- {
- "id": 8148,
- "name": "№8148 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "55.94247132539749",
- "latitude": "53.363911650484354",
- "address": "Городской парк культуры и отдыха",
- "city_id": 8010,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-08-21-02-07-7ei.jpg",
- "trainings": 0
- },
- {
- "id": 8150,
- "name": "№8150 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "74.6285229921341",
- "latitude": "42.87309819257883",
- "address": "Микрорайон Восток-5, 26",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-10-11-02-22-pza.jpg",
- "trainings": 1
- },
- {
- "id": 8151,
- "name": "№8151 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.631523251664476",
- "latitude": "47.21184486631445",
- "address": "пр.стачки 215",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-10-13-02-16-qgl.jpg",
- "trainings": 2
- },
- {
- "id": 8152,
- "name": "№8152 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.19191837310791",
- "latitude": "53.161407530362624",
- "address": "Рокоссовского 56",
- "city_id": 779,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-10-13-02-39-cex.jpg",
- "trainings": 0
- },
- {
- "id": 8153,
- "name": "№8153 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "55.93853652473081",
- "latitude": "53.62892947736802",
- "address": "худайбердина 120",
- "city_id": 564,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-10-20-02-08-i4z.jpg",
- "trainings": 1
- },
- {
- "id": 8154,
- "name": "№8154 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.09339487552643",
- "latitude": "45.02936175296672",
- "address": "Сормовская 114",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-11-16-02-37-uvf.jpg",
- "trainings": 3
- },
- {
- "id": 8155,
- "name": "№8155 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.09211277961731",
- "latitude": "45.03389593467006",
- "address": "Сормовская 169",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-11-16-02-32-seo.jpg",
- "trainings": 0
- },
- {
- "id": 8156,
- "name": "№8156 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.90643947221372",
- "latitude": "55.72392174635113",
- "address": "ул.Лухмановская, д. 35",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-09-12-04-29-9-5.jpg",
- "trainings": 1
- },
- {
- "id": 8157,
- "name": "№8157 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.221334189549225",
- "latitude": "51.31815344695324",
- "address": "Первомайская ",
- "city_id": 8215,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-15-14-02-04-gcf.jpeg",
- "trainings": 2
- },
- {
- "id": 8158,
- "name": "№8158 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.55849483530426",
- "latitude": "55.55790318213681",
- "address": "Старокрымская 13 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-16-12-02-25-n0d.jpg",
- "trainings": 1
- },
- {
- "id": 8159,
- "name": "№8159 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.67172616168409",
- "latitude": "47.21138368789193",
- "address": "Стачки, 22",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-16-17-02-52-qca.jpg",
- "trainings": 1
- },
- {
- "id": 8160,
- "name": "№8160 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "74.60752335016514",
- "latitude": "42.84195767645389",
- "address": "ул. Ахунбаева, 92 (Кыргызская Государственная Медицинская Академия)",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-17-15-02-33-np3.jpg",
- "trainings": 4
- },
- {
- "id": 8161,
- "name": "№8161 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.84330810000006",
- "latitude": "55.68632520000001",
- "address": "привольная 49к1, москва",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-17-17-02-15-y4i.jpg",
- "trainings": 3
- },
- {
- "id": 8162,
- "name": "№8162 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.56115484803831",
- "latitude": "55.865424605550366",
- "address": "Бескудниковский бульвар 22 строение 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-18-14-02-49-nx8.jpg",
- "trainings": 1
- },
- {
- "id": 8163,
- "name": "№8163 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "65.55797729753954",
- "latitude": "57.14351242083423",
- "address": "ул. Республики д. 92",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-18-15-02-51-vma.jpg",
- "trainings": 1
- },
- {
- "id": 8164,
- "name": "№8164 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.61091430479132",
- "latitude": "42.82481677328253",
- "address": "Токомбаева, 37/1",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-18-22-02-08-hl7.jpg",
- "trainings": 0
- },
- {
- "id": 8165,
- "name": "№8165 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.309979042397345",
- "latitude": "59.960924613005425",
- "address": "матвеевский сад",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-19-09-02-50-__s.jpg",
- "trainings": 0
- },
- {
- "id": 8166,
- "name": "№8166 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.23404910651857",
- "latitude": "55.65585554932194",
- "address": "триумфальна д.2",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-19-10-02-17-oeg.png",
- "trainings": 3
- },
- {
- "id": 8167,
- "name": "№8167 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "65.60066678706517",
- "latitude": "57.105282816689424",
- "address": "ул. Моторостроителей д.14 корпус.2",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-19-12-02-10-qw9.jpg",
- "trainings": 0
- },
- {
- "id": 8169,
- "name": "№8169 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.48937907836046",
- "latitude": "55.53311630845056",
- "address": "Проектируемый проезд 6462",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-19-22-02-44-nm9.jpg",
- "trainings": 0
- },
- {
- "id": 8170,
- "name": "№8170 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.60869264020198",
- "latitude": "42.82924612683864",
- "address": "8 микрорайон, 31В",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-20-18-02-25-b_-.jpg",
- "trainings": 0
- },
- {
- "id": 8171,
- "name": "№8171 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.90012049999996",
- "latitude": "55.9790837",
- "address": "Первомайская улица, д. 53",
- "city_id": 45,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-21-11-02-43-_vl.jpg",
- "trainings": 1
- },
- {
- "id": 8172,
- "name": "№8172 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.67480815065687",
- "latitude": "55.634923982463874",
- "address": " улица Медиков дом 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-22-13-02-58-ut8.jpg",
- "trainings": 0
- },
- {
- "id": 8173,
- "name": "№8173 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.675256786359114",
- "latitude": "55.63505668313049",
- "address": " улица Медиков дом 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-22-13-02-49-x1q.jpg",
- "trainings": 0
- },
- {
- "id": 8177,
- "name": "№8177 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.761953",
- "latitude": "46.415797",
- "address": "Здоровья трасса",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-23-13-02-23-rt6.jpg",
- "trainings": 2
- },
- {
- "id": 8178,
- "name": "№8178 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.76179621975291",
- "latitude": "55.89397610677879",
- "address": "Ленина 42",
- "city_id": 8398,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-23-16-02-34-fvl.jpg",
- "trainings": 0
- },
- {
- "id": 8179,
- "name": "№8179 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.69292412404184",
- "latitude": "55.60037046919486",
- "address": "Старый городок «У фонтана»",
- "city_id": 8036,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-23-17-02-45-7w4.jpeg",
- "trainings": 1
- },
- {
- "id": 8180,
- "name": "№8180 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.69492634851201",
- "latitude": "55.59491723871255",
- "address": "Старый городок «В лесу»",
- "city_id": 8036,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-23-17-02-28-dvc.jpeg",
- "trainings": 1
- },
- {
- "id": 8181,
- "name": "№8181 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.68975988037914",
- "latitude": "55.59673421734447",
- "address": "Старый городок «Школьная»",
- "city_id": 8036,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-23-18-02-20-1l2.jpeg",
- "trainings": 0
- },
- {
- "id": 8183,
- "name": "№8183 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-1.5476188842417287",
- "latitude": "47.20739932496123",
- "address": "Île de Nantes",
- "city_id": 7705,
- "country_id": 24,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-24-12-02-11-2vc.png",
- "trainings": 0
- },
- {
- "id": 8184,
- "name": "№8184 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.731949864894204",
- "latitude": "55.90045946371393",
- "address": "Стадионная",
- "city_id": 8398,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-24-14-02-15-8wt.jpg",
- "trainings": 0
- },
- {
- "id": 8185,
- "name": "№8185 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.732649739288945",
- "latitude": "55.90255102190456",
- "address": "Стадионная",
- "city_id": 8398,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-24-14-02-07-_rx.jpg",
- "trainings": 0
- },
- {
- "id": 8186,
- "name": "№8186 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "78.18446510000001",
- "latitude": "65.9167537",
- "address": "Коротчаево ",
- "city_id": 570,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-24-18-02-10-rw3.jpg",
- "trainings": 1
- },
- {
- "id": 8187,
- "name": "№8187 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.82966763771208",
- "latitude": "55.910959875206146",
- "address": "Пионерская ул., 30 к10 бельё",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-25-13-02-11-z6w.jpg",
- "trainings": 1
- },
- {
- "id": 8188,
- "name": "№8188 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.81331178570554",
- "latitude": "55.915787884843866",
- "address": "школа 13",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-25-13-02-12-iu2.jpg",
- "trainings": 1
- },
- {
- "id": 8189,
- "name": "№8189 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.81982993306576",
- "latitude": "55.9196874408126",
- "address": "Школа № 7 ул. Октябрьская, 23",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-25-15-02-25-fg0.jpg",
- "trainings": 1
- },
- {
- "id": 8190,
- "name": "№8190 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.83445870726216",
- "latitude": "55.91111019763503",
- "address": "ул.Пионерская 34, лицей №5( Кванториум, бывшая гимназия 11), левая",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-25-14-02-01-wuh.jpg",
- "trainings": 2
- },
- {
- "id": 8191,
- "name": "№8191 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.83492007849517",
- "latitude": "55.90980212433102",
- "address": "лицей 5 (бывшая гимназия 11) правая",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-25-14-02-25-vuk.jpg",
- "trainings": 2
- },
- {
- "id": 8192,
- "name": "№8192 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.811711541914505",
- "latitude": "55.917496322823865",
- "address": "школа 1 новая ",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-25-14-02-52-34v.jpg",
- "trainings": 1
- },
- {
- "id": 8193,
- "name": "№8193 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.78293343441442",
- "latitude": "54.545165821114594",
- "address": "парк Культуры и отдыха, ул. красноармейская",
- "city_id": 8001,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-25-14-02-40-vci.jpg",
- "trainings": 0
- },
- {
- "id": 8194,
- "name": "№8194 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "37.83244550228119",
- "latitude": "55.91554391887414",
- "address": " Храм Владимира Священномученика ул. Циолковского, 26",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-25-14-02-46-q3i.jpg",
- "trainings": 1
- },
- {
- "id": 8195,
- "name": "№8195 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "74.6111637131853",
- "latitude": "42.87784336688663",
- "address": "Огонбаева Атая, 242 (Библиотека им. К. Баялинова)",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-25-15-02-01-b2j.jpg",
- "trainings": 2
- },
- {
- "id": 8196,
- "name": "№8196 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.744689414505956",
- "latitude": "55.906110188362646",
- "address": "Декабристов",
- "city_id": 8398,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-25-18-02-51-h_s.jpg",
- "trainings": 0
- },
- {
- "id": 8197,
- "name": "№8197 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "37.81360535714725",
- "latitude": "55.92278686288129",
- "address": "ул. Коминтерна, 12 /14, турник брусья,",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-25-19-02-36-v0z.jpg",
- "trainings": 1
- },
- {
- "id": 8198,
- "name": "№8198 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.81443715095521",
- "latitude": "55.921838593134844",
- "address": "улица Циолковского, 9 Лицей №4 НИП , левая вторая",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-16-15-08-34-_ag.jpg",
- "trainings": 0
- },
- {
- "id": 8199,
- "name": "№8199 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.27114071538415",
- "latitude": "49.91664314641027",
- "address": "самалетная 1",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-26-08-02-42-t1j.jpg",
- "trainings": 1
- },
- {
- "id": 8201,
- "name": "№8201 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.36229682806402",
- "latitude": "44.861161730939905",
- "address": "фрунзе",
- "city_id": 4,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-26-18-02-17-itk.jpg",
- "trainings": 1
- },
- {
- "id": 8202,
- "name": "№8202 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.6084381114008",
- "latitude": "50.51148312971801",
- "address": "проспект Маяковского 49а",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-27-01-02-07-g_3.jpg",
- "trainings": 1
- },
- {
- "id": 8203,
- "name": "№8203 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.46410930156708",
- "latitude": "52.045057680720014",
- "address": "Набережная, 77",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-27-07-02-38-xos.jpg",
- "trainings": 0
- },
- {
- "id": 8204,
- "name": "№8204 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "27.62196224303557",
- "latitude": "53.918742602197185",
- "address": "парк Челюскинцев",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-27-12-02-22-lcz.jpg",
- "trainings": 3
- },
- {
- "id": 8205,
- "name": "№8205 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.575210609510577",
- "latitude": "53.93127115843103",
- "address": "Парк дружбы народов, ближе к Орловской",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-27-12-02-07-osz.jpg",
- "trainings": 0
- },
- {
- "id": 8207,
- "name": "№8207 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "117.01525129246556",
- "latitude": "52.520610535702104",
- "address": "Пгт. Чернышевск стадион \"Нива\"",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-27-13-02-57-sui.jpg",
- "trainings": 0
- },
- {
- "id": 8208,
- "name": "№8208 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "117.0035861406302",
- "latitude": "52.50502353110437",
- "address": "Пгт. Чернышевск ул. Журавлева 71",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-27-13-02-06-tpc.jpg",
- "trainings": 1
- },
- {
- "id": 8209,
- "name": "№8209 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "117.01090913593862",
- "latitude": "52.51288837207555",
- "address": "Пгт. Чернышевск ул. Первомайская 36",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-27-14-02-22-oho.jpg",
- "trainings": 0
- },
- {
- "id": 8210,
- "name": "№8210 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "117.0150105254852",
- "latitude": "52.51612134577107",
- "address": "Пгт. Чернышевск ул. Первомайская 33",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-27-14-02-41-bos.jpg",
- "trainings": 1
- },
- {
- "id": 8212,
- "name": "№8212 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.8565033925903",
- "latitude": "55.91028181467129",
- "address": "ст.Металлист",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-28-09-02-50-qcb.jpg",
- "trainings": 1
- },
- {
- "id": 8215,
- "name": "№8215 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "132.68765120916805",
- "latitude": "42.855322026085666",
- "address": "п. Южно-Морской",
- "city_id": 679,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-28-12-02-36-1nn.jpg",
- "trainings": 0
- },
- {
- "id": 8217,
- "name": "№8217 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.02850960000001",
- "latitude": "54.7412177",
- "address": "Менделеева 205",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/02/2018-02-28-21-02-06-cmi.jpg",
- "trainings": 0
- },
- {
- "id": 8219,
- "name": "№8219 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "46.03114500000004",
- "latitude": "51.58640699999999",
- "address": "саратов ул танкистов 126",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-01-11-03-58-gzc.jpg",
- "trainings": 0
- },
- {
- "id": 8220,
- "name": "№8220 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "46.00219941355647",
- "latitude": "51.61270527746818",
- "address": "рынок солнечный саратов",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-01-11-03-18-0ne.jpg",
- "trainings": 1
- },
- {
- "id": 8221,
- "name": "№8221 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "74.56438738078509",
- "latitude": "42.83977861074181",
- "address": "Микрорайон Джал, 71/1 (Школа-гимназия №72)",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-01-14-03-03-yl3.jpg",
- "trainings": 1
- },
- {
- "id": 8222,
- "name": "№8222 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.20115749821707",
- "latitude": "52.33331023260181",
- "address": "тельмана 17",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-01-16-03-57-ped.jpg",
- "trainings": 0
- },
- {
- "id": 8223,
- "name": "№8223 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "104.16286864596327",
- "latitude": "52.34730792510251",
- "address": "Баумана 211",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-01-16-03-00-vkm.jpg",
- "trainings": 1
- },
- {
- "id": 8226,
- "name": "№8226 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.75325729231156",
- "latitude": "55.65548191312719",
- "address": "Мячко",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-02-12-03-21-0jo.jpg",
- "trainings": 0
- },
- {
- "id": 8227,
- "name": "№8227 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.73992799227665",
- "latitude": "55.6756698955411",
- "address": "Люблинская ул., 119",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-02-12-03-44-dpi.jpg",
- "trainings": 0
- },
- {
- "id": 8228,
- "name": "№8228 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.70249096776024",
- "latitude": "47.2363799212427",
- "address": "Козлова 71",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-02-14-03-26-xvy.jpg",
- "trainings": 1
- },
- {
- "id": 8229,
- "name": "№8229 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.359578015869147",
- "latitude": "59.8716242614445",
- "address": "Белградская, 6/3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-02-23-03-21-usv.jpg",
- "trainings": 1
- },
- {
- "id": 8232,
- "name": "№8232 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.69466996042979",
- "latitude": "57.86989721214581",
- "address": "Дворец спорта ",
- "city_id": 8448,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-03-13-03-30-shz.jpg",
- "trainings": 0
- },
- {
- "id": 8233,
- "name": "№8233 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.65008894393634",
- "latitude": "57.819010938838645",
- "address": "озерный",
- "city_id": 8448,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-03-13-03-49-ikw.jpg",
- "trainings": 0
- },
- {
- "id": 8234,
- "name": "№8234 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.694130",
- "latitude": "46.484245",
- "address": "Академика Воробьёва улица",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-03-16-03-13-tv9.jpg",
- "trainings": 2
- },
- {
- "id": 8235,
- "name": "№8235 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.976867",
- "latitude": "43.807087",
- "address": "улица Тургенева",
- "city_id": 786,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-04-10-03-08-jup.jpg",
- "trainings": 1
- },
- {
- "id": 8236,
- "name": "№8236 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "131.942520",
- "latitude": "43.790883",
- "address": "улица Володарского",
- "city_id": 786,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-04-10-03-27-hfe.jpg",
- "trainings": 0
- },
- {
- "id": 8237,
- "name": "№8237 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.33719823237675",
- "latitude": "52.257652316792594",
- "address": "Иркутск, байкальская 203А",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-04-12-03-48-eet.jpg",
- "trainings": 1
- },
- {
- "id": 8238,
- "name": "№8238 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.11380587542999",
- "latitude": "47.83434594726112",
- "address": "Набережная магистраль",
- "city_id": 496,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-04-18-03-31-pqq.png",
- "trainings": 1
- },
- {
- "id": 8239,
- "name": "№8239 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "30.327552413587114",
- "latitude": "59.87139153931131",
- "address": " ул.Кузнецовская 42",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-24-20-08-47-_km.jpg",
- "trainings": 12
- },
- {
- "id": 8240,
- "name": "№8240 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.45029669999997",
- "latitude": "55.14085050000001",
- "address": "СК \"Лидер\"",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-16-18-08-54-cmv.jpg",
- "trainings": 2
- },
- {
- "id": 8242,
- "name": "№8242 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.35513400000002",
- "latitude": "59.925738",
- "address": "Коломенская, д.6",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-05-16-03-56-h32.jpg",
- "trainings": 1
- },
- {
- "id": 8243,
- "name": "№8243 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "30.296325000000024",
- "latitude": "60.218497",
- "address": "Агалатово поселок",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-05-18-03-36-lra.jpg",
- "trainings": 1
- },
- {
- "id": 8244,
- "name": "№8244 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "50.07359914893209",
- "latitude": "53.14839312018617",
- "address": "Осетинская",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-05-20-03-50-5-g.jpeg",
- "trainings": 2
- },
- {
- "id": 8245,
- "name": "№8245 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.400708",
- "latitude": "65.512925",
- "address": "Мезенский район",
- "city_id": 8694,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-06-14-03-10-pq8.jpg",
- "trainings": 1
- },
- {
- "id": 8246,
- "name": "№8246 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.39940296826171",
- "latitude": "59.98264380282684",
- "address": "Кондратьевский 83 корп. 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-06-15-03-44-t1z.png",
- "trainings": 2
- },
- {
- "id": 8248,
- "name": "№8248 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.131434235443066",
- "latitude": "56.29850920227546",
- "address": "ул,Вознесенская, 80",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-06-22-03-33-fvf.jpg",
- "trainings": 1
- },
- {
- "id": 8249,
- "name": "№8249 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.11918243914795",
- "latitude": "56.29359478497796",
- "address": "ул куликова, 16",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-06-22-03-28-1_t.jpg",
- "trainings": 2
- },
- {
- "id": 8250,
- "name": "№8250 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.744050",
- "latitude": "46.486942",
- "address": "Приморская улица",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-07-10-03-08-rmn.jpg",
- "trainings": 0
- },
- {
- "id": 8251,
- "name": "№8251 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "60.54738261480554",
- "latitude": "56.67067196036026",
- "address": "пос. Горный Щит, СТ «Рассвет-1», поляна №3",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-07-13-03-11-wke.jpg",
- "trainings": 1
- },
- {
- "id": 8252,
- "name": "№8252 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "46.691734732016016",
- "latitude": "61.27573519409657",
- "address": "герцена",
- "city_id": 8092,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-07-22-03-15-9ad.jpg",
- "trainings": 0
- },
- {
- "id": 8253,
- "name": "№8253 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "85.147264",
- "latitude": "52.513520",
- "address": "улица Горно-Алтайская",
- "city_id": 569,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-09-10-03-16-ufi.jpg",
- "trainings": 1
- },
- {
- "id": 8254,
- "name": "№8254 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.543739296181684",
- "latitude": "55.584135846652934",
- "address": " Городской парк имени Ю. Гагарина",
- "city_id": 668,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-09-16-03-13-ooc.jpg",
- "trainings": 0
- },
- {
- "id": 8257,
- "name": "№8257 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "24.084434500000043",
- "latitude": "56.9358557",
- "address": "Uzvaras Parks",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-09-21-03-32-d5r.jpg",
- "trainings": 1
- },
- {
- "id": 8258,
- "name": "№8258 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "74.60181722444099",
- "latitude": "42.834318097541434",
- "address": "10 микрорайон, 14",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-10-08-03-07-laz.jpg",
- "trainings": 0
- },
- {
- "id": 8259,
- "name": "№8259 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.60401556761349",
- "latitude": "42.83311780539023",
- "address": "10 микрорайон, 10а (КГУ им. Арабаева)",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-10-09-03-31-b6m.jpg",
- "trainings": 0
- },
- {
- "id": 8260,
- "name": "№8260 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.60203013574096",
- "latitude": "42.82922994904041",
- "address": "10 микрорайон, 37",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-10-09-03-11-jrp.jpg",
- "trainings": 0
- },
- {
- "id": 8261,
- "name": "№8261 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.252144999999928",
- "latitude": "60.01025",
- "address": "Комендантский проспект",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-10-14-03-22-qq5.jpg",
- "trainings": 1
- },
- {
- "id": 8262,
- "name": "№8262 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.62400091542463",
- "latitude": "42.81954830925907",
- "address": "Микрорайон Асанбай, 25",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-10-16-03-50-cov.jpg",
- "trainings": 0
- },
- {
- "id": 8263,
- "name": "№8263 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "74.62728669684839",
- "latitude": "42.820854290110866",
- "address": "6 микрорайон, 42",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-10-16-03-20-zor.jpg",
- "trainings": 0
- },
- {
- "id": 8264,
- "name": "№8264 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.45465899999999",
- "latitude": "52.6352996",
- "address": "Московское шоссе, 18 Е",
- "city_id": 7809,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-10-18-03-04-k2n.jpg",
- "trainings": 1
- },
- {
- "id": 8265,
- "name": "№8265 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "55.95088005065918",
- "latitude": "54.73968600900017",
- "address": "Парк Якутова",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-11-09-03-52-yq8.jpg",
- "trainings": 1
- },
- {
- "id": 8266,
- "name": "№8266 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "28.489463945805937",
- "latitude": "54.22340223109941",
- "address": "Гагарина 46",
- "city_id": 7983,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-11-12-03-54-sta.jpg",
- "trainings": 1
- },
- {
- "id": 8267,
- "name": "№8267 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.246444748717067",
- "latitude": "59.97929695474079",
- "address": "Елагин остров",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-11-16-03-14-afe.jpg",
- "trainings": 2
- },
- {
- "id": 8268,
- "name": "№8268 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "61.90324348715808",
- "latitude": "56.40810470899799",
- "address": "Березовая роща",
- "city_id": 7376,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-11-18-03-46-zx9.jpg",
- "trainings": 1
- },
- {
- "id": 8269,
- "name": "№8269 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.028591406392025",
- "latitude": "55.74658114864323",
- "address": "ул. пушкина",
- "city_id": 40,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-11-19-03-57-wmg.jpg",
- "trainings": 0
- },
- {
- "id": 8270,
- "name": "№8270 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.138572",
- "latitude": "44.492867",
- "address": "улица Красных Партизан",
- "city_id": 557,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-12-14-03-43-3z3.jpg",
- "trainings": 1
- },
- {
- "id": 8271,
- "name": "№8271 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "27.602429506010594",
- "latitude": "53.92793702429747",
- "address": "ул. Калинина, 17, стадион СШ №73",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-12-14-03-08-ie4.jpg",
- "trainings": 0
- },
- {
- "id": 8272,
- "name": "№8272 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "28.857333227235472",
- "latitude": "49.98073098524941",
- "address": "Малые Мошковцы",
- "city_id": 494,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-12-21-03-47-7ce.jpg",
- "trainings": 1
- },
- {
- "id": 8273,
- "name": "№8273 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "74.6008466583445",
- "latitude": "42.841447042235636",
- "address": "Малдыбаева, 32",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-13-05-03-01-9zf.jpg",
- "trainings": 0
- },
- {
- "id": 8274,
- "name": "№8274 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.528344683671776",
- "latitude": "44.56062008636856",
- "address": "Острякова, 171а",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-13-14-03-05-v7e.jpg",
- "trainings": 0
- },
- {
- "id": 8276,
- "name": "№8276 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "43.07236230000001",
- "latitude": "44.0444209",
- "address": "Ул. Пастухова, 2",
- "city_id": 735,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-13-17-03-17-zte.jpg",
- "trainings": 2
- },
- {
- "id": 8278,
- "name": "№8278 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.6070567779534",
- "latitude": "42.83445070786048",
- "address": "9 микрорайон, 4",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-14-06-03-12-fgr.jpg",
- "trainings": 0
- },
- {
- "id": 8279,
- "name": "№8279 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.60480239393291",
- "latitude": "42.83671295000656",
- "address": "9 микрорайон, 6Б",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-14-06-03-14-o1y.jpg",
- "trainings": 0
- },
- {
- "id": 8280,
- "name": "№8280 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.31955242195136",
- "latitude": "49.94940399398777",
- "address": "бульвар Жасминовый 8",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-14-14-03-52-4fb.jpg",
- "trainings": 1
- },
- {
- "id": 8281,
- "name": "№8281 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "84.87835358620396",
- "latitude": "56.604481683907345",
- "address": "Северский природный парк",
- "city_id": 7913,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-14-14-03-58-xyz.jpg",
- "trainings": 1
- },
- {
- "id": 8282,
- "name": "№8282 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.60382751465363",
- "latitude": "42.84229518021873",
- "address": "Ахунбаева, 96а",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-14-20-03-44-nq5.jpg",
- "trainings": 0
- },
- {
- "id": 8283,
- "name": "№8283 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.60485952665931",
- "latitude": "42.83719101689365",
- "address": "9 микрорайон, 6А",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-14-20-03-15-fjr.jpg",
- "trainings": 0
- },
- {
- "id": 8284,
- "name": "№8284 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.60705850928616",
- "latitude": "42.836799436008576",
- "address": "9 микрорайон, 8",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-14-20-03-43-4y_.jpg",
- "trainings": 0
- },
- {
- "id": 8286,
- "name": "№8286 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "74.59991229140451",
- "latitude": "42.84594673038519",
- "address": "Панфилова, 1А",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-15-06-03-04-3cf.jpg",
- "trainings": 0
- },
- {
- "id": 8287,
- "name": "№8287 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "132.67582876436643",
- "latitude": "42.86468904467893",
- "address": "Ливадия",
- "city_id": 679,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-15-08-03-55-ysp.jpg",
- "trainings": 2
- },
- {
- "id": 8288,
- "name": "№8288 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.410108084130798",
- "latitude": "60.034837889830214",
- "address": "ушинского 21",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-20-10-03-41-e1y.jpg",
- "trainings": 1
- },
- {
- "id": 8289,
- "name": "№8289 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.719945",
- "latitude": "55.802350",
- "address": "Зельев переулок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-15-21-03-33-vnn.jpg",
- "trainings": 2
- },
- {
- "id": 8290,
- "name": "№8290 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.265071711114615",
- "latitude": "59.93601727010541",
- "address": "19 линия В.О., 22 корпус 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-16-13-03-44-nh1.jpg",
- "trainings": 1
- },
- {
- "id": 8291,
- "name": "№8291 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.58255482922209",
- "latitude": "55.77181835229745",
- "address": "Большая Грузинская улица, 57",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-16-13-03-26-nzd.jpg",
- "trainings": 0
- },
- {
- "id": 8292,
- "name": "№8292 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.583971631213444",
- "latitude": "55.77234717427365",
- "address": "Большая Грузинская улица, 61с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-16-13-03-55-cgy.jpg",
- "trainings": 4
- },
- {
- "id": 8293,
- "name": "№8293 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "74.60388241907185",
- "latitude": "42.83842931811595",
- "address": "Тыныстанова, 2/1",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-16-17-03-25-5at.jpg",
- "trainings": 0
- },
- {
- "id": 8294,
- "name": "№8294 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.98923079999997",
- "latitude": "44.5815733",
- "address": "Просторная 26",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-17-08-03-32-np2.jpg",
- "trainings": 0
- },
- {
- "id": 8295,
- "name": "№8295 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.36579801586913",
- "latitude": "59.928683078071295",
- "address": "Гончарная 15",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-18-11-03-09-lro.png",
- "trainings": 1
- },
- {
- "id": 8296,
- "name": "№8296 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.42871911150053",
- "latitude": "55.73062823356048",
- "address": "Улица Коцюбинского 9, между корпусами 1 и 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-19-21-03-00-aqd.jpg",
- "trainings": 0
- },
- {
- "id": 8297,
- "name": "№8297 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "98.29672085600441",
- "latitude": "7.900729944170493",
- "address": "Остров Пхукет, пляж Патонг",
- "city_id": 8739,
- "country_id": 72,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-08-18-12-14-kzy.jpg",
- "trainings": 1
- },
- {
- "id": 8298,
- "name": "№8298 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.470199999999977",
- "latitude": "48.10773",
- "address": "Max-Lebsche-Platz 39",
- "city_id": 7469,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-20-01-03-29-o9q.jpg",
- "trainings": 0
- },
- {
- "id": 8299,
- "name": "№8299 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.429598499999997",
- "latitude": "59.6812251",
- "address": "ул. Мичурина, 17, г. Санкт-Петербург, г. Павловск, Санкт-Петербург, Россия, 196620",
- "city_id": 97,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-20-11-03-42-upg.jpg",
- "trainings": 1
- },
- {
- "id": 8300,
- "name": "№8300 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.73548615373875",
- "latitude": "55.88156618288911",
- "address": "1-я Колхозная ул.",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-20-14-03-34-yd0.png",
- "trainings": 1
- },
- {
- "id": 8301,
- "name": "№8301 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "53.46876240000006",
- "latitude": "54.478528",
- "address": "Парк Гагарина",
- "city_id": 595,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-20-21-03-42-trm.jpg",
- "trainings": 2
- },
- {
- "id": 8302,
- "name": "№8302 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.529320",
- "latitude": "55.645947",
- "address": "улица Профсоюзная 83к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-21-12-03-56-piq.jpg",
- "trainings": 1
- },
- {
- "id": 8303,
- "name": "№8303 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.8375393",
- "latitude": "51.2937667",
- "address": "ул. Ленина, 14/13",
- "city_id": 602,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-21-14-03-31-owk.jpg",
- "trainings": 0
- },
- {
- "id": 8304,
- "name": "№8304 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.60496729438046",
- "latitude": "56.88608181967023",
- "address": "ул. Машиностроителей, д. 5А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-21-16-03-12-jha.jpg",
- "trainings": 0
- },
- {
- "id": 8305,
- "name": "№8305 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "74.63508516616935",
- "latitude": "42.84133569391888",
- "address": "Ахунбаева, 1а/2 (Ботанический сад им. Гареева)",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-22-07-03-41-8qg.jpg",
- "trainings": 0
- },
- {
- "id": 8306,
- "name": "№8306 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.35809531646123",
- "latitude": "55.83141612304354",
- "address": "митино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-05-12-04-20-k4n.jpg",
- "trainings": 1
- },
- {
- "id": 8307,
- "name": "№8307 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "114.91877471870725",
- "latitude": "60.71670250038049",
- "address": "Первомайская 15",
- "city_id": 8289,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-23-01-03-30-59o.jpg",
- "trainings": 1
- },
- {
- "id": 8308,
- "name": "№8308 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.55054500000006",
- "latitude": "55.87312",
- "address": "Бескудниковский бульвар 35 с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-23-17-03-33-xal.jpg",
- "trainings": 1
- },
- {
- "id": 8309,
- "name": "№8309 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.36368721177212",
- "latitude": "55.83884133916678",
- "address": "Митино. Парк. ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-24-12-03-20-mxx.jpg",
- "trainings": 1
- },
- {
- "id": 8310,
- "name": "№8310 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.95032374612265",
- "latitude": "44.64994084353825",
- "address": "Кабардинка ул.Коллективная ",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-24-14-03-36-1qe.jpg",
- "trainings": 0
- },
- {
- "id": 8311,
- "name": "№8311 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "91.40281980554528",
- "latitude": "53.71417885747228",
- "address": "Ул. Пушкина",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-24-15-03-00-awa.jpg",
- "trainings": 1
- },
- {
- "id": 8312,
- "name": "№8312 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "91.4022499256796",
- "latitude": "53.714361589566124",
- "address": "Ул. Пушкина",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-24-15-03-31-ggc.jpg",
- "trainings": 0
- },
- {
- "id": 8313,
- "name": "№8313 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.9259045338415",
- "latitude": "44.64168819735711",
- "address": "Кабардинка Набережная",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-24-17-03-33-afp.jpg",
- "trainings": 2
- },
- {
- "id": 8314,
- "name": "№8314 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.9317744701475",
- "latitude": "44.64590466320798",
- "address": "Кабардинка Набережная",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-24-17-03-08-qts.jpg",
- "trainings": 0
- },
- {
- "id": 8315,
- "name": "№8315 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "11.488783",
- "latitude": "48.119697",
- "address": "stiftsbogen 81 ",
- "city_id": 7469,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-24-20-03-19-zmn.jpg",
- "trainings": 0
- },
- {
- "id": 8316,
- "name": "№8316 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "11.488836",
- "latitude": "48.119578",
- "address": "stiftsbogen 81",
- "city_id": 7469,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-24-20-03-28-kjy.jpg",
- "trainings": 0
- },
- {
- "id": 8318,
- "name": "№8318 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.817240882278384",
- "latitude": "55.92326119958238",
- "address": "ул.Калинина 5, советская средняя, кривая, волна, шесты )",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-24-22-03-47-eks.jpg",
- "trainings": 1
- },
- {
- "id": 8319,
- "name": "№8319 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.82471287486874",
- "latitude": "55.92336822169636",
- "address": "ул.Фрунзе 1а, в атаке",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-24-22-03-02-biv.jpg",
- "trainings": 1
- },
- {
- "id": 8320,
- "name": "№8320 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "37.82785452705207",
- "latitude": "55.91167526677451",
- "address": "ул.Пионерская 30 к8 /9 турник на детск площадке, детская, паутинка",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-07-14-04-33-46i.jpg",
- "trainings": 1
- },
- {
- "id": 8321,
- "name": "№8321 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.569355",
- "latitude": "55.871567",
- "address": "Керамический проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-25-09-03-17-_re.jpg",
- "trainings": 0
- },
- {
- "id": 8322,
- "name": "№8322 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.492449645507804",
- "latitude": "59.90335651607647",
- "address": "Большевиков 22 к.3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-26-11-03-53--q6.jpg",
- "trainings": 1
- },
- {
- "id": 8323,
- "name": "№8323 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "85.142447",
- "latitude": "52.503567",
- "address": "улица Ломоносова",
- "city_id": 569,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-26-12-03-56-ql5.jpg",
- "trainings": 1
- },
- {
- "id": 8324,
- "name": "№8324 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.944672",
- "latitude": "43.792892",
- "address": "парк ДОРА",
- "city_id": 786,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-26-17-03-11-em5.jpg",
- "trainings": 2
- },
- {
- "id": 8325,
- "name": "№8325 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.49622599999998",
- "latitude": "52.03651199999999",
- "address": "Чайковского, 27",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-27-05-03-22-hmy.jpg",
- "trainings": 0
- },
- {
- "id": 8326,
- "name": "№8326 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.4885739",
- "latitude": "52.07494939999999",
- "address": "Северный, 3",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-27-05-03-14-stp.jpg",
- "trainings": 0
- },
- {
- "id": 8327,
- "name": "№8327 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.48937782838982",
- "latitude": "52.07460795966718",
- "address": "Северный,5",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-27-05-03-17-xvj.jpg",
- "trainings": 0
- },
- {
- "id": 8328,
- "name": "№8328 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "32.89676303563647",
- "latitude": "45.377040014974924",
- "address": "Морская улица, 23 село Знаменское, Окунёвское сельское поселение, Черноморский район, Республика Крым, Россия",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-27-13-03-26-ofx.jpg",
- "trainings": 0
- },
- {
- "id": 8329,
- "name": "№8329 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "103.86413316693415",
- "latitude": "52.52491551131336",
- "address": "7а микрорайон, Парк \"Отражение Совесткого Союза\"",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-28-08-03-07-i22.jpg",
- "trainings": 4
- },
- {
- "id": 8330,
- "name": "№8330 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "34.17167921052021",
- "latitude": "44.50124203231856",
- "address": "Руданского, 14 (Школа-Лицей №9)",
- "city_id": 557,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-28-11-03-47-ldn.jpg",
- "trainings": 0
- },
- {
- "id": 8331,
- "name": "№8331 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.560313",
- "latitude": "55.879375",
- "address": "улица 800-летия Москвы",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-29-07-03-14-gtf.jpg",
- "trainings": 1
- },
- {
- "id": 8332,
- "name": "№8332 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "86.1100378656372",
- "latitude": "55.3529131782929",
- "address": "Притомский 3",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-29-09-03-41-_er.jpg",
- "trainings": 0
- },
- {
- "id": 8333,
- "name": "№8333 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "61.31046993852078",
- "latitude": "56.79963387453363",
- "address": "Курчатова,29",
- "city_id": 788,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-29-18-03-36-usk.jpg",
- "trainings": 3
- },
- {
- "id": 8334,
- "name": "№8334 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.561087670357665",
- "latitude": "59.69015854313871",
- "address": "д7",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-30-08-03-37-pmw.jpg",
- "trainings": 1
- },
- {
- "id": 8336,
- "name": "№8336 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.56398529559374",
- "latitude": "59.69026361712388",
- "address": "д7",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-30-08-03-15-aza.jpg",
- "trainings": 1
- },
- {
- "id": 8337,
- "name": "№8337 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "11.026188600000069",
- "latitude": "49.37758909999999",
- "address": "thomas-kolb-brücke ",
- "city_id": 7499,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-30-18-03-20--xc.jpg",
- "trainings": 1
- },
- {
- "id": 8339,
- "name": "№8339 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.60163432275385",
- "latitude": "55.10504462701219",
- "address": "улица Гурьянова, 11",
- "city_id": 796,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-31-00-03-13-blb.jpg",
- "trainings": 1
- },
- {
- "id": 8341,
- "name": "№8341 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "61.317771958640606",
- "latitude": "56.79937864097707",
- "address": "1 школа",
- "city_id": 788,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-31-18-03-57-scu.jpg",
- "trainings": 1
- },
- {
- "id": 8342,
- "name": "№8342 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.61444791430688",
- "latitude": "59.72293307503546",
- "address": "Красноборская улица, д34",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-31-20-03-16-pg8.jpg",
- "trainings": 0
- },
- {
- "id": 8343,
- "name": "№8343 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.610563250108953",
- "latitude": "59.72281806912614",
- "address": "Д12",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-31-20-03-23-_gw.jpg",
- "trainings": 0
- },
- {
- "id": 8344,
- "name": "№8344 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.61271530746808",
- "latitude": "59.72349464239134",
- "address": "Красноборская улица, д44",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-31-20-03-22-dli.jpg",
- "trainings": 0
- },
- {
- "id": 8345,
- "name": "№8345 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.615751613603493",
- "latitude": "59.72090524166418",
- "address": "Д46",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-31-21-03-18-ryz.jpg",
- "trainings": 0
- },
- {
- "id": 8346,
- "name": "№8346 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.607794327843294",
- "latitude": "59.721222456690356",
- "address": "Д16",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-31-21-03-07-zuq.jpg",
- "trainings": 0
- },
- {
- "id": 8347,
- "name": "№8347 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.608523538050235",
- "latitude": "59.7210185965538",
- "address": "Д3",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-31-21-03-35-rw6.jpg",
- "trainings": 0
- },
- {
- "id": 8348,
- "name": "№8348 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.56046426607486",
- "latitude": "59.68891640537156",
- "address": "За школой",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/03/2018-03-31-21-03-39-vby.jpg",
- "trainings": 0
- },
- {
- "id": 8349,
- "name": "№8349 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.46976810000001",
- "latitude": "59.911087",
- "address": "Подвойского 13к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-01-10-04-05-wfr.jpg",
- "trainings": 5
- },
- {
- "id": 8350,
- "name": "№8350 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.565687",
- "latitude": "55.876505",
- "address": "Керамический проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-02-07-04-25-h0c.jpg",
- "trainings": 1
- },
- {
- "id": 8351,
- "name": "№8351 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.94088160779575",
- "latitude": "55.015434767229635",
- "address": "Нижегородская 20",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-02-22-04-19-t15.jpg",
- "trainings": 0
- },
- {
- "id": 8352,
- "name": "№8352 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.565633802340585",
- "latitude": "53.874891627549836",
- "address": "Надеждинская, 23",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-04-10-04-02-ttq.jpg",
- "trainings": 4
- },
- {
- "id": 8353,
- "name": "№8353 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "26.91971147647405",
- "latitude": "54.489006942282536",
- "address": "Городской парк",
- "city_id": 8007,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-04-10-04-55-r1q.jpg",
- "trainings": 0
- },
- {
- "id": 8354,
- "name": "№8354 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "73.36049629206536",
- "latitude": "54.99563729760703",
- "address": "Красный путь 18",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-04-11-04-39-4cj.jpg",
- "trainings": 0
- },
- {
- "id": 8355,
- "name": "№8355 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.42458674603267",
- "latitude": "52.04071684642509",
- "address": "пер. Авиационный, 10",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-10-12-04-29-iwz.jpg",
- "trainings": 1
- },
- {
- "id": 8356,
- "name": "№8356 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.52217245305633",
- "latitude": "55.9636599871799",
- "address": "ул. набережная, 27",
- "city_id": 35,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-04-14-04-05-8lx.jpg",
- "trainings": 0
- },
- {
- "id": 8357,
- "name": "№8357 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.526384207409706",
- "latitude": "55.960432538746254",
- "address": "ул. московская, 56",
- "city_id": 35,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-04-14-04-25-dju.jpg",
- "trainings": 1
- },
- {
- "id": 8358,
- "name": "№8358 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.63179047354129",
- "latitude": "56.90306032282758",
- "address": "ул. Таганская, д. 53",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-04-15-04-27-xw-.jpg",
- "trainings": 0
- },
- {
- "id": 8359,
- "name": "№8359 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.61560093016351",
- "latitude": "56.90022830216525",
- "address": "проспект Космонавтов, д. 70",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-04-15-04-42-i7o.jpg",
- "trainings": 0
- },
- {
- "id": 8360,
- "name": "№8360 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.63350282222905",
- "latitude": "56.90176187629034",
- "address": "ул. Таганская, д. 51А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-04-15-04-21-x8k.jpg",
- "trainings": 0
- },
- {
- "id": 8361,
- "name": "№8361 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.191463",
- "latitude": "44.502700",
- "address": "Ялта, отель Ялта-интурист",
- "city_id": 557,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-04-18-04-17-dvz.jpg",
- "trainings": 0
- },
- {
- "id": 8362,
- "name": "№8362 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.181695",
- "latitude": "44.498700",
- "address": "Дражинского улица, набережная",
- "city_id": 557,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-04-18-04-57-mw-.jpg",
- "trainings": 1
- },
- {
- "id": 8363,
- "name": "№8363 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.57762708916334",
- "latitude": "55.566335404161904",
- "address": "Бульвар Дмитрия Донского 11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-06-22-04-33-fpg.jpg",
- "trainings": 3
- },
- {
- "id": 8364,
- "name": "№8364 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.79989462149581",
- "latitude": "55.92764968146542",
- "address": "первомайская 2, пятёрочка",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-07-16-04-17-sdm.jpg",
- "trainings": 1
- },
- {
- "id": 8366,
- "name": "№8366 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.236654477376533",
- "latitude": "60.074797534570344",
- "address": "Первого мая 87",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-08-09-04-56-zis.jpg",
- "trainings": 1
- },
- {
- "id": 8367,
- "name": "№8367 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.553258",
- "latitude": "55.869367",
- "address": "бескудниковский б-р",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-09-18-04-46-cnx.jpg",
- "trainings": 0
- },
- {
- "id": 8369,
- "name": "№8369 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.78364814268946",
- "latitude": "58.045481918996636",
- "address": "улица Приборостроителей 18",
- "city_id": 646,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-11-08-04-07-x9p.jpg",
- "trainings": 1
- },
- {
- "id": 8370,
- "name": "№8370 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.38722306560669",
- "latitude": "49.92841442099348",
- "address": "Луи Пастера 179",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-11-09-04-30-tk8.jpg",
- "trainings": 0
- },
- {
- "id": 8371,
- "name": "№8371 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.93627869406055",
- "latitude": "50.29589255891909",
- "address": "ул. Ленина",
- "city_id": 8579,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-11-14-04-47--ru.jpg",
- "trainings": 1
- },
- {
- "id": 8372,
- "name": "№8372 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.456642386677686",
- "latitude": "60.02876799638017",
- "address": "Ул. Корнея Чуковского 3, к.3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-11-17-04-14-nds.jpg",
- "trainings": 0
- },
- {
- "id": 8373,
- "name": "№8373 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.45543633732609",
- "latitude": "60.028029690533025",
- "address": "Ул. Корнея Чуковского 3, к.4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-11-18-04-24-xcn.jpg",
- "trainings": 1
- },
- {
- "id": 8374,
- "name": "№8374 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.455168116424602",
- "latitude": "60.02759553805557",
- "address": "Ул. Корнея Чуковского 3, к.4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-11-18-04-13-3wu.jpg",
- "trainings": 0
- },
- {
- "id": 8375,
- "name": "№8375 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.454070728094507",
- "latitude": "60.026926920901786",
- "address": "Пр.Маршака 24, к.2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-11-18-04-26-qpk.jpg",
- "trainings": 0
- },
- {
- "id": 8376,
- "name": "№8376 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.45154987252772",
- "latitude": "60.03179391587458",
- "address": "Пр.Маршака 16, к.4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-11-18-04-45-2ok.jpg",
- "trainings": 0
- },
- {
- "id": 8377,
- "name": "№8377 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.452163188885493",
- "latitude": "60.03395607225699",
- "address": "Ул. Даниила Хармса 7",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-11-18-04-40-8c9.jpg",
- "trainings": 0
- },
- {
- "id": 8378,
- "name": "№8378 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.448919562704532",
- "latitude": "60.034451075297085",
- "address": "Ул. Даниила Хармса 4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-11-18-04-10-yx8.jpg",
- "trainings": 0
- },
- {
- "id": 8379,
- "name": "№8379 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.4487488649429",
- "latitude": "60.03692172761763",
- "address": "Муринская дорога 84, лит.А",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-11-18-04-34-ktq.jpg",
- "trainings": 0
- },
- {
- "id": 8380,
- "name": "№8380 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.32839026665647",
- "latitude": "55.82007723247643",
- "address": "Школьная улица, 9",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-12-08-04-44-cly.jpg",
- "trainings": 0
- },
- {
- "id": 8381,
- "name": "№8381 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.982846",
- "latitude": "56.319950",
- "address": "улица Заломова",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-12-12-04-47-q6y.jpg",
- "trainings": 1
- },
- {
- "id": 8382,
- "name": "№8382 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "28.310678434610054",
- "latitude": "57.80902396664868",
- "address": "Народная",
- "city_id": 107,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-12-14-04-43-xcz.jpg",
- "trainings": 0
- },
- {
- "id": 8385,
- "name": "№8385 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "29.19072295933836",
- "latitude": "53.1657414410235",
- "address": "50лет ВЛКСМ 33",
- "city_id": 779,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-14-20-04-24-8xm.jpg",
- "trainings": 1
- },
- {
- "id": 8386,
- "name": "№8386 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.92866400000003",
- "latitude": "43.12070000000001",
- "address": "Проспект Красного Знамени 118",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-15-08-04-53-bo5.jpg",
- "trainings": 1
- },
- {
- "id": 8387,
- "name": "№8387 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.63749563425449",
- "latitude": "55.788810009406795",
- "address": "средняя переяславская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-15-18-04-01-l9b.jpg",
- "trainings": 1
- },
- {
- "id": 8388,
- "name": "№8388 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.53785588592291",
- "latitude": "50.44176389056172",
- "address": "Кловский спуск, 6",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-16-22-04-51-vlq.jpg",
- "trainings": 2
- },
- {
- "id": 8391,
- "name": "№8391 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.92008367724611",
- "latitude": "55.04358776359082",
- "address": "Мичурина 27",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-16-23-04-40-o_n.jpg",
- "trainings": 0
- },
- {
- "id": 8392,
- "name": "№8392 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.91348164118881",
- "latitude": "55.97759141859799",
- "address": "Фабричный проезд",
- "city_id": 45,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-20-18-04-52-yo8.jpg",
- "trainings": 3
- },
- {
- "id": 8393,
- "name": "№8393 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.6315545183794",
- "latitude": "56.90405266516089",
- "address": "ул. Таганская, д. 57",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-18-09-04-14-siq.jpeg",
- "trainings": 0
- },
- {
- "id": 8394,
- "name": "№8394 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.653636142292044",
- "latitude": "56.86819782488563",
- "address": "ул. Данилы Зверева, д. 30",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-18-06-04-14-bqe.jpg",
- "trainings": 0
- },
- {
- "id": 8395,
- "name": "№8395 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.63838787500765",
- "latitude": "56.90640073503238",
- "address": "ул. Фрезеровщиков, 84А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-18-20-04-26-rjp.jpeg",
- "trainings": 0
- },
- {
- "id": 8396,
- "name": "№8396 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.5192000842851",
- "latitude": "55.75910750018421",
- "address": "Шелепихинское шоссе 17",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-19-11-04-08-mcd.jpg",
- "trainings": 0
- },
- {
- "id": 8397,
- "name": "№8397 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "113.48540330000003",
- "latitude": "52.0074863",
- "address": "Ул.промышленная школа 46",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-19-13-04-14-12k.jpg",
- "trainings": 1
- },
- {
- "id": 8398,
- "name": "№8398 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "46.0203310784741",
- "latitude": "51.5423600322899",
- "address": "ул.Рахова, 187",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-19-14-04-23-jlw.jpg",
- "trainings": 1
- },
- {
- "id": 8399,
- "name": "№8399 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.63135712631993",
- "latitude": "56.899811013498926",
- "address": "ул. Кобозева, д. 75",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-19-19-04-58-ji5.jpeg",
- "trainings": 0
- },
- {
- "id": 8400,
- "name": "№8400 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.63402509192656",
- "latitude": "56.89796435930557",
- "address": "ул. Лобкова, д. 38",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-19-20-04-34-gy9.jpeg",
- "trainings": 0
- },
- {
- "id": 8401,
- "name": "№8401 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.61317510192907",
- "latitude": "56.8815210379282",
- "address": "проспект Космонавтов, д. 30/1",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-20-14-04-13-8jy.jpeg",
- "trainings": 0
- },
- {
- "id": 8402,
- "name": "№8402 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.559737",
- "latitude": "59.289537",
- "address": "Illuka, Ida-Virumaa",
- "city_id": 8734,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-20-15-04-51-xhp.jpg",
- "trainings": 1
- },
- {
- "id": 8404,
- "name": "№8404 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.678620",
- "latitude": "55.714538",
- "address": "улица Шарикоподшипниковская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-20-19-04-14-cmv.jpg",
- "trainings": 3
- },
- {
- "id": 8405,
- "name": "№8405 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.954812302655",
- "latitude": "48.094291969585846",
- "address": "кв-л Химик",
- "city_id": 804,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-21-13-04-20-0fr.jpg",
- "trainings": 0
- },
- {
- "id": 8406,
- "name": "№8406 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.262638",
- "latitude": "55.676595",
- "address": "Одинцовский район",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-21-18-04-30-xtd.jpg",
- "trainings": 5
- },
- {
- "id": 8407,
- "name": "№8407 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.774097",
- "latitude": "44.691472",
- "address": "улица Куникова, 58",
- "city_id": 88,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-22-09-04-24-b33.jpg",
- "trainings": 0
- },
- {
- "id": 8408,
- "name": "№8408 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.776792",
- "latitude": "44.691880",
- "address": "улица Куникова, 38",
- "city_id": 88,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-22-09-04-59-cip.jpg",
- "trainings": 0
- },
- {
- "id": 8410,
- "name": "№8410 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.50092900000004",
- "latitude": "52.04201",
- "address": "Балябина, 39",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-23-09-04-27-qc2.jpg",
- "trainings": 0
- },
- {
- "id": 8411,
- "name": "№8411 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.49691289999998",
- "latitude": "52.03566319999999",
- "address": "Журавлева,41",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-23-09-04-34-kqn.jpg",
- "trainings": 0
- },
- {
- "id": 8412,
- "name": "№8412 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.769716739273008",
- "latitude": "46.432528980006076",
- "address": "Аркадия пляж, 15а",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-23-10-04-05-eo9.jpg",
- "trainings": 0
- },
- {
- "id": 8413,
- "name": "№8413 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.77077191636215",
- "latitude": "46.43514216298962",
- "address": "Приморский район",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-23-10-04-45-8-j.jpg",
- "trainings": 0
- },
- {
- "id": 8414,
- "name": "№8414 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.770656761818373",
- "latitude": "46.43601051656099",
- "address": "Приморский район",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-23-10-04-30-qwb.jpg",
- "trainings": 0
- },
- {
- "id": 8415,
- "name": "№8415 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.513106296959",
- "latitude": "52.04079597316346",
- "address": "Горького, 59",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-23-10-04-24-yjw.jpg",
- "trainings": 0
- },
- {
- "id": 8416,
- "name": "№8416 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.633940169889456",
- "latitude": "55.72976802915998",
- "address": "Ул. Зацепа 19/2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-23-11-04-03-8c1.jpg",
- "trainings": 1
- },
- {
- "id": 8417,
- "name": "№8417 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.33621576375424",
- "latitude": "55.81536528638578",
- "address": "Железнодорожная улица, 1А",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-23-18-04-21-ygi.jpg",
- "trainings": 0
- },
- {
- "id": 8418,
- "name": "№8418 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.234291100000064",
- "latitude": "59.853683",
- "address": "Ленинский проспект 110 корпус 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-24-01-04-27-iyt.jpg",
- "trainings": 0
- },
- {
- "id": 8419,
- "name": "№8419 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "117.00818909173324",
- "latitude": "52.5070171184129",
- "address": "пгт. Чернышевск, Комсомольская 32",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-24-16-04-03-xej.jpg",
- "trainings": 1
- },
- {
- "id": 8420,
- "name": "№8420 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.46535849999998",
- "latitude": "55.1312666",
- "address": "Гранитная 7",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-24-16-04-52-v7x.jpg",
- "trainings": 3
- },
- {
- "id": 8421,
- "name": "№8421 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.49379275758838",
- "latitude": "50.42698119032072",
- "address": "Волгоградська 5",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-24-21-04-08-bp-.jpg",
- "trainings": 1
- },
- {
- "id": 8422,
- "name": "№8422 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "26.540158",
- "latitude": "55.873150",
- "address": "Tautas iela",
- "city_id": 426,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-24-23-04-29--hq.jpg",
- "trainings": 0
- },
- {
- "id": 8423,
- "name": "№8423 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.63784179577033",
- "latitude": "56.89645436712191",
- "address": "ул. Донская, д. 20",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-25-12-04-25-tfd.jpeg",
- "trainings": 0
- },
- {
- "id": 8424,
- "name": "№8424 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.45563212869456",
- "latitude": "55.736954825000296",
- "address": "Звенигородская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-25-21-04-11-19f.jpg",
- "trainings": 4
- },
- {
- "id": 8425,
- "name": "№8425 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.92995855212212",
- "latitude": "55.04380402432413",
- "address": "Гоголя 23",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-26-18-04-18-sdr.jpg",
- "trainings": 0
- },
- {
- "id": 8426,
- "name": "№8426 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.596445",
- "latitude": "55.891395",
- "address": "Мурановская 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-26-20-04-23-fkm.jpg",
- "trainings": 1
- },
- {
- "id": 8427,
- "name": "№8427 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.65914547223508",
- "latitude": "47.19209708455977",
- "address": "Железнодорожный нижний проезд",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-27-10-04-10-w6t.jpg",
- "trainings": 0
- },
- {
- "id": 8428,
- "name": "№8428 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "74.61176345506351",
- "latitude": "42.84361529792943",
- "address": "Ахунбаева, 97/1",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-28-05-04-52-6b0.jpg",
- "trainings": 1
- },
- {
- "id": 8429,
- "name": "№8429 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.92794974470519",
- "latitude": "55.044503974642716",
- "address": "Семьи Шамшиных 85",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-28-12-04-26-5oz.jpg",
- "trainings": 0
- },
- {
- "id": 8430,
- "name": "№8430 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.93272365026246",
- "latitude": "55.04413513635618",
- "address": "Ольги Жилиной 71",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-28-12-04-18-e1t.jpg",
- "trainings": 0
- },
- {
- "id": 8431,
- "name": "№8431 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.9364098637543",
- "latitude": "55.04435619415883",
- "address": "Гоголя 37",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-28-12-04-52-ihk.jpg",
- "trainings": 0
- },
- {
- "id": 8432,
- "name": "№8432 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.46471339999994",
- "latitude": "55.9173798",
- "address": "Спортивный проезд дом.5",
- "city_id": 8460,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-28-11-04-46-2zl.jpg",
- "trainings": 1
- },
- {
- "id": 8434,
- "name": "№8434 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "51.94525656423252",
- "latitude": "47.12628734866556",
- "address": "Арбат на привокзальном",
- "city_id": 407,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-28-19-04-33-8l8.jpeg",
- "trainings": 0
- },
- {
- "id": 8435,
- "name": "№8435 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.18006540634428",
- "latitude": "49.983297260021416",
- "address": "Полтавский 152",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-29-08-04-05-gbc.jpg",
- "trainings": 0
- },
- {
- "id": 8436,
- "name": "№8436 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.93181819377901",
- "latitude": "55.029327850692326",
- "address": "Депутатская 60",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-29-20-04-02-mxc.jpg",
- "trainings": 0
- },
- {
- "id": 8437,
- "name": "№8437 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.20484921841614",
- "latitude": "61.679992500609025",
- "address": "Городской парк",
- "city_id": 7962,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-30-01-04-03-zib.jpg",
- "trainings": 1
- },
- {
- "id": 8441,
- "name": "№8441 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "71.44162101961388",
- "latitude": "51.15726573703405",
- "address": "район Молодежный, ул. Т. Хусейна, д. 15/3",
- "city_id": 406,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-30-07-04-08-hxz.jpg",
- "trainings": 0
- },
- {
- "id": 8442,
- "name": "№8442 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "71.4282145360005",
- "latitude": "51.15525586318354",
- "address": "Самал микрорайон, 10",
- "city_id": 406,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-30-10-04-32-i6s.jpg",
- "trainings": 0
- },
- {
- "id": 8443,
- "name": "№8443 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "71.43378390811881",
- "latitude": "51.15894861118224",
- "address": "Малика Габдуллина, 6",
- "city_id": 406,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-30-10-04-19-zmy.jpg",
- "trainings": 0
- },
- {
- "id": 8444,
- "name": "№8444 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "71.43576887292147",
- "latitude": "51.1584538669238",
- "address": "Бараева, 13",
- "city_id": 406,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-30-10-04-33-vhu.jpg",
- "trainings": 0
- },
- {
- "id": 8445,
- "name": "№8445 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "65.62458008869271",
- "latitude": "57.12726647383697",
- "address": "Гилевская роща",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-30-16-04-49-njo.jpg",
- "trainings": 0
- },
- {
- "id": 8446,
- "name": "№8446 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.293697",
- "latitude": "55.949296",
- "address": "улица Вишневая",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/04/2018-04-30-17-04-03-zcy.jpg",
- "trainings": 1
- },
- {
- "id": 8447,
- "name": "№8447 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.97475632142641",
- "latitude": "55.03731344755941",
- "address": "Бориса Богаткова 219",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-01-05-05-07-hhv.jpg",
- "trainings": 0
- },
- {
- "id": 8448,
- "name": "№8448 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "56.706096",
- "latitude": "57.927953",
- "address": "д. Жебреи, берег реки Сылва",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-01-14-05-53-n4-.jpg",
- "trainings": 0
- },
- {
- "id": 8449,
- "name": "№8449 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.370883",
- "latitude": "55.515075",
- "address": "улица Гимнастическая",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-01-17-05-31-kae.jpg",
- "trainings": 1
- },
- {
- "id": 8450,
- "name": "№8450 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "83.09013206613156",
- "latitude": "54.871172738323864",
- "address": "Российская 10",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-01-19-05-13-wsh.jpg",
- "trainings": 5
- },
- {
- "id": 8451,
- "name": "№8451 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "34.97335724583161",
- "latitude": "57.04827120321482",
- "address": "\"АВАНГАРД\"",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-01-20-05-23-zyf.jpg",
- "trainings": 3
- },
- {
- "id": 8452,
- "name": "№8452 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.552925",
- "latitude": "55.597428",
- "address": "Новоясеневский тупик",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-02-15-05-37-_x0.jpg",
- "trainings": 2
- },
- {
- "id": 8454,
- "name": "№8454 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.452527195949187",
- "latitude": "60.02872707728754",
- "address": "Пр.Маршака 20",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-02-18-05-26-qfo.jpg",
- "trainings": 2
- },
- {
- "id": 8455,
- "name": "№8455 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.45809949314571",
- "latitude": "60.027354113506824",
- "address": "Ул. Корнея Чуковского 5, к.4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-02-18-05-28-fxx.jpg",
- "trainings": 0
- },
- {
- "id": 8456,
- "name": "№8456 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.45875246004948",
- "latitude": "60.030514794659375",
- "address": "Муринская дорога 64",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-02-18-05-06-gyk.jpg",
- "trainings": 0
- },
- {
- "id": 8457,
- "name": "№8457 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.35288907841709",
- "latitude": "52.32647960721121",
- "address": "Долгоруковский лицей, с.Долгоруково, Липецкая обл. ",
- "city_id": 7809,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-02-18-05-50-uey.jpg",
- "trainings": 0
- },
- {
- "id": 8458,
- "name": "№8458 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-15.447558736245696",
- "latitude": "28.130256106391364",
- "address": "2, Calle Covadonga, 35010 Las Palmas de Gran Canaria, Las Palmas, Spain",
- "city_id": 8742,
- "country_id": 10,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-02-21-05-54-roi.jpg",
- "trainings": 0
- },
- {
- "id": 8459,
- "name": "№8459 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "-15.451194518420039",
- "latitude": "28.129782365624898",
- "address": "Parque Litoral El Rincón, Las Palmas, Spain",
- "city_id": 8742,
- "country_id": 10,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-02-22-05-52-5mh.jpg",
- "trainings": 0
- },
- {
- "id": 8460,
- "name": "№8460 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-15.450363416671735",
- "latitude": "28.101362699102683",
- "address": "Parque Juan Pablo II, Calle Hoya del Enamorado, Las Palmas de Gran Canaria, Spain",
- "city_id": 8742,
- "country_id": 10,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-02-22-05-16-lcs.jpg",
- "trainings": 0
- },
- {
- "id": 8461,
- "name": "№8461 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.057417262034846",
- "latitude": "55.8147098221467",
- "address": "парк Петрова, Красные ворота",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-03-08-05-53-6db.jpg",
- "trainings": 0
- },
- {
- "id": 8462,
- "name": "№8462 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.617303",
- "latitude": "55.767945",
- "address": "Москва, Тверской",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-03-12-05-43-3mq.jpg",
- "trainings": 1
- },
- {
- "id": 8463,
- "name": "№8463 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.484522200449646",
- "latitude": "52.37210674885957",
- "address": "Трубчевский р-н, пгт. Белая Березка, Детский оздоровительный лагерь имени Юрия Гагарина",
- "city_id": 7430,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-03-23-05-44-orz.jpg",
- "trainings": 1
- },
- {
- "id": 8464,
- "name": "№8464 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.06432179719059",
- "latitude": "44.05883506308179",
- "address": "Ул. Панагюриште, 12",
- "city_id": 735,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-04-20-05-41-_kj.jpg",
- "trainings": 1
- },
- {
- "id": 8465,
- "name": "№8465 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "31.280574399999978",
- "latitude": "51.5161998",
- "address": "Стрелецкий рынок",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-04-22-05-04-lyu.jpg",
- "trainings": 0
- },
- {
- "id": 8467,
- "name": "№8467 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "23.770184652677813",
- "latitude": "56.965270050768765",
- "address": "Слокас 36",
- "city_id": 432,
- "country_id": 13,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-05-00-05-13-485.jpg",
- "trainings": 1
- },
- {
- "id": 8468,
- "name": "№8468 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.585400",
- "latitude": "55.600350",
- "address": "улица Чертановская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-05-10-05-32--n5.jpg",
- "trainings": 1
- },
- {
- "id": 8469,
- "name": "№8469 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.262533",
- "latitude": "58.011113",
- "address": "Пушкина 6",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-05-14-05-47-byg.jpg",
- "trainings": 0
- },
- {
- "id": 8472,
- "name": "№8472 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.07850300702842",
- "latitude": "44.05999291974115",
- "address": "место дуэли Лермонтова",
- "city_id": 735,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-07-10-05-59-rly.jpg",
- "trainings": 1
- },
- {
- "id": 8473,
- "name": "№8473 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.602678",
- "latitude": "55.590212",
- "address": "Варшавское шоссе",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-07-11-05-04-_iw.jpg",
- "trainings": 3
- },
- {
- "id": 8474,
- "name": "№8474 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "74.60935053589856",
- "latitude": "42.82866373834884",
- "address": "8 микрорайон, 31в",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-07-12-05-55-9ke.jpg",
- "trainings": 0
- },
- {
- "id": 8476,
- "name": "№8476 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.51063177641208",
- "latitude": "52.618303785865635",
- "address": "ул.Пожарная д.1",
- "city_id": 7809,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-07-21-05-31-tjl.jpg",
- "trainings": 0
- },
- {
- "id": 8477,
- "name": "№8477 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.44353429325406",
- "latitude": "55.80298860606309",
- "address": "Строгинское шоссе",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-07-21-05-02-8qf.jpg",
- "trainings": 2
- },
- {
- "id": 8478,
- "name": "№8478 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.44189130421455",
- "latitude": "55.80371974933966",
- "address": "Строгинское шоссе",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-07-21-05-58-ri6.jpg",
- "trainings": 3
- },
- {
- "id": 8479,
- "name": "№8479 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "43.989220",
- "latitude": "56.302188",
- "address": "ул. ветеринарная ",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-09-18-05-59-zph.jpg",
- "trainings": 3
- },
- {
- "id": 8480,
- "name": "№8480 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "73.19604532380367",
- "latitude": "49.893624331967395",
- "address": "Парк им. 50-летия Казахстана",
- "city_id": 412,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-09-18-05-52-uyr.jpg",
- "trainings": 1
- },
- {
- "id": 8481,
- "name": "№8481 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.163013065128098",
- "latitude": "59.83826624174611",
- "address": "Здоровцева 14",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-10-12-05-39-oqo.jpg",
- "trainings": 3
- },
- {
- "id": 8482,
- "name": "№8482 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "23.252641294360615",
- "latitude": "42.678115529411485",
- "address": "Маестро Кънев, 78",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-10-19-05-08-lkv.jpg",
- "trainings": 0
- },
- {
- "id": 8484,
- "name": "№8484 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.58612262231384",
- "latitude": "56.90333135400537",
- "address": "ул. Бакинских Комиссаров, д. 50А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-11-13-05-35-kmk.jpg",
- "trainings": 0
- },
- {
- "id": 8485,
- "name": "№8485 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.58360439821445",
- "latitude": "56.90103617789493",
- "address": "ул. Уральских Рабочих, д. 79",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-11-13-05-36-crm.jpg",
- "trainings": 0
- },
- {
- "id": 8486,
- "name": "№8486 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.571981825717785",
- "latitude": "56.8968134398559",
- "address": "ул. Бакинских Комиссаров, д. 13",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-11-13-05-17-tpa.jpg",
- "trainings": 0
- },
- {
- "id": 8487,
- "name": "№8487 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.5809491724483",
- "latitude": "56.89754407964477",
- "address": "ул. Кировоградская, д. 66",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-11-13-05-37-lj5.jpg",
- "trainings": 0
- },
- {
- "id": 8488,
- "name": "№8488 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.629827218014725",
- "latitude": "56.89680735339468",
- "address": "ул. Красных командиров, д. 72",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-11-13-05-19-g1l.jpg",
- "trainings": 0
- },
- {
- "id": 8491,
- "name": "№8491 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.26760837435722",
- "latitude": "57.018427111319596",
- "address": "ул ростовская",
- "city_id": 8228,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20180511_145644.jpg",
- "trainings": 1
- },
- {
- "id": 8492,
- "name": "№8492 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.64747999999997",
- "latitude": "55.752338",
- "address": "Malyy Nikolovorobinskiy pereulok",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-12-16-05-45-awg.jpg",
- "trainings": 1
- },
- {
- "id": 8493,
- "name": "№8493 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "131.945372",
- "latitude": "43.830397",
- "address": "улица Некрасова 236 а",
- "city_id": 786,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-13-07-05-55-h6i.jpg",
- "trainings": 1
- },
- {
- "id": 8494,
- "name": "№8494 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.91327755074883",
- "latitude": "55.052515092095796",
- "address": "Красный проспект 85",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-13-08-05-28-f7x.jpg",
- "trainings": 0
- },
- {
- "id": 8495,
- "name": "№8495 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.99155486249424",
- "latitude": "45.05921286350377",
- "address": "Чистяковская роща",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-13-13-05-36-pre.jpg",
- "trainings": 1
- },
- {
- "id": 8496,
- "name": "№8496 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.66935957611372",
- "latitude": "51.65723332044889",
- "address": "Россия, Курская область, Курчатов, улица Строителей 4",
- "city_id": 7923,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-13-18-05-37--io.jpg",
- "trainings": 0
- },
- {
- "id": 8497,
- "name": "№8497 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.344913",
- "latitude": "59.918780",
- "address": "Borovaya ulitsa",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-13-18-05-31-ps8.jpg",
- "trainings": 0
- },
- {
- "id": 8498,
- "name": "№8498 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.54540094474669",
- "latitude": "55.7623907787995",
- "address": "2-я Черногрязская улица, 5к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-13-21-05-14-pxl.jpg",
- "trainings": 2
- },
- {
- "id": 8499,
- "name": "№8499 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.618627721798816",
- "latitude": "55.79240492060258",
- "address": "Советской Армии, 12с2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-13-21-05-07-601.jpg",
- "trainings": 5
- },
- {
- "id": 8500,
- "name": "№8500 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.72511110088726",
- "latitude": "43.58813060249112",
- "address": "Советская 46а",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-13-22-05-53-xjm.jpg",
- "trainings": 1
- },
- {
- "id": 8501,
- "name": "№8501 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.610090122168",
- "latitude": "55.77581654497243",
- "address": "Детский парк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-15-14-05-19-xxi.jpg",
- "trainings": 0
- },
- {
- "id": 8502,
- "name": "№8502 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.58084708128604",
- "latitude": "55.7014651467106",
- "address": "улица Вавилова 17А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-15-15-05-09-8sz.jpg",
- "trainings": 1
- },
- {
- "id": 8503,
- "name": "№8503 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "42.99842290454512",
- "latitude": "44.110770212164084",
- "address": "Ленина",
- "city_id": 727,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-15-23-05-24-qvi.jpg",
- "trainings": 1
- },
- {
- "id": 8504,
- "name": "№8504 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.46046856893463",
- "latitude": "55.877988996509586",
- "address": "Парк Левобережный",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-16-14-05-40-n2w.jpg",
- "trainings": 0
- },
- {
- "id": 8505,
- "name": "№8505 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.63601110000002",
- "latitude": "56.907481",
- "address": "ул. Фрезеровщиков, д. 86",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-16-17-05-33-shy.jpg",
- "trainings": 0
- },
- {
- "id": 8506,
- "name": "№8506 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.508965730667114",
- "latitude": "55.93547655257144",
- "address": "проспект Ракетостроителей,4",
- "city_id": 35,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-17-10-05-21--hm.jpg",
- "trainings": 1
- },
- {
- "id": 8509,
- "name": "№8509 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.603805",
- "latitude": "52.606472",
- "address": "Lipetsk",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-18-07-05-13-zjs.jpg",
- "trainings": 1
- },
- {
- "id": 8510,
- "name": "№8510 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.95559649999996",
- "latitude": "55.0145978",
- "address": "Ленинградская 101/2",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-18-10-05-45-gew.jpg",
- "trainings": 0
- },
- {
- "id": 8511,
- "name": "№8511 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "61.36764027182767",
- "latitude": "55.16179097201739",
- "address": "Комммуны, 145",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-18-11-05-44-pko.jpg",
- "trainings": 0
- },
- {
- "id": 8512,
- "name": "№8512 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "55.671490",
- "latitude": "58.004587",
- "address": "Устьев-Качка",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-20-11-05-35-pk1.jpg",
- "trainings": 0
- },
- {
- "id": 8513,
- "name": "№8513 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.62611226763909",
- "latitude": "55.71538502433131",
- "address": "Подольское шоссе 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-20-21-05-55-dij.jpg",
- "trainings": 0
- },
- {
- "id": 8514,
- "name": "№8514 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.483623773636054",
- "latitude": "52.37782557476259",
- "address": "пгт. Белая Березка, ул. Горького 34.",
- "city_id": 7430,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-20-21-05-52-xlw.jpg",
- "trainings": 1
- },
- {
- "id": 8515,
- "name": "№8515 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.91798989266181",
- "latitude": "55.06042953244442",
- "address": "Дуси Ковальчук 270/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-20-21-05-35-i7v.jpg",
- "trainings": 1
- },
- {
- "id": 8516,
- "name": "№8516 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.90890622367158",
- "latitude": "55.053714219061504",
- "address": "Галущака 17 ЖК Орлёнок",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-20-22-05-49-egp.jpg",
- "trainings": 1
- },
- {
- "id": 8517,
- "name": "№8517 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "73.242850",
- "latitude": "54.991208",
- "address": "Omsk",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-21-10-05-17-aet.jpg",
- "trainings": 1
- },
- {
- "id": 8519,
- "name": "№8519 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.53981772037662",
- "latitude": "55.676018150940784",
- "address": "Гарибальди, 13",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-22-17-05-48-70-.jpg",
- "trainings": 1
- },
- {
- "id": 8520,
- "name": "№8520 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.013577461242676",
- "latitude": "44.04248612868648",
- "address": "ул. Февральская, 283",
- "city_id": 735,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-22-17-05-02-pwo.jpg",
- "trainings": 1
- },
- {
- "id": 8521,
- "name": "№8521 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "84.975578",
- "latitude": "56.480428",
- "address": "Kiyevskaya ulitsa",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-23-11-05-23-bcv.jpg",
- "trainings": 0
- },
- {
- "id": 8522,
- "name": "№8522 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.70906280532154",
- "latitude": "56.7827609243427",
- "address": "10-й километр Кольцовского тракта",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-23-18-05-46-5bi.jpg",
- "trainings": 0
- },
- {
- "id": 8523,
- "name": "№8523 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.72592559526993",
- "latitude": "56.785358026625666",
- "address": "ул. Трубачёва, д. 60",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-23-18-05-02-zyq.jpg",
- "trainings": 0
- },
- {
- "id": 8524,
- "name": "№8524 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.61521650446775",
- "latitude": "56.88383695074309",
- "address": "проспект Космонавтов, д. 38",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-23-19-05-16-hpz.jpg",
- "trainings": 0
- },
- {
- "id": 8525,
- "name": "№8525 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.958310773016365",
- "latitude": "45.01666246512137",
- "address": "Кубанская набережная 3",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-24-18-05-18-jcy.jpg",
- "trainings": 0
- },
- {
- "id": 8527,
- "name": "№8527 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.73932528896273",
- "latitude": "55.64261843219475",
- "address": "Батайский проезд, 51",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-25-15-05-41-y7i.jpg",
- "trainings": 5
- },
- {
- "id": 8528,
- "name": "№8528 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.63491721824653",
- "latitude": "56.89919169024189",
- "address": "ул. Красных командиров, д. 104",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-25-18-05-29-avf.jpg",
- "trainings": 0
- },
- {
- "id": 8529,
- "name": "№8529 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "69.637769",
- "latitude": "42.334233",
- "address": "улица Жандарбекова",
- "city_id": 422,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-26-11-05-47-sp0.jpg",
- "trainings": 0
- },
- {
- "id": 8531,
- "name": "№8531 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.64183680436861",
- "latitude": "56.897343432461874",
- "address": "ул. Таганская, д. 8",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-27-19-05-07-ctc.jpg",
- "trainings": 0
- },
- {
- "id": 8532,
- "name": "№8532 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.63446229512749",
- "latitude": "56.89032433228841",
- "address": "ул. Краснофлотцев, д. 28",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-27-19-05-44-9wm.jpg",
- "trainings": 0
- },
- {
- "id": 8533,
- "name": "№8533 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.63091713137328",
- "latitude": "56.88514998346273",
- "address": "ул. Стачек, д. 3",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-27-19-05-54-j8b.jpg",
- "trainings": 0
- },
- {
- "id": 8534,
- "name": "№8534 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.62638687807248",
- "latitude": "56.88766976471007",
- "address": "ул. Краснофлотцев, д. 10",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-27-19-05-35-8js.jpg",
- "trainings": 0
- },
- {
- "id": 8535,
- "name": "№8535 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.9900353144559",
- "latitude": "55.06159803489483",
- "address": "Сад Дзержинского",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-28-05-05-42-pwk.jpg",
- "trainings": 0
- },
- {
- "id": 8536,
- "name": "№8536 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.94453586431621",
- "latitude": "55.0432599307293",
- "address": "Крылова 89",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-28-05-05-40-gvk.jpg",
- "trainings": 0
- },
- {
- "id": 8537,
- "name": "№8537 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.13118054956817",
- "latitude": "55.60617091092926",
- "address": "ул. Старомосковская",
- "city_id": 7730,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-28-11-05-01-j6g.jpg",
- "trainings": 0
- },
- {
- "id": 8538,
- "name": "№8538 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "76.93833427287746",
- "latitude": "43.25407200231226",
- "address": "Лицей 39",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-28-11-05-08-3ns.jpg",
- "trainings": 0
- },
- {
- "id": 8539,
- "name": "№8539 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.926940080426",
- "latitude": "43.23897370330116",
- "address": "Дворец Спорта им. Балуана Шолака",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-28-12-05-38-q4r.jpg",
- "trainings": 0
- },
- {
- "id": 8540,
- "name": "№8540 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.658182",
- "latitude": "55.712907",
- "address": "улица Восточная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-28-12-05-28-xqr.jpg",
- "trainings": 1
- },
- {
- "id": 8541,
- "name": "№8541 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.93325129999994",
- "latitude": "43.2200531",
- "address": "Аль-Фараби 110 в",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-28-12-05-25-pn8.jpg",
- "trainings": 0
- },
- {
- "id": 8542,
- "name": "№8542 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.96144726914429",
- "latitude": "43.21239452636982",
- "address": "Тайманова 222",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-28-13-05-18-u6-.jpg",
- "trainings": 0
- },
- {
- "id": 8546,
- "name": "№8546 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "55.816571116447456",
- "latitude": "54.701087243327834",
- "address": "Дёма , Баланово",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-29-20-05-49-gki.jpg",
- "trainings": 2
- },
- {
- "id": 8547,
- "name": "№8547 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.428846747099783",
- "latitude": "54.49348830823913",
- "address": "Школа \t20 (за школой) ",
- "city_id": 7386,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-29-21-05-01-p6n.jpg",
- "trainings": 1
- },
- {
- "id": 8548,
- "name": "№8548 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.93269103520561",
- "latitude": "55.04269313806006",
- "address": "Ольги Жилиной 45",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-30-11-05-01-pzv.jpg",
- "trainings": 0
- },
- {
- "id": 8549,
- "name": "№8549 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.93773460575812",
- "latitude": "55.038782820113184",
- "address": "Фрунзе 53",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-30-11-05-37-zui.jpg",
- "trainings": 0
- },
- {
- "id": 8550,
- "name": "№8550 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.92786919082562",
- "latitude": "55.04165090085934",
- "address": "Крылова 27",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-30-11-05-43-szh.jpg",
- "trainings": 0
- },
- {
- "id": 8551,
- "name": "№8551 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.46104008073371",
- "latitude": "55.873277475340196",
- "address": "Прибрежный проезд, 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-30-12-05-48-wdc.jpg",
- "trainings": 0
- },
- {
- "id": 8552,
- "name": "№8552 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.46258240139696",
- "latitude": "55.87383066238259",
- "address": "Прибрежный проезд, 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-30-12-05-59-lps.jpg",
- "trainings": 0
- },
- {
- "id": 8553,
- "name": "№8553 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.706131",
- "latitude": "55.903481",
- "address": "юбилейная 35",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-30-17-05-43-svn.jpg",
- "trainings": 0
- },
- {
- "id": 8554,
- "name": "№8554 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.484100022695657",
- "latitude": "59.91991481055584",
- "address": "Товарищеский проспект, 8 к 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-30-22-05-28-k0t.jpg",
- "trainings": 1
- },
- {
- "id": 8555,
- "name": "№8555 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-0.3613396499947612",
- "latitude": "39.46835436168954",
- "address": "Парк Рио Турия",
- "city_id": 652,
- "country_id": 10,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/05/2018-05-31-12-05-06-0e7.jpg",
- "trainings": 1
- },
- {
- "id": 8559,
- "name": "№8559 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.45597989999999",
- "latitude": "52.63972099999999",
- "address": "Александровский 15",
- "city_id": 7809,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-01-18-06-28-hgm.jpg",
- "trainings": 0
- },
- {
- "id": 8563,
- "name": "№8563 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "-8.865505",
- "latitude": "38.519512",
- "address": "Setúbal, Setubal",
- "city_id": 7774,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-02-13-06-42-02w.jpg",
- "trainings": 0
- },
- {
- "id": 8564,
- "name": "№8564 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.051445",
- "latitude": "34.677978",
- "address": "Coastal Pedestrian Path",
- "city_id": 8730,
- "country_id": 70,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-02-14-06-35-pgs.jpg",
- "trainings": 0
- },
- {
- "id": 8565,
- "name": "№8565 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.961447186260557",
- "latitude": "60.08129350399728",
- "address": "Приморское шоссе, 275",
- "city_id": 121,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-03-10-06-24-fjd.jpg",
- "trainings": 1
- },
- {
- "id": 8566,
- "name": "№8566 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "20.475049638999963",
- "latitude": "54.95782085",
- "address": "тургенева 5б",
- "city_id": 8442,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-02-22-06-27-0va.jpg",
- "trainings": 0
- },
- {
- "id": 8567,
- "name": "№8567 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.64200758261063",
- "latitude": "55.59172015529614",
- "address": "Харьковский проезд д.9 корп.2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-03-00-06-15-vfd.jpg",
- "trainings": 1
- },
- {
- "id": 8568,
- "name": "№8568 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.54042906151585",
- "latitude": "55.67712361903377",
- "address": "улица Гарибальди, 11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-03-10-06-02-xol.jpg",
- "trainings": 0
- },
- {
- "id": 8569,
- "name": "№8569 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.640783928558335",
- "latitude": "55.83264185622491",
- "address": "сергея эйзенштейна",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-03-10-06-14-uo0.jpg",
- "trainings": 1
- },
- {
- "id": 8570,
- "name": "№8570 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "44.489300",
- "latitude": "48.691238",
- "address": "улица Рабоче-Крестьянская",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-03-10-06-19--0z.jpg",
- "trainings": 2
- },
- {
- "id": 8571,
- "name": "№8571 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.49224372626213",
- "latitude": "52.024041509287606",
- "address": "1 мкр",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-03-12-06-36-idh.jpg",
- "trainings": 0
- },
- {
- "id": 8572,
- "name": "№8572 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "61.45391830950166",
- "latitude": "57.00937451350051",
- "address": "ул. Ленинградская, д. 29",
- "city_id": 687,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-03-12-06-10-j1z.jpg",
- "trainings": 0
- },
- {
- "id": 8573,
- "name": "№8573 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "61.46502129487044",
- "latitude": "57.00086112026081",
- "address": "ул. Физкультурников, д. 26",
- "city_id": 687,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-03-13-06-51-lev.jpg",
- "trainings": 0
- },
- {
- "id": 8574,
- "name": "№8574 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.252835",
- "latitude": "59.868896",
- "address": "На Турухтанные острова дорога",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-03-13-06-38-wfb.jpg",
- "trainings": 1
- },
- {
- "id": 8575,
- "name": "№8575 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "24.018424893135602",
- "latitude": "49.85289957278662",
- "address": "Джерельна 87",
- "city_id": 516,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-03-23-06-36-avp.jpg",
- "trainings": 0
- },
- {
- "id": 8576,
- "name": "№8576 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.86584145924371",
- "latitude": "55.92066002765721",
- "address": "проспект Космонавтов, 2А",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-04-18-06-46-gij.jpg",
- "trainings": 0
- },
- {
- "id": 8577,
- "name": "№8577 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "24.010729824539794",
- "latitude": "49.86764657777717",
- "address": "Під Голоском, 17б",
- "city_id": 516,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-04-20-06-42-niw.jpg",
- "trainings": 0
- },
- {
- "id": 8578,
- "name": "№8578 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.01662880736171",
- "latitude": "34.68982177983372",
- "address": "Evdomikostos Tetartos Dromos",
- "city_id": 8730,
- "country_id": 70,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-05-08-06-48-os9.jpeg",
- "trainings": 0
- },
- {
- "id": 8580,
- "name": "№8580 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "20.511072278022766",
- "latitude": "54.693544761011445",
- "address": "Южный парк",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-06-00-06-17-hcp.jpg",
- "trainings": 4
- },
- {
- "id": 8582,
- "name": "№8582 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.901413",
- "latitude": "43.125794",
- "address": "Nerchinskaya ulitsa 48",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-07-04-06-35-0o7.jpg",
- "trainings": 0
- },
- {
- "id": 8583,
- "name": "№8583 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.717312",
- "latitude": "43.606270",
- "address": "Рахманинова переулок",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-07-08-06-12-rcz.jpg",
- "trainings": 0
- },
- {
- "id": 8585,
- "name": "№8585 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.95572803018536",
- "latitude": "55.08452677058256",
- "address": "ПКиО Сосновый бор",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-07-14-06-40-ymh.jpg",
- "trainings": 0
- },
- {
- "id": 8586,
- "name": "№8586 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "59.948948900000005",
- "latitude": "57.8741359",
- "address": "Школа 69",
- "city_id": 611,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-07-20-06-06-riv.jpeg",
- "trainings": 2
- },
- {
- "id": 8587,
- "name": "№8587 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "34.976399813011085",
- "latitude": "57.039289866336254",
- "address": "Коледж Росрезерва",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-08-11-06-49-6p-.jpg",
- "trainings": 1
- },
- {
- "id": 8590,
- "name": "№8590 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.93817408520306",
- "latitude": "55.082718593436304",
- "address": "ПКиО Сосновый бор",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-08-20-06-14-i_q.jpg",
- "trainings": 0
- },
- {
- "id": 8591,
- "name": "№8591 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.566599",
- "latitude": "55.815845",
- "address": "улица Тимирязевская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-09-09-06-04-nht.jpg",
- "trainings": 0
- },
- {
- "id": 8592,
- "name": "№8592 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.562541",
- "latitude": "55.815641",
- "address": "улица Астрадамская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-09-10-06-43-eow.jpg",
- "trainings": 1
- },
- {
- "id": 8593,
- "name": "№8593 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "46.05803122851205",
- "latitude": "51.53008387851362",
- "address": "ул. Большая Затонская, 38",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-09-10-06-17-mbe.jpg",
- "trainings": 0
- },
- {
- "id": 8594,
- "name": "№8594 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "26.987974622660772",
- "latitude": "57.844990257476915",
- "address": "Парк Promenaad",
- "city_id": 8746,
- "country_id": 29,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-09-14-06-57-4k3.jpg",
- "trainings": 0
- },
- {
- "id": 8595,
- "name": "№8595 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.66418701639407",
- "latitude": "55.709131311984905",
- "address": "1-й Кожуховский проезд 19 к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-10-12-06-19-rtl.jpg",
- "trainings": 1
- },
- {
- "id": 8596,
- "name": "№8596 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.744283",
- "latitude": "54.617645",
- "address": "улица Яхонтова",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-10-18-06-12-0xo.jpg",
- "trainings": 0
- },
- {
- "id": 8597,
- "name": "№8597 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "49.165865069844926",
- "latitude": "55.78503926030608",
- "address": "Аделя Кутуя 4А",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-10-20-06-10-9xi.jpg",
- "trainings": 2
- },
- {
- "id": 8598,
- "name": "№8598 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "49.18634862156523",
- "latitude": "55.80530471809332",
- "address": "Пионерская 8А",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-10-20-06-19-tls.jpg",
- "trainings": 2
- },
- {
- "id": 8599,
- "name": "№8599 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "114.91496876994825",
- "latitude": "60.718412935700535",
- "address": "Первомайская 15б",
- "city_id": 8289,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-11-01-06-42-kdc.jpg",
- "trainings": 0
- },
- {
- "id": 8600,
- "name": "№8600 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.794143",
- "latitude": "54.614176",
- "address": "улица Советской Армии",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-11-09-06-28-eb7.jpg",
- "trainings": 0
- },
- {
- "id": 8601,
- "name": "№8601 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "39.794517",
- "latitude": "54.614472",
- "address": "улица Советской Армии",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-11-09-06-40-zds.jpg",
- "trainings": 0
- },
- {
- "id": 8602,
- "name": "№8602 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.55853438841632",
- "latitude": "55.70234897116002",
- "address": "косыгина",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-11-12-06-56-iqf.jpg",
- "trainings": 2
- },
- {
- "id": 8603,
- "name": "№8603 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "56.710399",
- "latitude": "57.930605",
- "address": "д. Жебреи, Набережная",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-11-17-06-55-hup.jpg",
- "trainings": 1
- },
- {
- "id": 8604,
- "name": "№8604 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.67839834231256",
- "latitude": "55.70762877218622",
- "address": "6-я Кожуховская улица, 27",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-12-08-06-55-vhn.jpg",
- "trainings": 0
- },
- {
- "id": 8605,
- "name": "№8605 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.62315007398729",
- "latitude": "56.906553265096925",
- "address": "ул. Шефская, д. 106/2",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-12-10-06-09-v8p.jpg",
- "trainings": 0
- },
- {
- "id": 8606,
- "name": "№8606 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.16870389855865",
- "latitude": "55.78039612540289",
- "address": "Толбухина 19",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-12-12-06-18-sek.jpg",
- "trainings": 1
- },
- {
- "id": 8607,
- "name": "№8607 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "59.984133799999995",
- "latitude": "57.9051248",
- "address": "Гостиница паркин ",
- "city_id": 611,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-12-15-06-37-x3l.jpeg",
- "trainings": 0
- },
- {
- "id": 8608,
- "name": "№8608 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.90952908154304",
- "latitude": "55.60258681753293",
- "address": "Лыткарино, \"стартовая площадка\" лыжной трассы",
- "city_id": 77,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-13-08-06-40-r3d.jpg",
- "trainings": 1
- },
- {
- "id": 8609,
- "name": "№8609 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.19588982220466",
- "latitude": "56.75380771512248",
- "address": "Дубна, ул Векслера 12",
- "city_id": 37,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-13-08-06-32-a7b.jpg",
- "trainings": 0
- },
- {
- "id": 8610,
- "name": "№8610 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.17850952628703",
- "latitude": "56.746332971714345",
- "address": "Россия, Дубна, ул. Строителей, д. 12",
- "city_id": 37,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-13-08-06-14-1vz.jpg",
- "trainings": 0
- },
- {
- "id": 8611,
- "name": "№8611 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "63.632744",
- "latitude": "53.213064",
- "address": "Кустанай, Кустанай",
- "city_id": 416,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-13-11-06-43-anm.jpg",
- "trainings": 0
- },
- {
- "id": 8612,
- "name": "№8612 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "63.631200",
- "latitude": "53.215743",
- "address": "Кустанай, Кустанай",
- "city_id": 416,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-13-11-06-01-xln.jpg",
- "trainings": 0
- },
- {
- "id": 8613,
- "name": "№8613 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "63.624798",
- "latitude": "53.219837",
- "address": "улица Тарана",
- "city_id": 416,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-13-11-06-37-r85.jpg",
- "trainings": 0
- },
- {
- "id": 8614,
- "name": "№8614 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "63.630029",
- "latitude": "53.225702",
- "address": "улица Победы",
- "city_id": 416,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-13-12-06-31-nxz.jpg",
- "trainings": 1
- },
- {
- "id": 8615,
- "name": "№8615 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.84204079999995",
- "latitude": "51.6398648",
- "address": "Курская обл., Октябрьский р-н, д. Митрофаново, строение 116",
- "city_id": 7923,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-13-22-06-02-ds3.jpeg",
- "trainings": 0
- },
- {
- "id": 8616,
- "name": "№8616 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.513621926551195",
- "latitude": "55.79139319984339",
- "address": " ул. Куусинена, 8Б, стр. 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-14-07-06-51-5hv.jpg",
- "trainings": 2
- },
- {
- "id": 8619,
- "name": "№8619 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.630816",
- "latitude": "55.740005",
- "address": "Старый Толмачевский переулок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-14-12-06-18-3ct.jpg",
- "trainings": 3
- },
- {
- "id": 8620,
- "name": "№8620 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "73.38870739999993",
- "latitude": "54.9699791",
- "address": "Омск, Училищная, 2",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-14-13-06-14-ihu.jpg",
- "trainings": 1
- },
- {
- "id": 8621,
- "name": "№8621 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.27329670142001",
- "latitude": "59.87968785323784",
- "address": "улица Зайцева, 34",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-15-09-06-26-6kl.jpg",
- "trainings": 0
- },
- {
- "id": 8622,
- "name": "№8622 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.277353793843076",
- "latitude": "59.87772294274469",
- "address": "Автовская улица, 46",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-15-09-06-13-xj0.jpg",
- "trainings": 0
- },
- {
- "id": 8623,
- "name": "№8623 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.904685",
- "latitude": "55.691972",
- "address": "Комсомольский проспект 11а",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-15-09-06-06-izc.jpg",
- "trainings": 1
- },
- {
- "id": 8625,
- "name": "№8625 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "30.492358753820213",
- "latitude": "59.91562551310646",
- "address": "улица Подвойского, 31/1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-15-20-06-46-cv0.jpg",
- "trainings": 3
- },
- {
- "id": 8626,
- "name": "№8626 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.746722",
- "latitude": "55.730463",
- "address": "Рязанский проспект",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-16-09-06-23-hdu.jpg",
- "trainings": 0
- },
- {
- "id": 8627,
- "name": "№8627 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.9149805007944",
- "latitude": "54.93410141103016",
- "address": "Сквер \"Союз Кировчан\"",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-16-12-06-20-cvr.jpg",
- "trainings": 3
- },
- {
- "id": 8628,
- "name": "№8628 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.66974000000005",
- "latitude": "66.1131539",
- "address": "Новоуренгойский городской парк",
- "city_id": 570,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-17-10-06-57-pyt.jpg",
- "trainings": 4
- },
- {
- "id": 8629,
- "name": "№8629 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.924137",
- "latitude": "55.684713",
- "address": "2 Вольская 16к2",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-17-13-06-53-zts.jpg",
- "trainings": 1
- },
- {
- "id": 8630,
- "name": "№8630 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.660502067764355",
- "latitude": "55.65148101886789",
- "address": "Каширское шоссе 31с16",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-18-08-06-55-bwv.jpg",
- "trainings": 2
- },
- {
- "id": 8631,
- "name": "№8631 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.51133352896045",
- "latitude": "55.74495043703078",
- "address": "Багратионовский проезд д.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 14,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-18-14-06-20-ohn.jpg",
- "trainings": 1
- },
- {
- "id": 8632,
- "name": "№8632 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.69994323968149",
- "latitude": "55.60916674498049",
- "address": "шипиловский пр-д",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-18-20-06-51-xxk.jpg",
- "trainings": 0
- },
- {
- "id": 8633,
- "name": "№8633 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.65868889447029",
- "latitude": "55.6262056323284",
- "address": "Тимуровская ул",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-18-20-06-39-vmx.jpg",
- "trainings": 1
- },
- {
- "id": 8634,
- "name": "№8634 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.667901",
- "latitude": "55.829961",
- "address": "Малахитовая 21 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-20-10-06-11-b-_.jpg",
- "trainings": 1
- },
- {
- "id": 8635,
- "name": "№8635 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.32097299786983",
- "latitude": "59.96991746319676",
- "address": "Ботанический сад",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-20-15-06-51-be9.jpg",
- "trainings": 1
- },
- {
- "id": 8636,
- "name": "№8636 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.61285361031196",
- "latitude": "55.77595606844918",
- "address": "Делегатская ул. 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-20-15-06-12-hes.jpg",
- "trainings": 0
- },
- {
- "id": 8637,
- "name": "№8637 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.882811492980636",
- "latitude": "55.78915003830987",
- "address": "Ситникова, 6",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-20-18-06-25-s9l.jpeg",
- "trainings": 2
- },
- {
- "id": 8638,
- "name": "№8638 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.632765",
- "latitude": "55.731629",
- "address": "Монетчиковский 5-й переулок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-20-20-06-07-ybs.jpg",
- "trainings": 2
- },
- {
- "id": 8639,
- "name": "№8639 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.324083609786953",
- "latitude": "59.99004673908266",
- "address": "Земледельческая 5/2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-20-22-06-48-sup.jpg",
- "trainings": 1
- },
- {
- "id": 8640,
- "name": "№8640 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.746500",
- "latitude": "48.783000",
- "address": "Волжский",
- "city_id": 7980,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-21-09-06-46-lmz.jpg",
- "trainings": 1
- },
- {
- "id": 8642,
- "name": "№8642 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-8.896672",
- "latitude": "38.535288",
- "address": "Praceta de Santa Rita Pintor",
- "city_id": 7774,
- "country_id": 41,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-21-10-06-00-fna.jpg",
- "trainings": 0
- },
- {
- "id": 8643,
- "name": "№8643 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "158.6688980920179",
- "latitude": "53.06127142680936",
- "address": "водопад на \"Кирпичах\"",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-22-12-06-44-cj1.jpg",
- "trainings": 1
- },
- {
- "id": 8644,
- "name": "№8644 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.61541618644742",
- "latitude": "54.157126405441",
- "address": "Рязанская ул., 40г, Тула",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-22-14-06-10-jvb.png",
- "trainings": 0
- },
- {
- "id": 8645,
- "name": "№8645 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.59330652645872",
- "latitude": "56.906452457309065",
- "address": "ул. Восстания, д. 95",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-22-14-06-03-rgq.jpg",
- "trainings": 0
- },
- {
- "id": 8646,
- "name": "№8646 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.458068078851284",
- "latitude": "55.14324178646364",
- "address": "Дружбы, 21",
- "city_id": 149,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-22-17-06-09-vrq.jpg",
- "trainings": 1
- },
- {
- "id": 8647,
- "name": "№8647 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.460876837959404",
- "latitude": "55.1426904539292",
- "address": "Чехова, 61",
- "city_id": 149,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-22-17-06-13-vqh.jpg",
- "trainings": 0
- },
- {
- "id": 8648,
- "name": "№8648 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.01118636164131",
- "latitude": "45.093220319278736",
- "address": "Петра Метальникова, 11",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-23-09-06-17-yti.jpg",
- "trainings": 2
- },
- {
- "id": 8649,
- "name": "№8649 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.50885887144216",
- "latitude": "55.83775325056713",
- "address": "михалковская 65",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-23-16-06-09-k_-.jpg",
- "trainings": 0
- },
- {
- "id": 8650,
- "name": "№8650 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.242347900000027",
- "latitude": "59.9669671",
- "address": "южная дорога 4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-23-16-06-49-wod.jpg",
- "trainings": 14
- },
- {
- "id": 8651,
- "name": "№8651 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "86.06647102600618",
- "latitude": "55.35333850551979",
- "address": "красноармейская 82",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-24-05-06-48-odd.jpg",
- "trainings": 0
- },
- {
- "id": 8652,
- "name": "№8652 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.65053265849997",
- "latitude": "56.23196800295068",
- "address": "Спортивная, парк",
- "city_id": 20,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-24-12-06-10-vni.jpg",
- "trainings": 0
- },
- {
- "id": 8653,
- "name": "№8653 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.22698411495821",
- "latitude": "50.01788668328663",
- "address": "Проспект Науки 22",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-24-13-06-19-yqa.jpg",
- "trainings": 0
- },
- {
- "id": 8654,
- "name": "№8654 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.56441504011559",
- "latitude": "59.603117651318506",
- "address": " ул. Калинина, 28",
- "city_id": 7417,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-25-09-06-33-ny9.jpg",
- "trainings": 1
- },
- {
- "id": 8655,
- "name": "№8655 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "7.643470",
- "latitude": "51.028835",
- "address": "Gummersbach Becken ",
- "city_id": 695,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-25-10-06-01-xb6.jpg",
- "trainings": 0
- },
- {
- "id": 8656,
- "name": "№8656 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.458045745922846",
- "latitude": "55.14742458933294",
- "address": "ул. Московская, 81",
- "city_id": 149,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-25-20-06-06-cpz.jpg",
- "trainings": 0
- },
- {
- "id": 8657,
- "name": "№8657 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.50847533857825",
- "latitude": "52.03994378939686",
- "address": "Балябина, 13",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-26-02-06-54-gp5.jpg",
- "trainings": 0
- },
- {
- "id": 8658,
- "name": "№8658 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.54274934215482",
- "latitude": "52.02636335500602",
- "address": "Украинский Бульвар, 17",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-26-02-06-09-jxk.png",
- "trainings": 0
- },
- {
- "id": 8660,
- "name": "№8660 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.65492961999996",
- "latitude": "55.86430814",
- "address": "ул.Искры, д.27, ст.2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-27-13-06-24-cld.jpg",
- "trainings": 1
- },
- {
- "id": 8661,
- "name": "№8661 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.62097019668067",
- "latitude": "56.88608428243718",
- "address": "ул. Краснофлотцев, д. 8А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-27-14-06-57-h3j.jpg",
- "trainings": 0
- },
- {
- "id": 8662,
- "name": "№8662 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.468335000000025",
- "latitude": "55.904436",
- "address": "Химки, парк Два Берега ",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-27-14-06-04-bys.jpg",
- "trainings": 0
- },
- {
- "id": 8663,
- "name": "№8663 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.26061076676706",
- "latitude": "55.94359444179369",
- "address": "МО, Солнечногорский р-он, д. Подолино, ЖК Велтон Парк",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-27-17-06-24-z5t.jpg",
- "trainings": 2
- },
- {
- "id": 8664,
- "name": "№8664 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.693400",
- "latitude": "55.877719",
- "address": "улица Изумрудная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-27-17-06-33-wi-.jpg",
- "trainings": 2
- },
- {
- "id": 8665,
- "name": "№8665 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.88591764495186",
- "latitude": "55.7008540687333",
- "address": "Ул. Шевлякова, д. 6",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-27-22-06-06-ksq.jpg",
- "trainings": 1
- },
- {
- "id": 8666,
- "name": "№8666 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.49734108166649",
- "latitude": "55.9542226791656",
- "address": "ул. Сельхозшкола",
- "city_id": 35,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-27-23-06-39-cml.jpg",
- "trainings": 1
- },
- {
- "id": 8667,
- "name": "№8667 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "65.546112",
- "latitude": "57.142680",
- "address": "улица Малыгина",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-28-06-06-11-mmm.jpg",
- "trainings": 0
- },
- {
- "id": 8668,
- "name": "№8668 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.64794931999995",
- "latitude": "55.86519398",
- "address": "Чукотский проезд, 31а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-28-17-06-32-cj3.jpg",
- "trainings": 1
- },
- {
- "id": 8669,
- "name": "№8669 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "39.19608340000002",
- "latitude": "51.7150356",
- "address": "ЖМ Олимпийский, 3",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-28-11-06-21-lhp.jpg",
- "trainings": 3
- },
- {
- "id": 8670,
- "name": "№8670 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.468132",
- "latitude": "55.904296",
- "address": "Ленинский проспект",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-28-12-06-21-gcf.jpg",
- "trainings": 0
- },
- {
- "id": 8671,
- "name": "№8671 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.467607",
- "latitude": "55.903920",
- "address": "Ленинский проспект",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-28-12-06-02-d7b.jpg",
- "trainings": 0
- },
- {
- "id": 8672,
- "name": "№8672 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.621596364418",
- "latitude": "56.887533509973764",
- "address": "ул. Краснофлотцев, д. 3",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-28-14-06-39-j0b.jpg",
- "trainings": 0
- },
- {
- "id": 8673,
- "name": "№8673 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.45834654603277",
- "latitude": "50.52291820796629",
- "address": "рокосовского 5",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-29-09-06-38-mpr.jpg",
- "trainings": 2
- },
- {
- "id": 8674,
- "name": "№8674 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.300737",
- "latitude": "60.000422",
- "address": "Bogatyrskiy prospekt",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-29-13-06-16-f27.jpg",
- "trainings": 1
- },
- {
- "id": 8675,
- "name": "№8675 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.88164646305131",
- "latitude": "55.65556750524241",
- "address": "Ул. III Интернационала, д. 27",
- "city_id": 8040,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-29-16-06-27-tc7.jpg",
- "trainings": 1
- },
- {
- "id": 8676,
- "name": "№8676 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "83.11294399999997",
- "latitude": "54.939092",
- "address": "Одоевского 1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-29-17-06-40-xz1.jpg",
- "trainings": 1
- },
- {
- "id": 8683,
- "name": "№8683 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.21588799999995",
- "latitude": "59.764358",
- "address": "улица Попова",
- "city_id": 7436,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-30-05-06-02-iku.jpg",
- "trainings": 0
- },
- {
- "id": 8684,
- "name": "№8684 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.745422",
- "latitude": "44.733117",
- "address": "Днепровский переулок",
- "city_id": 88,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-30-16-06-28-pyc.jpg",
- "trainings": 0
- },
- {
- "id": 8685,
- "name": "№8685 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.577386",
- "latitude": "56.837794",
- "address": "Екатеринбург, Виз-Бульвар (около Дворца Молодёжи)",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-30-22-06-05-my1.jpg",
- "trainings": 5
- },
- {
- "id": 8686,
- "name": "№8686 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.59384713615418",
- "latitude": "56.82122217129122",
- "address": "Екатеринбург, парк Зелёная Роща",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-26-21-06-10-rql.jpeg",
- "trainings": 6
- },
- {
- "id": 8687,
- "name": "№8687 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.60800040000004",
- "latitude": "56.80264649999999",
- "address": "Екатеринбург, Авиационная 18",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-30-23-06-36-wmv.jpg",
- "trainings": 0
- },
- {
- "id": 8688,
- "name": "№8688 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.6065647121643",
- "latitude": "56.8040263986857",
- "address": "Екатеринбург, Авиационная 26",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-30-23-06-08-m9x.jpg",
- "trainings": 1
- },
- {
- "id": 8689,
- "name": "№8689 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.62712305004584",
- "latitude": "56.83561497004853",
- "address": "Екатеринбург, парк Энгельса",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-30-23-06-19-prw.jpg",
- "trainings": 2
- },
- {
- "id": 8690,
- "name": "№8690 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.57818303550721",
- "latitude": "56.797188736696036",
- "address": "Екатеринбург, парк им. Архипова",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-30-23-06-34-o2j.jpg",
- "trainings": 0
- },
- {
- "id": 8691,
- "name": "№8691 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.574299196853644",
- "latitude": "56.79817575000407",
- "address": "Екатеринбург, парк им. Архипова",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/06/2018-06-30-23-06-51-y2p.jpg",
- "trainings": 0
- },
- {
- "id": 8692,
- "name": "№8692 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.455652332592877",
- "latitude": "48.26439904808623",
- "address": "Teodor-Hois-straße",
- "city_id": 8743,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-01-15-07-38-4xs.jpg",
- "trainings": 1
- },
- {
- "id": 8694,
- "name": "№8694 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.55494414132386",
- "latitude": "56.805731350300306",
- "address": "Екатеринбург, Бардина 15",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-01-21-07-25-4eb.jpg",
- "trainings": 0
- },
- {
- "id": 8695,
- "name": "№8695 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "11.434552757302072",
- "latitude": "48.24243134627554",
- "address": "Gröbenrieder Strasse",
- "city_id": 8743,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-01-21-07-39-sre.jpg",
- "trainings": 1
- },
- {
- "id": 8698,
- "name": "№8698 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "1.094766987366711",
- "latitude": "41.06803647043941",
- "address": "Vilafortuny, Таррагона, Испания",
- "city_id": 8745,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-02-16-07-16-l57.jpg",
- "trainings": 0
- },
- {
- "id": 8699,
- "name": "№8699 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.91511659655737",
- "latitude": "55.04301529845475",
- "address": "Гоголя 3а",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-03-10-07-26-n29.jpg",
- "trainings": 0
- },
- {
- "id": 8700,
- "name": "№8700 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.53670011918348",
- "latitude": "55.542067340116525",
- "address": "Южнобутовская 36",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-04-00-07-24-mhg.jpg",
- "trainings": 1
- },
- {
- "id": 8701,
- "name": "№8701 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.11325812591542",
- "latitude": "54.93825730342432",
- "address": "Одоевского 1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-04-17-07-51-bzm.jpg",
- "trainings": 0
- },
- {
- "id": 8702,
- "name": "№8702 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.94030156526901",
- "latitude": "56.51565544712944",
- "address": "Володарского, 38",
- "city_id": 8612,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-04-22-07-47-t_t.jpg",
- "trainings": 0
- },
- {
- "id": 8705,
- "name": "№8705 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.510930778708143",
- "latitude": "50.4701581212426",
- "address": "вул.Межигірська, 26",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-05-20-07-02-wkh.jpg",
- "trainings": 2
- },
- {
- "id": 8708,
- "name": "№8708 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.223470366957372",
- "latitude": "60.02566961641578",
- "address": "пр. Авиаконструкторов 34",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-06-17-07-46-ixv.jpg",
- "trainings": 1
- },
- {
- "id": 8709,
- "name": "№8709 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.03459847522208",
- "latitude": "54.980897668030934",
- "address": "Ключ-Камышенское плато 1/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-08-12-07-16-cyw.jpg",
- "trainings": 1
- },
- {
- "id": 8710,
- "name": "№8710 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.00504764252389",
- "latitude": "56.98715460331744",
- "address": "ул. огородная,1",
- "city_id": 44,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-08-15-07-59-nbn.jpg",
- "trainings": 0
- },
- {
- "id": 8711,
- "name": "№8711 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "45.495007999999984",
- "latitude": "58.3826",
- "address": "улица Ленина",
- "city_id": 8286,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-08-15-07-41-i08.jpg",
- "trainings": 0
- },
- {
- "id": 8712,
- "name": "№8712 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.633700110559062",
- "latitude": "50.2147196983808",
- "address": "An den Satteläckern, 61352 Bad Homburg vor der Höhe",
- "city_id": 7713,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-08-17-07-22-n-q.jpg",
- "trainings": 0
- },
- {
- "id": 8713,
- "name": "№8713 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.978345966669394",
- "latitude": "60.106008748520864",
- "address": "Улица комбата широкова",
- "city_id": 121,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-08-19-07-30-4pi.jpg",
- "trainings": 0
- },
- {
- "id": 8714,
- "name": "№8714 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.58708126320607",
- "latitude": "55.7761776876582",
- "address": "Лесная улица, 4с4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-09-14-07-24-sps.jpg",
- "trainings": 1
- },
- {
- "id": 8715,
- "name": "№8715 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.622867140143512",
- "latitude": "50.47882994968044",
- "address": "Лісовий проспект, 8",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-09-17-07-42-nkb.jpg",
- "trainings": 0
- },
- {
- "id": 8716,
- "name": "№8716 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.62042969999993",
- "latitude": "50.4765388",
- "address": "Братиславская, 40",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-09-18-07-57-7fa.jpg",
- "trainings": 0
- },
- {
- "id": 8717,
- "name": "№8717 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.75049127649913",
- "latitude": "55.67998434265798",
- "address": "Кубанская 22",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-09-20-07-56-xso.jpg",
- "trainings": 1
- },
- {
- "id": 8718,
- "name": "№8718 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.888645",
- "latitude": "55.792462",
- "address": "Демин луг 6/5",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-10-16-07-24-ajp.jpg",
- "trainings": 1
- },
- {
- "id": 8719,
- "name": "№8719 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.547538389989995",
- "latitude": "56.979679066558475",
- "address": "ул. Огнеупорщиков, д. 8",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-10-21-07-28-3z2.jpg",
- "trainings": 0
- },
- {
- "id": 8720,
- "name": "№8720 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "10.686811000714215",
- "latitude": "59.921887864602844",
- "address": "Thunes vei / 161 (2 ring)",
- "city_id": 809,
- "country_id": 32,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-10-23-07-43-f6q.jpg",
- "trainings": 1
- },
- {
- "id": 8721,
- "name": "№8721 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "15.275854129940512",
- "latitude": "37.82236255315422",
- "address": "Италия, Наксос, Via Calcide Eubea",
- "city_id": 8744,
- "country_id": 31,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-11-10-07-29-lis.jpg",
- "trainings": 0
- },
- {
- "id": 8722,
- "name": "№8722 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.439945",
- "latitude": "55.804192",
- "address": "Строгинское шоссе",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-11-16-07-08-x8k.jpg",
- "trainings": 3
- },
- {
- "id": 8723,
- "name": "№8723 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.656225686313064",
- "latitude": "52.641789929508946",
- "address": "улица Ушинского, 5А , Стадион \"Сокол\"",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-11-17-07-01-frc.jpg",
- "trainings": 1
- },
- {
- "id": 8724,
- "name": "№8724 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.91852414127811",
- "latitude": "43.61854964498473",
- "address": "С. Воронцовка",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-12-00-07-02-t3f.jpg",
- "trainings": 0
- },
- {
- "id": 8725,
- "name": "№8725 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.452390709099404",
- "latitude": "52.746580088043615",
- "address": "ул. советская 185",
- "city_id": 631,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-12-10-07-21-laf.jpg",
- "trainings": 1
- },
- {
- "id": 8726,
- "name": "№8726 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.94045739440082",
- "latitude": "55.96839812598351",
- "address": "улица Школьная, дом 14",
- "city_id": 45,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-12-14-07-30-wbg.jpg",
- "trainings": 1
- },
- {
- "id": 8727,
- "name": "№8727 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.96895616308882",
- "latitude": "48.45888944664557",
- "address": "сквер им. Клюева",
- "city_id": 491,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-13-19-07-09-ivf.jpeg",
- "trainings": 1
- },
- {
- "id": 8728,
- "name": "№8728 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.93439209999997",
- "latitude": "55.969218",
- "address": "улица Трудовая, дом 8",
- "city_id": 45,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-14-18-07-11-kcx.jpg",
- "trainings": 0
- },
- {
- "id": 8731,
- "name": "№8731 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.13580539798613",
- "latitude": "44.50241439895981",
- "address": "Краснодарский край, село Дивноморское.",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-15-10-07-20-u6t.jpg",
- "trainings": 2
- },
- {
- "id": 8732,
- "name": "№8732 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "49.200749900000005",
- "latitude": "55.737392",
- "address": "Дубравная 40",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-15-10-07-18-8y7.jpg",
- "trainings": 1
- },
- {
- "id": 8733,
- "name": "№8733 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.93830109999999",
- "latitude": "55.9711049",
- "address": "улица Школьная, дом 1",
- "city_id": 45,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-15-11-07-01--kj.jpg",
- "trainings": 2
- },
- {
- "id": 8734,
- "name": "№8734 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.16657646718136",
- "latitude": "56.73714242920882",
- "address": "пр Боголюбова 15",
- "city_id": 37,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-15-14-07-59-a3a.jpg",
- "trainings": 0
- },
- {
- "id": 8735,
- "name": "№8735 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.945787042719303",
- "latitude": "60.131733213817476",
- "address": "Таможенная дорога",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-15-20-07-24-iuu.jpg",
- "trainings": 1
- },
- {
- "id": 8736,
- "name": "№8736 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "24.979119743778256",
- "latitude": "60.16808966633017",
- "address": "Laivastopuisto Marinparken",
- "city_id": 697,
- "country_id": 23,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-15-23-07-07-3pf.jpg",
- "trainings": 0
- },
- {
- "id": 8737,
- "name": "№8737 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "24.972223911111882",
- "latitude": "60.16856522507484",
- "address": "Laivastopuisto Marinparken",
- "city_id": 697,
- "country_id": 23,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-15-23-07-58-7kp.jpg",
- "trainings": 0
- },
- {
- "id": 8740,
- "name": "№8740 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.559625784760556",
- "latitude": "55.8879638238575",
- "address": "Керамический пр-д, д.69 к.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-16-09-07-36-g82.jpg",
- "trainings": 0
- },
- {
- "id": 8741,
- "name": "№8741 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "74.63406152835637",
- "latitude": "42.81246148523933",
- "address": "12 микрорайон, 44",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-16-12-07-14-rfl.jpg",
- "trainings": 0
- },
- {
- "id": 8742,
- "name": "№8742 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.65787593448931",
- "latitude": "56.913143350961334",
- "address": "ул. Фрезеровщиков, д. 200",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-17-00-07-22-g9c.jpg",
- "trainings": 0
- },
- {
- "id": 8743,
- "name": "№8743 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.332801622276747",
- "latitude": "59.92388495078258",
- "address": "бородинская",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-17-11-07-57-1pn.jpg",
- "trainings": 7
- },
- {
- "id": 8744,
- "name": "№8744 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "48.783920999999964",
- "latitude": "52.016672",
- "address": "Школа №13",
- "city_id": 8139,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-17-11-07-55-xtq.jpg",
- "trainings": 0
- },
- {
- "id": 8745,
- "name": "№8745 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.56987531376956",
- "latitude": "59.606344562746564",
- "address": " Победы, 149 а",
- "city_id": 7417,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-17-12-07-23-b6l.jpg",
- "trainings": 0
- },
- {
- "id": 8746,
- "name": "№8746 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.57264644365546",
- "latitude": "59.601564536785915",
- "address": "Заславского, 23",
- "city_id": 7417,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-17-12-07-41-ziv.jpg",
- "trainings": 1
- },
- {
- "id": 8747,
- "name": "№8747 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "31.733098100000007",
- "latitude": "52.4284362",
- "address": "Парк",
- "city_id": 8662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-18-21-07-12-txe.jpg",
- "trainings": 0
- },
- {
- "id": 8749,
- "name": "№8749 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "35.8513643",
- "latitude": "56.8479573",
- "address": "Парк текстильщик",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-19-02-07-12-3pl.jpg",
- "trainings": 1
- },
- {
- "id": 8751,
- "name": "№8751 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.566058",
- "latitude": "55.711705",
- "address": "Лужнецкая набережная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-19-08-07-00-ymg.jpg",
- "trainings": 3
- },
- {
- "id": 8752,
- "name": "№8752 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.483412715794202",
- "latitude": "53.90421559648046",
- "address": "Бельского 19",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-19-08-07-25-dla.jpg",
- "trainings": 1
- },
- {
- "id": 8753,
- "name": "№8753 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "117.01380177302667",
- "latitude": "52.52170775149184",
- "address": "Пгт. Чернышевск ул. Центральная стадион \"Нива\"",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-19-13-07-06-fw7.jpeg",
- "trainings": 1
- },
- {
- "id": 8754,
- "name": "№8754 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "25.583876527921348",
- "latitude": "49.568135766704664",
- "address": "циганська",
- "city_id": 541,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-19-16-07-40-2oe.jpg",
- "trainings": 3
- },
- {
- "id": 8755,
- "name": "№8755 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "83.0872889484101",
- "latitude": "54.86044736072939",
- "address": "Лыкова 4",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-19-19-07-53-trw.jpg",
- "trainings": 0
- },
- {
- "id": 8757,
- "name": "№8757 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.09074295162759",
- "latitude": "51.705530794406684",
- "address": "санаторная ",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-20-12-07-49-fst.jpg",
- "trainings": 0
- },
- {
- "id": 8758,
- "name": "№8758 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.859375",
- "latitude": "57.271385",
- "address": "M11",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-20-18-07-33-q4d.jpg",
- "trainings": 0
- },
- {
- "id": 8759,
- "name": "№8759 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "39.224058150787414",
- "latitude": "51.69375490460743",
- "address": "ул. Ленина, 10, Воронеж",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-21-11-07-04-psu.jpg",
- "trainings": 0
- },
- {
- "id": 8761,
- "name": "№8761 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "93.51481043186448",
- "latitude": "56.24772594244868",
- "address": "Ул. Красноярская",
- "city_id": 7418,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-21-21-07-52-izv.jpg",
- "trainings": 1
- },
- {
- "id": 8762,
- "name": "№8762 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.215776",
- "latitude": "49.954580",
- "address": "Vlasenka Street",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-22-13-07-06-gsd.jpg",
- "trainings": 0
- },
- {
- "id": 8764,
- "name": "№8764 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.992722",
- "latitude": "55.874203",
- "address": "улица Новый Городок",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-23-00-07-32-2lu.jpg",
- "trainings": 1
- },
- {
- "id": 8765,
- "name": "№8765 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "5.386948585510254",
- "latitude": "60.37749349178403",
- "address": "Вершина фьорда, фуникулёр Ульрикен (Ulriken)",
- "city_id": 7674,
- "country_id": 32,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-23-16-07-59-crf.jpg",
- "trainings": 1
- },
- {
- "id": 8766,
- "name": "№8766 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.641225383467145",
- "latitude": "55.8325791463655",
- "address": "ул.Сергея Эйзенштейна 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-23-17-07-25-jtq.png",
- "trainings": 0
- },
- {
- "id": 8767,
- "name": "№8767 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "31.10628525822267",
- "latitude": "46.625912369857",
- "address": "Строителей 21",
- "city_id": 8735,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-25-13-07-09-tjh.jpg",
- "trainings": 0
- },
- {
- "id": 8768,
- "name": "№8768 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "55.93438240602461",
- "latitude": "52.961777375786035",
- "address": "Октябрьская ул., 8, ",
- "city_id": 7916,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-25-13-07-31-ixo.jpg",
- "trainings": 0
- },
- {
- "id": 8769,
- "name": "№8769 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "71.44286415059457",
- "latitude": "51.111962654785906",
- "address": "Парк \"Президентский\", площадка находится со стороны проспекта Керей Жанибек ханов.",
- "city_id": 406,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-25-16-07-58-iob.jpg",
- "trainings": 1
- },
- {
- "id": 8770,
- "name": "№8770 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.669217",
- "latitude": "55.803658",
- "address": "4-й Лучевой просек",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-25-18-07-01-wk2.jpg",
- "trainings": 1
- },
- {
- "id": 8771,
- "name": "№8771 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.90875047165412",
- "latitude": "55.059130683423625",
- "address": "Дуси Ковальчук 179/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-25-21-07-25-pr5.jpg",
- "trainings": 0
- },
- {
- "id": 8772,
- "name": "№8772 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.38375970501659",
- "latitude": "52.07588882355249",
- "address": "мкр. 3, д. 13",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-26-03-07-05-azc.jpg",
- "trainings": 1
- },
- {
- "id": 8773,
- "name": "№8773 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "26.705156748808122",
- "latitude": "58.39117476575627",
- "address": "Спортивный парк Тяхтвере (Tähtvere Spordipark)",
- "city_id": 577,
- "country_id": 29,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-26-13-07-53-ssi.jpg",
- "trainings": 1
- },
- {
- "id": 8774,
- "name": "№8774 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.7040087049038",
- "latitude": "58.39476443795288",
- "address": "Эмайыги свободный пляж (Emajõe vabaujula)",
- "city_id": 577,
- "country_id": 29,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-26-13-07-28-enu.jpg",
- "trainings": 0
- },
- {
- "id": 8775,
- "name": "№8775 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.687851420046172",
- "latitude": "58.3611994124516",
- "address": "Площадка в парке через дорогу от здания полиции на Riia mnt.",
- "city_id": 577,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-26-13-07-26-h41.jpg",
- "trainings": 0
- },
- {
- "id": 8776,
- "name": "№8776 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "94.57141757011414",
- "latitude": "56.11253401791715",
- "address": "Парковая 30",
- "city_id": 42,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-27-04-07-28-mn2.jpg",
- "trainings": 1
- },
- {
- "id": 8777,
- "name": "№8777 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "101.73207436162897",
- "latitude": "56.312869901111476",
- "address": "ул.Олимпийская",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-28-15-07-09-jts.jpg",
- "trainings": 1
- },
- {
- "id": 8778,
- "name": "№8778 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.275350",
- "latitude": "55.724933",
- "address": "Барвиха поселок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-27-19-07-30-zrl.jpg",
- "trainings": 0
- },
- {
- "id": 8779,
- "name": "№8779 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.68424252549721",
- "latitude": "46.10436763920521",
- "address": "г. Армянск. 2-мкр им. генерала Корявко возле стадиона \"Юность\"",
- "city_id": 8309,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-27-22-07-10-9k4.jpg",
- "trainings": 1
- },
- {
- "id": 8780,
- "name": "№8780 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.784034744775454",
- "latitude": "58.36139949837352",
- "address": "Ихасте (Ihaste)",
- "city_id": 577,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-28-13-07-29-sc6.jpg",
- "trainings": 1
- },
- {
- "id": 8781,
- "name": "№8781 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "101.72863484958634",
- "latitude": "56.31143996129344",
- "address": "Воинов-Интернационалистов",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-28-15-07-03-n-x.jpg",
- "trainings": 0
- },
- {
- "id": 8782,
- "name": "№8782 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "101.75426099560809",
- "latitude": "56.31356546494759",
- "address": "Юбилейная",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-28-15-07-23-bji.jpg",
- "trainings": 0
- },
- {
- "id": 8783,
- "name": "№8783 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "83.00908271563344",
- "latitude": "54.98858272762194",
- "address": "Кирова 356",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-29-10-07-04-fxd.jpg",
- "trainings": 2
- },
- {
- "id": 8784,
- "name": "№8784 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.16058222024253",
- "latitude": "44.90724366435573",
- "address": "Лозовое-1",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-29-12-07-10-frr.jpg",
- "trainings": 0
- },
- {
- "id": 8785,
- "name": "№8785 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "26.72387711049521",
- "latitude": "58.32325067098286",
- "address": "Юленурме стадион (Ülenurme staadion)",
- "city_id": 577,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-29-14-07-30-g4-.jpg",
- "trainings": 1
- },
- {
- "id": 8786,
- "name": "№8786 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.833431272824328",
- "latitude": "58.31551957765339",
- "address": "Курепалу (Kurepalu)",
- "city_id": 577,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-29-14-07-04-xwu.jpg",
- "trainings": 1
- },
- {
- "id": 8787,
- "name": "№8787 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "104.364306",
- "latitude": "52.250496",
- "address": "улица Ржанова 31",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-29-14-07-52-6w_.jpg",
- "trainings": 0
- },
- {
- "id": 8789,
- "name": "№8789 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "31.10351271310742",
- "latitude": "46.62107593402148",
- "address": "Ленина 18",
- "city_id": 8735,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-30-10-07-22-iqh.jpg",
- "trainings": 0
- },
- {
- "id": 8790,
- "name": "№8790 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.40098345410479",
- "latitude": "55.75816910855979",
- "address": "Осенняя улица д.4, корп.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-30-13-07-15-4bv.jpeg",
- "trainings": 0
- },
- {
- "id": 8791,
- "name": "№8791 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-180.000000",
- "latitude": "-180.000000",
- "address": "Москва Митинская 28 кор2 ст1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-30-13-07-19-k3c.jpg",
- "trainings": 1
- },
- {
- "id": 8792,
- "name": "№8792 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.660721560893535",
- "latitude": "55.749052536033545",
- "address": "Николоямский переулок, 3Ак4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-30-13-07-52-2wl.jpg",
- "trainings": 2
- },
- {
- "id": 8793,
- "name": "№8793 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "101.74228271526817",
- "latitude": "56.317144924874114",
- "address": "Гиндина",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-30-14-07-04-5st.jpg",
- "trainings": 0
- },
- {
- "id": 8794,
- "name": "№8794 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "101.74556875015071",
- "latitude": "56.31772245342024",
- "address": "Зверева",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-30-14-07-18-bx1.jpg",
- "trainings": 0
- },
- {
- "id": 8795,
- "name": "№8795 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "101.75037187234864",
- "latitude": "56.31823699365246",
- "address": "Зверева",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-03-10-01-54-6py.jpg",
- "trainings": 0
- },
- {
- "id": 8796,
- "name": "№8796 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.671132",
- "latitude": "55.574126",
- "address": "Михневский проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-31-08-07-50-dz6.jpg",
- "trainings": 1
- },
- {
- "id": 8797,
- "name": "№8797 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.73973368999998",
- "latitude": "46.54338269",
- "address": "Лиманная, 38",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-11-07-09-38-xkz.jpg",
- "trainings": 0
- },
- {
- "id": 8798,
- "name": "№8798 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.18767483531326",
- "latitude": "56.75060258105428",
- "address": "сквер Мещерякова",
- "city_id": 37,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-31-14-07-13-cd4.jpg",
- "trainings": 0
- },
- {
- "id": 8799,
- "name": "№8799 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.40039038789223",
- "latitude": "59.627616156117114",
- "address": "ижорская, 28",
- "city_id": 62,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/07/2018-07-31-15-07-54-lfv.jpg",
- "trainings": 0
- },
- {
- "id": 8800,
- "name": "№8800 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.388458",
- "latitude": "61.775242",
- "address": "улица Правды",
- "city_id": 102,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-09-08-42-drg.jpg",
- "trainings": 0
- },
- {
- "id": 8802,
- "name": "№8802 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.583052111729785",
- "latitude": "56.97370619168681",
- "address": "ул. Свердлова, д.6",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-11-08-48-q6g.jpg",
- "trainings": 0
- },
- {
- "id": 8803,
- "name": "№8803 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.58310311463197",
- "latitude": "56.97192593751866",
- "address": "ул. Орджоникидзе, д. 5А",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-11-08-58-gi_.jpg",
- "trainings": 0
- },
- {
- "id": 8804,
- "name": "№8804 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.58072091187432",
- "latitude": "56.968795248262836",
- "address": "ул. Спицына, д. 9",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-11-08-51-usd.jpg",
- "trainings": 0
- },
- {
- "id": 8805,
- "name": "№8805 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.58139889278732",
- "latitude": "56.967469450285435",
- "address": "ул. Красноармейская, д. 1",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-11-08-47-uf7.jpg",
- "trainings": 0
- },
- {
- "id": 8806,
- "name": "№8806 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.584386027532446",
- "latitude": "56.96597779924704",
- "address": "ул. Александра Козицына, д. 12",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-11-08-12-n0n.jpg",
- "trainings": 0
- },
- {
- "id": 8807,
- "name": "№8807 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.57583217135311",
- "latitude": "56.97549039244871",
- "address": "ул. Щорса, д. 1А",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-03-14-08-36-utr.jpg",
- "trainings": 0
- },
- {
- "id": 8808,
- "name": "№8808 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.569648221651164",
- "latitude": "56.970220775849924",
- "address": "ул. Феофанова, д. 2Г",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-11-08-25-_4c.jpg",
- "trainings": 0
- },
- {
- "id": 8809,
- "name": "№8809 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.567040425056575",
- "latitude": "56.97021460515452",
- "address": "ул. Мичурина, д. 10Б",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-11-08-57-1_v.jpg",
- "trainings": 0
- },
- {
- "id": 8810,
- "name": "№8810 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.563987385090286",
- "latitude": "56.97227001870257",
- "address": "ул. Мичурина, д. 6",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-12-08-36-kbx.jpg",
- "trainings": 0
- },
- {
- "id": 8811,
- "name": "№8811 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.56211913045024",
- "latitude": "56.97362058555183",
- "address": "ул. Калинина, д. 66А",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-11-08-47-gm2.jpg",
- "trainings": 0
- },
- {
- "id": 8812,
- "name": "№8812 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.56090322126511",
- "latitude": "56.97445577120024",
- "address": "ул. Мичурина, д. 2А",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-12-08-03-8us.jpg",
- "trainings": 0
- },
- {
- "id": 8813,
- "name": "№8813 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.56042821275673",
- "latitude": "56.975013672395896",
- "address": "ул. Мичурина, д. 2",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-12-08-44-poi.jpg",
- "trainings": 0
- },
- {
- "id": 8814,
- "name": "№8814 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.574481404748326",
- "latitude": "56.973347342835545",
- "address": "ул. Кривоусова, д. 17",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-12-08-37-mjl.jpg",
- "trainings": 0
- },
- {
- "id": 8815,
- "name": "№8815 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "59.99094082905276",
- "latitude": "57.947711107234326",
- "address": "Школа 66",
- "city_id": 611,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-16-08-10-uix.jpeg",
- "trainings": 0
- },
- {
- "id": 8816,
- "name": "№8816 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "59.99973180000006",
- "latitude": "57.9415904",
- "address": "Школа 17",
- "city_id": 611,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-01-16-08-54-z2k.jpeg",
- "trainings": 0
- },
- {
- "id": 8817,
- "name": "№8817 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.541938",
- "latitude": "55.864220",
- "address": "Коровинское шоссе",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-02-06-08-20-pnl.jpg",
- "trainings": 1
- },
- {
- "id": 8818,
- "name": "№8818 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "135.059477",
- "latitude": "48.478657",
- "address": "Амурский бульвар",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-02-15-08-06-lag.jpg",
- "trainings": 4
- },
- {
- "id": 8819,
- "name": "№8819 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "20.461055346951753",
- "latitude": "54.95729412159192",
- "address": "конец променада",
- "city_id": 8442,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-17-14-09-18-ze4.jpg",
- "trainings": 2
- },
- {
- "id": 8821,
- "name": "№8821 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.702616000000035",
- "latitude": "42.388986",
- "address": "Sozopol, Область Бургас",
- "city_id": 7870,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-02-23-08-51-eco.jpg",
- "trainings": 0
- },
- {
- "id": 8823,
- "name": "№8823 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.58340881408833",
- "latitude": "56.97609550027273",
- "address": "ул. Свердлова, д. 1А",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-03-14-08-28-oua.jpg",
- "trainings": 0
- },
- {
- "id": 8824,
- "name": "№8824 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "101.75011939158276",
- "latitude": "56.306399319354504",
- "address": "Макаренко",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-03-10-08-22-4wl.jpg",
- "trainings": 0
- },
- {
- "id": 8825,
- "name": "№8825 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "101.7519170069628",
- "latitude": "56.30377192557326",
- "address": "Холоднова",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-03-10-08-52-xny.jpg",
- "trainings": 0
- },
- {
- "id": 8826,
- "name": "№8826 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.506948",
- "latitude": "40.179526",
- "address": "Mesrop Mashtots Avenue",
- "city_id": 366,
- "country_id": 3,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-03-12-08-53-451.jpg",
- "trainings": 0
- },
- {
- "id": 8827,
- "name": "№8827 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.57109639556086",
- "latitude": "56.97563620945244",
- "address": "ул. Калинина, д. 25",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-03-14-08-48-rwb.jpg",
- "trainings": 0
- },
- {
- "id": 8828,
- "name": "№8828 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.558658252639816",
- "latitude": "56.97346698245872",
- "address": "ул. Мичурина, д. 1",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-03-14-08-43-jha.jpg",
- "trainings": 0
- },
- {
- "id": 8829,
- "name": "№8829 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.56595325810861",
- "latitude": "56.97075619519441",
- "address": "ул. Мичурина, д. 8А",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-03-14-08-17-d-x.jpg",
- "trainings": 0
- },
- {
- "id": 8830,
- "name": "№8830 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.556989095076005",
- "latitude": "56.97672748355207",
- "address": "ул. Юбилейная, д. 20",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-03-14-08-38-agk.jpg",
- "trainings": 0
- },
- {
- "id": 8831,
- "name": "№8831 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.56287929087671",
- "latitude": "56.9783064416369",
- "address": "ул. Мамина-Сибиряка, д. 4",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-03-15-08-26-bsn.jpg",
- "trainings": 0
- },
- {
- "id": 8832,
- "name": "№8832 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.290245",
- "latitude": "55.762065",
- "address": "борвиха ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-03-15-08-42-wnw.jpg",
- "trainings": 0
- },
- {
- "id": 8833,
- "name": "№8833 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.008775",
- "latitude": "60.014050",
- "address": "Приморское шоссе",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-04-09-08-28-5ei.jpg",
- "trainings": 1
- },
- {
- "id": 8834,
- "name": "№8834 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.348137",
- "latitude": "54.976745",
- "address": "улица Ленина",
- "city_id": 768,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-05-11-08-25-jdq.jpg",
- "trainings": 1
- },
- {
- "id": 8835,
- "name": "№8835 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.89369290000002",
- "latitude": "58.3305648",
- "address": "Чапаева 38",
- "city_id": 8296,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-20-13-08-31-6yy.jpg",
- "trainings": 0
- },
- {
- "id": 8836,
- "name": "№8836 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.544725200000016",
- "latitude": "44.6370572",
- "address": "Ул. Богданова 10",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-05-15-08-27-7y-.jpg",
- "trainings": 1
- },
- {
- "id": 8837,
- "name": "№8837 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.976350",
- "latitude": "55.727520",
- "address": "улица Троицкая",
- "city_id": 40,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-05-18-08-21-lc_.jpg",
- "trainings": 0
- },
- {
- "id": 8838,
- "name": "№8838 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.79051900000002",
- "latitude": "55.977952",
- "address": "улица Озерная",
- "city_id": 109,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-06-17-08-47-huw.jpg",
- "trainings": 0
- },
- {
- "id": 8840,
- "name": "№8840 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.5573565760634",
- "latitude": "55.86216798531246",
- "address": "Бескудниковский переулок 4а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-07-20-08-40-j6l.jpg",
- "trainings": 1
- },
- {
- "id": 8841,
- "name": "№8841 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.788081600907276",
- "latitude": "58.359761742232564",
- "address": "Ихасте, мини-площадка (Ihaste)",
- "city_id": 577,
- "country_id": 29,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-08-08-08-25-xhf.jpg",
- "trainings": 0
- },
- {
- "id": 8842,
- "name": "№8842 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.47816777047831",
- "latitude": "56.993593689971775",
- "address": "ул. Строителей, д. 2",
- "city_id": 8303,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-08-08-08-05-mpu.jpg",
- "trainings": 0
- },
- {
- "id": 8843,
- "name": "№8843 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.47774953368901",
- "latitude": "56.992458492758374",
- "address": "ул. Советская, д. 39",
- "city_id": 8303,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-08-09-08-42-9w6.jpg",
- "trainings": 0
- },
- {
- "id": 8844,
- "name": "№8844 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.33521069165704",
- "latitude": "46.8597533710889",
- "address": "Интеркультурная, 390",
- "city_id": 519,
- "country_id": 22,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-08-10-08-19-4ku.png",
- "trainings": 1
- },
- {
- "id": 8847,
- "name": "№8847 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.60819078479176",
- "latitude": "56.99487687747805",
- "address": "село Балтым, ул. Первомайская, д. 45А",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-09-11-08-08-lmf.jpg",
- "trainings": 0
- },
- {
- "id": 8848,
- "name": "№8848 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.60486291823395",
- "latitude": "56.99629424729217",
- "address": "село Балтым, ул. Первомайская, д. 38",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-09-11-08-02-txl.jpg",
- "trainings": 0
- },
- {
- "id": 8849,
- "name": "№8849 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.60107350419935",
- "latitude": "56.99641853499041",
- "address": "село Балтым, ул. Кривоусова, д. 1Б",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-09-11-08-20-9t6.jpg",
- "trainings": 0
- },
- {
- "id": 8850,
- "name": "№8850 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.59595717161346",
- "latitude": "56.995033344905046",
- "address": "село Балтым, ул. 2-я Молодёжная, д. 28А",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-09-11-08-56-zqs.jpg",
- "trainings": 0
- },
- {
- "id": 8851,
- "name": "№8851 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.60208068502811",
- "latitude": "56.98993976388698",
- "address": "село Балтым, ул. Первомайская, д. 86",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-09-11-08-26-f8a.jpg",
- "trainings": 0
- },
- {
- "id": 8852,
- "name": "№8852 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.61687614523805",
- "latitude": "55.8918914627842",
- "address": "Плещеева 15в",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-09-18-08-22-it-.jpg",
- "trainings": 2
- },
- {
- "id": 8853,
- "name": "№8853 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "129.722520",
- "latitude": "62.020967",
- "address": "улица Крупской",
- "city_id": 622,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-10-06-08-22-dys.jpg",
- "trainings": 2
- },
- {
- "id": 8854,
- "name": "№8854 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "129.764145",
- "latitude": "62.034644",
- "address": "202-й микрорайон",
- "city_id": 622,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-10-06-08-25-nre.jpg",
- "trainings": 1
- },
- {
- "id": 8855,
- "name": "№8855 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "129.708922",
- "latitude": "62.037475",
- "address": "Якутск",
- "city_id": 622,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-10-06-08-37-h4n.jpg",
- "trainings": 1
- },
- {
- "id": 8856,
- "name": "№8856 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "48.331447",
- "latitude": "54.268425",
- "address": "Гая проспект",
- "city_id": 575,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-10-06-08-51-o86.jpg",
- "trainings": 1
- },
- {
- "id": 8857,
- "name": "№8857 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.83506199999999",
- "latitude": "56.239208",
- "address": "улица Сазанова",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-10-10-08-09-poz.jpg",
- "trainings": 0
- },
- {
- "id": 8858,
- "name": "№8858 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.457997",
- "latitude": "55.721138",
- "address": "улица Ватутина",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-10-12-08-52-om6.jpg",
- "trainings": 0
- },
- {
- "id": 8859,
- "name": "№8859 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "31.27324363824914",
- "latitude": "58.51800423754171",
- "address": "Кремлёвский парк",
- "city_id": 14,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-10-15-08-20-d-h.jpg",
- "trainings": 1
- },
- {
- "id": 8860,
- "name": "№8860 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.27357591937664",
- "latitude": "58.517961505297144",
- "address": "Кремлёвский парк",
- "city_id": 14,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-10-15-08-10-kux.jpg",
- "trainings": 1
- },
- {
- "id": 8861,
- "name": "№8861 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "31.27337603175272",
- "latitude": "58.51803936482098",
- "address": "Кремлёвский парк",
- "city_id": 14,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-10-15-08-51-xqu.jpg",
- "trainings": 1
- },
- {
- "id": 8862,
- "name": "№8862 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.65405042765474",
- "latitude": "56.86184436394785",
- "address": "ул. Данилы Зверева, д. 12",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-11-08-08-41-omc.jpg",
- "trainings": 0
- },
- {
- "id": 8863,
- "name": "№8863 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.654915957561",
- "latitude": "56.86170096003751",
- "address": "ул. Ирбитская, д. 17А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-11-08-08-18-oyt.jpg",
- "trainings": 0
- },
- {
- "id": 8864,
- "name": "№8864 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.68327732990292",
- "latitude": "56.95612181194444",
- "address": "пос. Садовый, ул. Сибирка, д. 30",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-11-08-08-50-tvk.jpeg",
- "trainings": 0
- },
- {
- "id": 8865,
- "name": "№8865 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.50909251544317",
- "latitude": "55.72097183371243",
- "address": "Довженко",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-11-14-08-00-1uk.jpg",
- "trainings": 0
- },
- {
- "id": 8866,
- "name": "№8866 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.65687609999998",
- "latitude": "55.7564785",
- "address": "ул. Земляной Вал, 34 строение 4,",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-11-23-08-55-tkg.jpg",
- "trainings": 1
- },
- {
- "id": 8867,
- "name": "№8867 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "38.20176700000002",
- "latitude": "55.833263",
- "address": "Щелковский район",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-12-10-08-34-q2z.jpg",
- "trainings": 1
- },
- {
- "id": 8868,
- "name": "№8868 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "113.48557440354818",
- "latitude": "52.077858755651164",
- "address": "Северный 50",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 14,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-12-14-08-51-g7d.jpg",
- "trainings": 2
- },
- {
- "id": 8869,
- "name": "№8869 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.57161893005048",
- "latitude": "56.97907881521429",
- "address": "ул. Менделеева, д. 1",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-12-16-08-21-rsl.jpg",
- "trainings": 0
- },
- {
- "id": 8870,
- "name": "№8870 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.570123418002936",
- "latitude": "56.981691734656515",
- "address": "ул. Чистова, д. 8",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-12-16-08-18-yxt.jpg",
- "trainings": 0
- },
- {
- "id": 8871,
- "name": "№8871 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.56653363665009",
- "latitude": "56.981573728193496",
- "address": "ул. Чистова, д. 9",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-12-16-08-04-rfl.jpg",
- "trainings": 0
- },
- {
- "id": 8872,
- "name": "№8872 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.564128676779205",
- "latitude": "56.98217811497113",
- "address": "ул. Юбилейная, д. 4",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-12-16-08-20-54a.jpg",
- "trainings": 0
- },
- {
- "id": 8873,
- "name": "№8873 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.556746845232965",
- "latitude": "56.98741438174671",
- "address": "ул. Уральских рабочих, д. 42",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-12-17-08-00-jiw.jpg",
- "trainings": 0
- },
- {
- "id": 8874,
- "name": "№8874 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.55465300474111",
- "latitude": "56.988913716011425",
- "address": "ул. Сапожникова, д. 5",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-12-17-08-45-nqf.jpg",
- "trainings": 0
- },
- {
- "id": 8875,
- "name": "№8875 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.552799398952516",
- "latitude": "56.98679843516617",
- "address": "ул. Уральских рабочих, д. 44Д",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-12-17-08-59-pi9.jpg",
- "trainings": 0
- },
- {
- "id": 8876,
- "name": "№8876 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.55734870765082",
- "latitude": "56.98247294918617",
- "address": "ул. Кривоусова, д. 48",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-12-17-08-56-zid.jpg",
- "trainings": 0
- },
- {
- "id": 8877,
- "name": "№8877 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.557620276662874",
- "latitude": "56.981467024059974",
- "address": "ул. Кривоусова, д. 53/3",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-12-17-08-59-4ca.jpg",
- "trainings": 0
- },
- {
- "id": 8878,
- "name": "№8878 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.546772670248515",
- "latitude": "56.98751169669902",
- "address": "ул. Машиностроителей, д. 11А",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-12-17-08-16-ht4.jpg",
- "trainings": 0
- },
- {
- "id": 8879,
- "name": "№8879 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.54566420182471",
- "latitude": "56.97789524237554",
- "address": "ул. Огнеупорщиков, д. 9",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-12-17-08-11-dtp.jpg",
- "trainings": 0
- },
- {
- "id": 8880,
- "name": "№8880 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.74933805476917",
- "latitude": "58.4081150495531",
- "address": "Заправка Терминал на Раади (Gas Station Terminal Raadi teenindusjaam)",
- "city_id": 577,
- "country_id": 29,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-12-17-08-30-g5b.jpg",
- "trainings": 0
- },
- {
- "id": 8881,
- "name": "№8881 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.709886205318526",
- "latitude": "43.59307794352871",
- "address": "ул. Виноградная, д. 27",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-14-22-08-13-bte.jpeg",
- "trainings": 1
- },
- {
- "id": 8882,
- "name": "№8882 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "11.90072020307582",
- "latitude": "57.64723359072397",
- "address": "Smaragdgatan, 421 49 Västra Frölunda",
- "city_id": 8748,
- "country_id": 28,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-15-07-08-47-tez.jpg",
- "trainings": 0
- },
- {
- "id": 8883,
- "name": "№8883 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.6086529365615",
- "latitude": "56.98849590687898",
- "address": "село Балтым, ул. Васильковая, д. 4",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-15-09-08-57-3xq.jpg",
- "trainings": 0
- },
- {
- "id": 8884,
- "name": "№8884 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.61093518702887",
- "latitude": "56.99101470152096",
- "address": "село Балтым, ул. Восточная, д. 22",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-15-09-08-11-pvi.jpg",
- "trainings": 0
- },
- {
- "id": 8885,
- "name": "№8885 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.60999462717825",
- "latitude": "56.99268419211484",
- "address": "с. Балтым, ул. Восточная, д. 15",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-15-09-08-43-cjm.jpg",
- "trainings": 0
- },
- {
- "id": 8886,
- "name": "№8886 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.505788594311184",
- "latitude": "55.72059886694839",
- "address": "Довженко",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-15-15-08-23-e2y.jpg",
- "trainings": 0
- },
- {
- "id": 8887,
- "name": "№8887 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "12.403773371233342",
- "latitude": "51.3443908",
- "address": "Stadtteilpark Rabet",
- "city_id": 7506,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-15-17-08-37-4ea.jpg",
- "trainings": 1
- },
- {
- "id": 8888,
- "name": "№8888 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "83.04079145624928",
- "latitude": "54.986183852763745",
- "address": "Ключ-Камышенское плато 1а",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-16-07-08-59-rva.jpg",
- "trainings": 1
- },
- {
- "id": 8889,
- "name": "№8889 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.81480193138123",
- "latitude": "55.922099872445095",
- "address": "улица Циолковского, 9 Лицей №4 НИП , правая первая",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-16-13-08-22-y05.jpg",
- "trainings": 1
- },
- {
- "id": 8893,
- "name": "№8893 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.63719186554613",
- "latitude": "55.73664317142355",
- "address": "Большая татарская, 35 стр.5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-17-12-08-52-ljq.jpg",
- "trainings": 1
- },
- {
- "id": 8896,
- "name": "№8896 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.96156978607178",
- "latitude": "45.40562140521049",
- "address": "п. Кучугуры, ул. Ленина, д. 51",
- "city_id": 7997,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-28-14-08-44-hpd.jpg",
- "trainings": 1
- },
- {
- "id": 8897,
- "name": "№8897 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.85433769226075",
- "latitude": "55.917194340643796",
- "address": "Школа № 15 ул. Дзержинского, 20А ",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-17-23-08-13-xb-.jpg",
- "trainings": 3
- },
- {
- "id": 8898,
- "name": "№8898 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.187845",
- "latitude": "45.366842",
- "address": "улица Пионерская",
- "city_id": 7938,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-18-10-08-59-qf7.jpg",
- "trainings": 1
- },
- {
- "id": 8899,
- "name": "№8899 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.18043",
- "latitude": "45.364995",
- "address": "улица Ленина",
- "city_id": 7938,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-18-11-08-42-qbf.jpg",
- "trainings": 0
- },
- {
- "id": 8900,
- "name": "№8900 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.17346999999995",
- "latitude": "45.364338",
- "address": "улица Ленина",
- "city_id": 7938,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-18-11-08-29-n3n.jpg",
- "trainings": 0
- },
- {
- "id": 8901,
- "name": "№8901 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.168575",
- "latitude": "45.363767",
- "address": "улица Ленина",
- "city_id": 7938,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-18-11-08-34-tem.jpg",
- "trainings": 0
- },
- {
- "id": 8904,
- "name": "№8904 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.17726199999993",
- "latitude": "45.365905",
- "address": "улица Базарная",
- "city_id": 7938,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-18-12-08-31-7tn.jpg",
- "trainings": 0
- },
- {
- "id": 8905,
- "name": "№8905 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "82.85386667964872",
- "latitude": "54.96620730711977",
- "address": "Троллейная 130А",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-18-16-08-01-rtu.jpg",
- "trainings": 1
- },
- {
- "id": 8908,
- "name": "№8908 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.67761709760441",
- "latitude": "49.83483623764809",
- "address": "улица площадь Руднева 1а",
- "city_id": 7919,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-19-14-08-05-jbt.jpg",
- "trainings": 2
- },
- {
- "id": 8909,
- "name": "№8909 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.02635800000007",
- "latitude": "51.07067803997407",
- "address": "Площадь мира 7",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-19-14-08-46-b8a.jpg",
- "trainings": 1
- },
- {
- "id": 8910,
- "name": "№8910 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.02635800000007",
- "latitude": "50.40320055084197",
- "address": "площадь мира 1",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-19-15-08-10-kdb.jpg",
- "trainings": 2
- },
- {
- "id": 8911,
- "name": "№8911 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.65244899999993",
- "latitude": "55.875786",
- "address": "Сухонская ул. 7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-19-18-08-31-el3.jpg",
- "trainings": 0
- },
- {
- "id": 8912,
- "name": "№8912 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.50753879547119",
- "latitude": "47.06510868422427",
- "address": "Проспект Лунина дом 33",
- "city_id": 517,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-19-21-08-22-r7e.png",
- "trainings": 0
- },
- {
- "id": 8913,
- "name": "№8913 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.534719999999993",
- "latitude": "50.428128",
- "address": "Евгения Коновальца улица",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-20-12-08-11-qyi.jpg",
- "trainings": 0
- },
- {
- "id": 8915,
- "name": "№8915 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.467231230939888",
- "latitude": "59.91529859776624",
- "address": "Улица Коллонтай 19, корпус 5",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-20-13-08-29-2sw.jpg",
- "trainings": 2
- },
- {
- "id": 8917,
- "name": "№8917 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.323088116394047",
- "latitude": "60.070831529648515",
- "address": "ул. Михаила Дудина, 12",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-20-17-08-22-x8d.jpg",
- "trainings": 2
- },
- {
- "id": 8918,
- "name": "№8918 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.323863278434715",
- "latitude": "60.074600464327986",
- "address": "Старожиловская, 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-20-18-08-19-mqb.jpg",
- "trainings": 3
- },
- {
- "id": 8919,
- "name": "№8919 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.336946737850894",
- "latitude": "60.078174331330914",
- "address": "Валерия Гаврилина, 11 к1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-20-18-08-53-y0p.jpg",
- "trainings": 2
- },
- {
- "id": 8920,
- "name": "№8920 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.337594832662944",
- "latitude": "60.081509302826994",
- "address": "Заречная, 37",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-20-18-08-40-0iu.jpg",
- "trainings": 2
- },
- {
- "id": 8921,
- "name": "№8921 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.41319520000002",
- "latitude": "59.9344855",
- "address": "Республиканская 24",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-20-19-08-19-r-k.jpg",
- "trainings": 0
- },
- {
- "id": 8922,
- "name": "№8922 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.95631979961581",
- "latitude": "54.973645964645776",
- "address": "Бугринский пляж",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-21-07-08-39-uyh.jpg",
- "trainings": 0
- },
- {
- "id": 8923,
- "name": "№8923 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.38480985064848",
- "latitude": "55.90739849944262",
- "address": "Соколово-Мещерская улица, 31",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-21-17-08-32-fcw.jpg",
- "trainings": 0
- },
- {
- "id": 8924,
- "name": "№8924 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.619797999999946",
- "latitude": "52.590008",
- "address": "Проезд Осенний 2",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-22-11-08-20-rh9.jpg",
- "trainings": 2
- },
- {
- "id": 8926,
- "name": "№8926 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.865634",
- "latitude": "56.003225",
- "address": "1-й Фабричный проезд, д. 10",
- "city_id": 109,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-23-02-08-41-igc.jpg",
- "trainings": 0
- },
- {
- "id": 8927,
- "name": "№8927 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.76699200000007",
- "latitude": "55.825822",
- "address": "улица Николая Химушина",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-23-10-08-00-ihf.jpg",
- "trainings": 0
- },
- {
- "id": 8928,
- "name": "№8928 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "101.7642522904315",
- "latitude": "56.3078428488446",
- "address": "ул.Студенческая",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-23-13-08-32-zh7.jpg",
- "trainings": 0
- },
- {
- "id": 8929,
- "name": "№8929 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "101.75333221774065",
- "latitude": "56.30190032905615",
- "address": "ул.Холоднова",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-23-13-08-17-257.jpg",
- "trainings": 0
- },
- {
- "id": 8930,
- "name": "№8930 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.93733635836634",
- "latitude": "50.297929330833895",
- "address": "волчанск",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-23-14-08-38-lee.jpg",
- "trainings": 0
- },
- {
- "id": 8931,
- "name": "№8931 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "87.12320499999998",
- "latitude": "53.75517",
- "address": "Спартака, 5",
- "city_id": 568,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-23-14-08-30-qtk.jpg",
- "trainings": 1
- },
- {
- "id": 8933,
- "name": "№8933 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.47670800000003",
- "latitude": "55.144908",
- "address": "улица Чехова",
- "city_id": 149,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-24-08-08-31-mx4.jpg",
- "trainings": 2
- },
- {
- "id": 8934,
- "name": "№8934 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.224700180285254",
- "latitude": "50.59249775371519",
- "address": "Проскуровская улица",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-24-17-08-26-qj-.jpeg",
- "trainings": 0
- },
- {
- "id": 8935,
- "name": "№8935 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.322378220098926",
- "latitude": "60.04685138817453",
- "address": "Проспект Луначарского 38",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-24-18-08-47-nkq.jpg",
- "trainings": 0
- },
- {
- "id": 8936,
- "name": "№8936 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.54182720673123",
- "latitude": "59.64322257459575",
- "address": "3й Микрорайон дом 11",
- "city_id": 135,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-24-19-08-16-qjv.jpg",
- "trainings": 1
- },
- {
- "id": 8938,
- "name": "№8938 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.243293333333327",
- "latitude": "59.862309999999994",
- "address": "м.Автово, ул.Морской пехоты, д.10к1, д.10к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-27-08-08-52-lgw.jpg",
- "trainings": 0
- },
- {
- "id": 8939,
- "name": "№8939 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.30380996316671",
- "latitude": "52.22553911918968",
- "address": "мкр.Юбилейный д.22",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-25-14-08-50-fmm.jpg",
- "trainings": 3
- },
- {
- "id": 8945,
- "name": "№8945 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "35.67562099999998",
- "latitude": "50.4800806",
- "address": "Белгородская область, г. Грайворон, ул. Мира 61",
- "city_id": 8641,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-25-14-08-51-oh9.jpg",
- "trainings": 1
- },
- {
- "id": 8946,
- "name": "№8946 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "28.33189949549876",
- "latitude": "57.80933136795997",
- "address": "Ул. Воеводы Шуйского, 9",
- "city_id": 107,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-25-16-08-34-tln.jpg",
- "trainings": 3
- },
- {
- "id": 8949,
- "name": "№8949 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "58.45597388041415",
- "latitude": "54.81611731693901",
- "address": "Островского",
- "city_id": 7448,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-26-09-08-18-ojr.jpg",
- "trainings": 1
- },
- {
- "id": 8950,
- "name": "№8950 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "101.73076833870164",
- "latitude": "56.310547433910315",
- "address": "Ул. Мечтателей",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-26-11-08-14-ugr.jpg",
- "trainings": 0
- },
- {
- "id": 8951,
- "name": "№8951 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.21170585531513",
- "latitude": "50.55363532781667",
- "address": "Новое Шосе",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-26-13-08-51-w-a.jpeg",
- "trainings": 0
- },
- {
- "id": 8952,
- "name": "№8952 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "39.873572489410435",
- "latitude": "44.76090952911412",
- "address": "ул. Ленина, Городской парк",
- "city_id": 5975,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-26-21-08-55-5vk.png",
- "trainings": 2
- },
- {
- "id": 8953,
- "name": "№8953 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "61.35241681150819",
- "latitude": "55.11516735440127",
- "address": "Кузнецова 7",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-27-13-08-16-oba.jpg",
- "trainings": 1
- },
- {
- "id": 8954,
- "name": "№8954 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.589886200000024",
- "latitude": "52.6179855",
- "address": " ул. Гагарина, 70Б",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-27-13-08-29--sy.jpg",
- "trainings": 0
- },
- {
- "id": 8955,
- "name": "№8955 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.592193899999984",
- "latitude": "52.6194338",
- "address": "Тельмана, 19",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-27-13-08-29-pmy.jpg",
- "trainings": 0
- },
- {
- "id": 8957,
- "name": "№8957 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "39.86919377909851",
- "latitude": "44.76208525434806",
- "address": "ул. Ленина, 125",
- "city_id": 5975,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-27-16-08-54-jwt.jpg",
- "trainings": 1
- },
- {
- "id": 8958,
- "name": "№8958 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.87337802516174",
- "latitude": "44.75693915459564",
- "address": "ул. Ленина, 107",
- "city_id": 5975,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-27-16-08-00-4nr.jpg",
- "trainings": 1
- },
- {
- "id": 8959,
- "name": "№8959 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.173272",
- "latitude": "45.36423",
- "address": "улица Ленина",
- "city_id": 7938,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-27-19-08-07-pyp.jpg",
- "trainings": 0
- },
- {
- "id": 8961,
- "name": "№8961 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.168343999999934",
- "latitude": "45.363902",
- "address": "улица Ленина",
- "city_id": 7938,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-27-19-08-10--h8.jpg",
- "trainings": 0
- },
- {
- "id": 8962,
- "name": "№8962 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "61.35344582952234",
- "latitude": "55.17551016941518",
- "address": "ул. Университетская наб., 28",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-27-22-08-10-qpz.png",
- "trainings": 3
- },
- {
- "id": 8963,
- "name": "№8963 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "61.29821546587266",
- "latitude": "55.183025727801116",
- "address": "40-летия Победы, 24а",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-26-08-09-19-m_d.jpg",
- "trainings": 0
- },
- {
- "id": 8964,
- "name": "№8964 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.84965799999998",
- "latitude": "55.773012",
- "address": "улица Некрасова 17",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-28-08-08-26-f5c.jpg",
- "trainings": 0
- },
- {
- "id": 8965,
- "name": "№8965 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "33.54225884714356",
- "latitude": "44.64017896642164",
- "address": "Пляж Учкуевка",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-28-13-08-16-unp.jpg",
- "trainings": 1
- },
- {
- "id": 8968,
- "name": "№8968 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "41.89812189999998",
- "latitude": "45.01645629999999",
- "address": "Тухачевского 30/2",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-30-07-08-09-fix.jpeg",
- "trainings": 4
- },
- {
- "id": 8969,
- "name": "№8969 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "45.171031461518396",
- "latitude": "54.17422183382949",
- "address": "Старопосадская",
- "city_id": 115,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-29-14-08-49-bng.jpg",
- "trainings": 4
- },
- {
- "id": 8970,
- "name": "№8970 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.513958",
- "latitude": "55.657662",
- "address": "улица Обручева",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-29-19-08-11-r4n.jpg",
- "trainings": 2
- },
- {
- "id": 8971,
- "name": "№8971 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.5697813313061",
- "latitude": "55.76537435043257",
- "address": "Пресненский Вал, 14 к6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-30-11-08-41-jju.jpg",
- "trainings": 1
- },
- {
- "id": 8972,
- "name": "№8972 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.370406797790565",
- "latitude": "50.442994616721286",
- "address": "Парк Совки",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-30-15-08-19-4g0.jpeg",
- "trainings": 0
- },
- {
- "id": 8973,
- "name": "№8973 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.374955824279823",
- "latitude": "50.44162807454433",
- "address": "Парк Совки",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-30-15-08-27-thq.jpeg",
- "trainings": 0
- },
- {
- "id": 8974,
- "name": "№8974 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.48201700000004",
- "latitude": "55.788288",
- "address": "улица Берзарина",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-30-20-08-08-lnj.jpg",
- "trainings": 5
- },
- {
- "id": 8975,
- "name": "№8975 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.65109397470951",
- "latitude": "55.720422956552675",
- "address": "Derbenevskaya Naberezhnaya, 11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-03-12-09-52-is3.jpg",
- "trainings": 0
- },
- {
- "id": 8976,
- "name": "№8976 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.78924785911704",
- "latitude": "55.821853089976194",
- "address": "Черницынский проезд, д.8с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-31-17-08-01-noy.jpg",
- "trainings": 1
- },
- {
- "id": 8977,
- "name": "№8977 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.82635688781738",
- "latitude": "55.916169495772216",
- "address": "Октябрьский бульвар, 10 Королёв, Московская область, вторая/новая/большая/центровая площадка стадиона Вымпел",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/08/2018-08-31-21-08-06-bax.jpg",
- "trainings": 1
- },
- {
- "id": 8980,
- "name": "№8980 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.90138000794809",
- "latitude": "55.723094973232875",
- "address": "Лухмановская, 27",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-01-22-09-50-ydx.jpg",
- "trainings": 1
- },
- {
- "id": 8981,
- "name": "№8981 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.348178",
- "latitude": "54.976678",
- "address": "улица Кирова",
- "city_id": 768,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-02-15-09-59-dgp.jpg",
- "trainings": 0
- },
- {
- "id": 8983,
- "name": "№8983 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.54490280616801",
- "latitude": "59.64997203246353",
- "address": "1й микрорайон дом 46",
- "city_id": 135,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-02-16-09-06-hrk.jpg",
- "trainings": 2
- },
- {
- "id": 8984,
- "name": "№8984 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.252758577771033",
- "latitude": "59.999397033894965",
- "address": "Гаккелевская улица 20",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-02-20-09-56-b64.jpg",
- "trainings": 2
- },
- {
- "id": 8985,
- "name": "№8985 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "113.48782852444162",
- "latitude": "52.071026984015504",
- "address": "Северный 13",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-24-17-07-26-w2g.jpg",
- "trainings": 2
- },
- {
- "id": 8986,
- "name": "№8986 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "69.05491883732611",
- "latitude": "61.016845153171786",
- "address": "Студенческая 27",
- "city_id": 640,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-03-19-09-43-e4g.jpeg",
- "trainings": 0
- },
- {
- "id": 8987,
- "name": "№8987 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.03670291671006",
- "latitude": "55.28198884511162",
- "address": "Тимшино, ул. Весенняя, д. 16",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-03-20-09-22-8vi.jpg",
- "trainings": 0
- },
- {
- "id": 8988,
- "name": "№8988 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.487469",
- "latitude": "48.696441",
- "address": "волгоград симбирская ",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-03-21-09-10-mze.jpg",
- "trainings": 0
- },
- {
- "id": 8989,
- "name": "№8989 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.621298605557286",
- "latitude": "56.841878553213895",
- "address": "ул. Ленина, д. 69/13",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-05-15-09-39-pja.jpg",
- "trainings": 0
- },
- {
- "id": 8991,
- "name": "№8991 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.09213999999997",
- "latitude": "52.960386666666665",
- "address": "2-я Курская 64",
- "city_id": 93,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-06-13-09-37-xdh.jpg",
- "trainings": 2
- },
- {
- "id": 8992,
- "name": "№8992 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "34.9938512026165",
- "latitude": "57.03044884917398",
- "address": "калининское шоссе,д.16",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-06-13-09-53-rrw.jpg",
- "trainings": 3
- },
- {
- "id": 8993,
- "name": "№8993 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.52133734655763",
- "latitude": "55.71269686970817",
- "address": "Ул.дружбы 2/19",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-06-15-09-15-1oi.jpeg",
- "trainings": 1
- },
- {
- "id": 8994,
- "name": "№8994 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.29580660881629",
- "latitude": "55.60826477949961",
- "address": "Внуково",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-06-20-09-18-c-9.jpg",
- "trainings": 1
- },
- {
- "id": 8995,
- "name": "№8995 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "48.38379150000003",
- "latitude": "54.3181598",
- "address": "Радищева 145",
- "city_id": 575,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-07-06-09-30-pyl.jpg",
- "trainings": 1
- },
- {
- "id": 8996,
- "name": "№8996 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "61.3459692010498",
- "latitude": "55.197828678599926",
- "address": "ул. Куйбышева, 39",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-07-10-09-46-kqr.jpg",
- "trainings": 0
- },
- {
- "id": 8997,
- "name": "№8997 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "61.33929211373902",
- "latitude": "55.19806275076214",
- "address": "ул.Куйбышева, 53",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-07-10-09-34-bi1.jpg",
- "trainings": 1
- },
- {
- "id": 8998,
- "name": "№8998 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.616972600000054",
- "latitude": "52.5900907",
- "address": "Площадь мира 18",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-07-15-09-56-t03.jpg",
- "trainings": 0
- },
- {
- "id": 8999,
- "name": "№8999 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.62322100000006",
- "latitude": "52.576487",
- "address": "адмирала лазарева 10",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-07-20-09-02-20k.jpg",
- "trainings": 0
- },
- {
- "id": 9000,
- "name": "№9000 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.74346988525383",
- "latitude": "46.48781615690918",
- "address": "Приморская улица",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-08-15-09-38-6-b.jpeg",
- "trainings": 0
- },
- {
- "id": 9001,
- "name": "№9001 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.12292222970905",
- "latitude": "54.87134147245591",
- "address": "ул. Железнодорожная",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-08-20-09-56-16e.jpg",
- "trainings": 1
- },
- {
- "id": 9002,
- "name": "№9002 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "31.24677876425585",
- "latitude": "58.52887626851256",
- "address": "Бульвар Юности",
- "city_id": 14,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-09-10-09-14-f8c.jpg",
- "trainings": 1
- },
- {
- "id": 9003,
- "name": "№9003 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "31.246411500000022",
- "latitude": "58.5294627",
- "address": "Бульвар Юности",
- "city_id": 14,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-09-10-09-19-1nh.jpg",
- "trainings": 1
- },
- {
- "id": 9004,
- "name": "№9004 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "41.0310491076915",
- "latitude": "42.999351499923684",
- "address": "ПВО",
- "city_id": 395,
- "country_id": 74,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-09-11-09-38-ip3.jpg",
- "trainings": 0
- },
- {
- "id": 9005,
- "name": "№9005 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "40.98068455207772",
- "latitude": "43.01866482961627",
- "address": "Сухум, Новый район",
- "city_id": 395,
- "country_id": 74,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-09-11-09-47-o1i.jpg",
- "trainings": 0
- },
- {
- "id": 9006,
- "name": "№9006 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.61862999999994",
- "latitude": "53.908128",
- "address": "улица Столетова 1",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-09-12-09-18-w8c.jpg",
- "trainings": 0
- },
- {
- "id": 9007,
- "name": "№9007 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "135.04622453200852",
- "latitude": "48.52970705007526",
- "address": "Площадка в парке Северный",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-09-14-09-51-s6z.jpg",
- "trainings": 4
- },
- {
- "id": 9009,
- "name": "№9009 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.16838145256043",
- "latitude": "44.86397569201916",
- "address": "ул. Колхозная, 28Б",
- "city_id": 8174,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-11-08-09-14-omt.jpg",
- "trainings": 1
- },
- {
- "id": 9010,
- "name": "№9010 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.621280999999954",
- "latitude": "52.5793139",
- "address": "проспект мира 23а",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-11-11-09-04-xik.jpg",
- "trainings": 0
- },
- {
- "id": 9011,
- "name": "№9011 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.62086610000006",
- "latitude": "52.579789",
- "address": "невского 3а",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-11-11-09-31-xkb.jpg",
- "trainings": 0
- },
- {
- "id": 9012,
- "name": "№9012 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.61820490000002",
- "latitude": "52.584618",
- "address": "проспект мира 11",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-11-11-09-56-1mi.jpg",
- "trainings": 0
- },
- {
- "id": 9014,
- "name": "№9014 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.374665138437194",
- "latitude": "48.355606726977825",
- "address": "Sportplatzweg 39",
- "city_id": 8732,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-11-19-09-51-pu5.jpg",
- "trainings": 1
- },
- {
- "id": 9015,
- "name": "№9015 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.789359999999988",
- "latitude": "46.578128",
- "address": "Скейтпарк",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-12-06-09-05-zxq.jpg",
- "trainings": 2
- },
- {
- "id": 9016,
- "name": "№9016 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.663111500000014",
- "latitude": "50.491792",
- "address": "ул. Генерала Антонова 2",
- "city_id": 8641,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-12-08-09-33-i6b.jpg",
- "trainings": 1
- },
- {
- "id": 9017,
- "name": "№9017 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.636005",
- "latitude": "55.755100",
- "address": "Спасоглинищевский Большой переулок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-12-12-09-32-tya.jpg",
- "trainings": 0
- },
- {
- "id": 9018,
- "name": "№9018 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.74270000000001",
- "latitude": "55.70112",
- "address": "улица 1905 года ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-12-17-09-33-zon.jpg",
- "trainings": 0
- },
- {
- "id": 9020,
- "name": "№9020 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "50.13228392409496",
- "latitude": "53.21646507945534",
- "address": "Ладья",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-13-15-09-53-ynp.jpg",
- "trainings": 1
- },
- {
- "id": 9021,
- "name": "№9021 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.60111492855833",
- "latitude": "56.887266721007194",
- "address": "ул. Машиностроителей, 9",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-13-17-09-19-sej.jpg",
- "trainings": 0
- },
- {
- "id": 9022,
- "name": "№9022 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.07471516137696",
- "latitude": "45.01076435812009",
- "address": "Игнатова 5",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-13-20-09-57-b3s.jpeg",
- "trainings": 2
- },
- {
- "id": 9023,
- "name": "№9023 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.16649569828644",
- "latitude": "56.737221100938655",
- "address": "Боголюбова 15",
- "city_id": 37,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-14-07-09-42-jyi.jpg",
- "trainings": 1
- },
- {
- "id": 9024,
- "name": "№9024 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "25.942779960000053",
- "latitude": "48.27550361",
- "address": "Ольги Гузар 24",
- "city_id": 553,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/IMG_20180914_214409.jpg",
- "trainings": 1
- },
- {
- "id": 9027,
- "name": "№9027 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.61586125211488",
- "latitude": "56.855589154342965",
- "address": "Железнодорожный район, ул. Восточная д. 6",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-16-08-09-33-1cc.jpg",
- "trainings": 1
- },
- {
- "id": 9030,
- "name": "№9030 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.624913347746315",
- "latitude": "50.483608471314724",
- "address": "Милютенка, 46",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-16-10-09-41-z9b.jpg",
- "trainings": 0
- },
- {
- "id": 9031,
- "name": "№9031 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.666849100000036",
- "latitude": "55.883169",
- "address": "пр. Шокальского, 48",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-16-18-09-35-1di.jpg",
- "trainings": 0
- },
- {
- "id": 9033,
- "name": "№9033 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.2278589",
- "latitude": "69.1925847",
- "address": "ул. Бирюкова, д. 23",
- "city_id": 8485,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-17-19-09-37-jl_.jpg",
- "trainings": 0
- },
- {
- "id": 9034,
- "name": "№9034 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "113.53919373809822",
- "latitude": "52.02328614360531",
- "address": "Белорусская, 1",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-18-04-09-09-o5b.jpg",
- "trainings": 2
- },
- {
- "id": 9035,
- "name": "№9035 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.45522361506653",
- "latitude": "59.91985669350911",
- "address": "улица Джона Рида, д.3, к.1. Около школы №667",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-18-11-09-45-yki.jpg",
- "trainings": 0
- },
- {
- "id": 9037,
- "name": "№9037 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.861891805834944",
- "latitude": "44.76461610575484",
- "address": "ул. 40 лет Октября",
- "city_id": 5975,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-18-13-09-24-muq.jpg",
- "trainings": 1
- },
- {
- "id": 9038,
- "name": "№9038 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.36694699999998",
- "latitude": "55.601845",
- "address": "2-й микрорайон",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-19-07-09-54-tqe.jpg",
- "trainings": 2
- },
- {
- "id": 9039,
- "name": "№9039 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.365792000000056",
- "latitude": "55.601355",
- "address": "2-й микрорайон",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-19-07-09-16-abz.jpg",
- "trainings": 3
- },
- {
- "id": 9040,
- "name": "№9040 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "89.85223857153164",
- "latitude": "55.31662625507571",
- "address": "Советская 50",
- "city_id": 8427,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-21-06-09-41-w2z.jpg",
- "trainings": 0
- },
- {
- "id": 9041,
- "name": "№9041 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "89.82963359999997",
- "latitude": "55.3022979",
- "address": "Калинина 6",
- "city_id": 8427,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-21-07-09-26-3ge.jpg",
- "trainings": 0
- },
- {
- "id": 9042,
- "name": "№9042 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "33.34969699999999",
- "latitude": "45.191363",
- "address": "улица Демышева",
- "city_id": 493,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-21-12-09-18-y_u.jpg",
- "trainings": 0
- },
- {
- "id": 9043,
- "name": "№9043 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.95789680000007",
- "latitude": "57.0237622",
- "address": "старицкая, д.98/1",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-21-14-09-15-gd2.jpg",
- "trainings": 0
- },
- {
- "id": 9044,
- "name": "№9044 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "20.345012099999963",
- "latitude": "54.64944449999999",
- "address": "Прибрежный, Заводская, 5",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-21-18-09-43-da1.jpg",
- "trainings": 1
- },
- {
- "id": 9047,
- "name": "№9047 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.149937225673284",
- "latitude": "55.96837368974383",
- "address": "17-й микрорайон",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-21-20-09-01-dn9.jpg",
- "trainings": 2
- },
- {
- "id": 9051,
- "name": "№9051 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "73.41599989999997",
- "latitude": "61.2428",
- "address": "Парк сайма вход со сторны \"Тюменьэнерго",
- "city_id": 565,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-22-10-09-34-zfw.jpg",
- "trainings": 1
- },
- {
- "id": 9052,
- "name": "№9052 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "73.41128777854078",
- "latitude": "61.24994463633061",
- "address": "30 лет Победы ост.Строитель",
- "city_id": 565,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-22-10-09-46-bv9.jpg",
- "trainings": 4
- },
- {
- "id": 9053,
- "name": "№9053 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.47880697250367",
- "latitude": "55.861451806322975",
- "address": "Смольная ул., 47А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-22-11-09-17-yvr.jpg",
- "trainings": 1
- },
- {
- "id": 9054,
- "name": "№9054 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.264203448271246",
- "latitude": "49.94921476099353",
- "address": "переулок зерновой 5В",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-22-12-09-27-zh_.jpg",
- "trainings": 1
- },
- {
- "id": 9055,
- "name": "№9055 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.52002014417144",
- "latitude": "59.64738916901237",
- "address": "Красноармейская улица дом 27",
- "city_id": 135,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-22-13-09-41-dw-.jpg",
- "trainings": 0
- },
- {
- "id": 9057,
- "name": "№9057 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.077340594380985",
- "latitude": "54.89078513766781",
- "address": "ул.Тимирязева",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-22-21-09-21-0qn.jpg",
- "trainings": 2
- },
- {
- "id": 9064,
- "name": "№9064 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.33506729999999",
- "latitude": "59.9197005",
- "address": "Парк у ТЮЗа",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-23-22-09-51-sft.jpg",
- "trainings": 1
- },
- {
- "id": 9067,
- "name": "№9067 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "54.831771850092196",
- "latitude": "63.63688841732437",
- "address": "Стадион Нижний Одес",
- "city_id": 7450,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-24-16-09-43-utq.jpg",
- "trainings": 1
- },
- {
- "id": 9070,
- "name": "№9070 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.52457252380373",
- "latitude": "56.78948418545558",
- "address": "ул. Краснолесья, д. 107",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-24-20-09-19-oqi.jpg",
- "trainings": 0
- },
- {
- "id": 9071,
- "name": "№9071 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.53020477294922",
- "latitude": "56.79756490368956",
- "address": "ул. Вильгельма де Геннина, д. 19",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-24-20-09-49-dqp.jpg",
- "trainings": 0
- },
- {
- "id": 9072,
- "name": "№9072 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.56917194655762",
- "latitude": "56.98260775147463",
- "address": "ул. Чистова, д. 13",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-24-20-09-10-8k7.jpg",
- "trainings": 0
- },
- {
- "id": 9073,
- "name": "№9073 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "16.370740899999987",
- "latitude": "48.2468295",
- "address": "Hopsagasse 5",
- "city_id": 7542,
- "country_id": 47,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-24-21-09-34-5rn.jpg",
- "trainings": 1
- },
- {
- "id": 9074,
- "name": "№9074 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "11.510861900000009",
- "latitude": "48.5363346",
- "address": "Sportpark Pfaffenhofen",
- "city_id": 8752,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-25-00-09-31-8fc.jpg",
- "trainings": 0
- },
- {
- "id": 9075,
- "name": "№9075 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.566543664032",
- "latitude": "56.97317019792081",
- "address": "ул. Калинина, д. 37Б",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-25-06-09-17-94p.jpg",
- "trainings": 0
- },
- {
- "id": 9076,
- "name": "№9076 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "32.98054879999995",
- "latitude": "60.973558",
- "address": "ул. Полевая, 41",
- "city_id": 8609,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-25-11-09-08-dtp.jpg",
- "trainings": 0
- },
- {
- "id": 9077,
- "name": "№9077 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.484210781453044",
- "latitude": "55.831203595508676",
- "address": "Ленинградское ш., д. 35",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-25-23-09-38-jkd.jpg",
- "trainings": 3
- },
- {
- "id": 9078,
- "name": "№9078 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.10326497638266",
- "latitude": "60.92859228390039",
- "address": "Мегрега",
- "city_id": 8609,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-26-08-09-18-avb.jpg",
- "trainings": 0
- },
- {
- "id": 9080,
- "name": "№9080 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.64211750000004",
- "latitude": "50.4864571",
- "address": "Космонавта Волкова, д.24",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-26-15-09-20-o11.jpg",
- "trainings": 0
- },
- {
- "id": 9082,
- "name": "№9082 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.63005182812844",
- "latitude": "42.82024564000825",
- "address": "11 микрорайон, 22",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-27-15-09-02-sli.jpg",
- "trainings": 0
- },
- {
- "id": 9083,
- "name": "№9083 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.63021231360267",
- "latitude": "42.819478309716466",
- "address": "11 микрорайон, 15",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-27-16-09-05--u2.jpg",
- "trainings": 0
- },
- {
- "id": 9084,
- "name": "№9084 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.63065497893922",
- "latitude": "42.8190236051184",
- "address": "11 микрорайон, 17",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-27-16-09-15-eqq.jpg",
- "trainings": 0
- },
- {
- "id": 9085,
- "name": "№9085 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.6307857964473",
- "latitude": "42.81668119690273",
- "address": "11 микрорайон, 10",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-27-16-09-25-abh.jpg",
- "trainings": 0
- },
- {
- "id": 9086,
- "name": "№9086 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.63112549870425",
- "latitude": "42.81623063479247",
- "address": "11 микрорайон, 11",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-27-16-09-35-sls.jpg",
- "trainings": 0
- },
- {
- "id": 9087,
- "name": "№9087 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "101.7556964169355",
- "latitude": "56.30431827997076",
- "address": "ул.Наймушина",
- "city_id": 733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-28-18-09-35-ugr.jpg",
- "trainings": 1
- },
- {
- "id": 9095,
- "name": "№9095 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.312328",
- "latitude": "59.959795",
- "address": "Kronverkskaya ulitsa",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-30-12-09-20-r1e.jpg",
- "trainings": 3
- },
- {
- "id": 9096,
- "name": "№9096 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.0856545139045",
- "latitude": "54.88495369552671",
- "address": "ул.Тургенева д.7",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-30-14-09-53-oz3.jpg",
- "trainings": 0
- },
- {
- "id": 9097,
- "name": "№9097 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.357812105036146",
- "latitude": "49.95749095857877",
- "address": "Московский 252 а",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-30-16-09-01-px2.jpg",
- "trainings": 0
- },
- {
- "id": 9098,
- "name": "№9098 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.53892725422452",
- "latitude": "56.83827590404636",
- "address": "ул. Нагорная, д.122",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-30-17-09-14-cfo.jpg",
- "trainings": 0
- },
- {
- "id": 9099,
- "name": "№9099 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.5177001932293",
- "latitude": "56.84046141890953",
- "address": "ул. Малый конный полуостров, д. 12",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-30-17-09-46-x_p.jpg",
- "trainings": 0
- },
- {
- "id": 9100,
- "name": "№9100 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.49809255449213",
- "latitude": "56.84683436102336",
- "address": "ул. Большой конный полуостров, д. 10",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/09/2018-09-30-17-09-20-1cx.jpg",
- "trainings": 0
- },
- {
- "id": 9101,
- "name": "№9101 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.84226720912329",
- "latitude": "47.97667009137637",
- "address": "улица Благоустроенная, д. 15",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-01-20-10-30-usn.jpg",
- "trainings": 1
- },
- {
- "id": 9102,
- "name": "№9102 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.884143587171934",
- "latitude": "47.95951734666445",
- "address": "улица Георгия Димитрова, 112",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-01-20-10-35-ekj.jpg",
- "trainings": 0
- },
- {
- "id": 9103,
- "name": "№9103 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.19331212706868",
- "latitude": "55.99439675141287",
- "address": "12й р-н к1206",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-01-23-10-18-90a.jpg",
- "trainings": 0
- },
- {
- "id": 9104,
- "name": "№9104 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.642420000000016",
- "latitude": "55.696645",
- "address": "улица Автозаводская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-02-12-10-14-i_d.jpg",
- "trainings": 0
- },
- {
- "id": 9105,
- "name": "№9105 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.484820580990345",
- "latitude": "52.38208385354217",
- "address": "пгт. Белая Березка, ул. Заводская 42.",
- "city_id": 7430,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-02-22-10-09-e1g.jpg",
- "trainings": 1
- },
- {
- "id": 9106,
- "name": "№9106 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.10529399999996",
- "latitude": "56.319553",
- "address": "г. Сергиев Посад, ул. Даниила Черного, д. 9",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-03-13-10-05-nwp.jpg",
- "trainings": 1
- },
- {
- "id": 9107,
- "name": "№9107 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.083941125980004",
- "latitude": "54.89957058770373",
- "address": "Ул.Пушкина д.101",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-05-14-10-08-6uh.jpg",
- "trainings": 0
- },
- {
- "id": 9108,
- "name": "№9108 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "65.52537419497696",
- "latitude": "57.14764065916106",
- "address": "Первомайская, 55",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-06-08-10-37-ga8.jpg",
- "trainings": 0
- },
- {
- "id": 9109,
- "name": "№9109 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-58.436536118388176",
- "latitude": "-34.552205693298355",
- "address": "Echeverría, 502",
- "city_id": 7444,
- "country_id": 38,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-07-17-10-28-c8k.jpg",
- "trainings": 1
- },
- {
- "id": 9110,
- "name": "№9110 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.578955",
- "latitude": "56.973133",
- "address": "улица Кривоусова",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-08-13-10-35-cuh.jpg",
- "trainings": 0
- },
- {
- "id": 9111,
- "name": "№9111 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "59.953803",
- "latitude": "57.855347",
- "address": "Нижний Тагил",
- "city_id": 611,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-09-12-10-25-ogg.jpg",
- "trainings": 2
- },
- {
- "id": 9112,
- "name": "№9112 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.41870461611347",
- "latitude": "44.675750894790035",
- "address": "Перекопская 1",
- "city_id": 477,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-10-14-10-24-v5i.jpg",
- "trainings": 0
- },
- {
- "id": 9113,
- "name": "№9113 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "47.481250",
- "latitude": "42.995875",
- "address": "Мирзабекова проспект",
- "city_id": 616,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-10-16-10-03-sxx.jpg",
- "trainings": 0
- },
- {
- "id": 9114,
- "name": "№9114 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.97976138314209",
- "latitude": "46.30505376080766",
- "address": "Крыловская ",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-10-18-10-22-enm.jpeg",
- "trainings": 1
- },
- {
- "id": 9115,
- "name": "№9115 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.49491790000002",
- "latitude": "52.041976",
- "address": "Бабушкина 98",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-11-04-10-43-lnp.jpg",
- "trainings": 0
- },
- {
- "id": 9116,
- "name": "№9116 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "113.47298051447342",
- "latitude": "52.053581565391156",
- "address": "Северный 42",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-11-17-10-47-ulm.jpg",
- "trainings": 0
- },
- {
- "id": 9117,
- "name": "№9117 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.48301669955253",
- "latitude": "55.890289193626145",
- "address": "Зеленая улица, 2",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-12-09-10-04-rd7.jpg",
- "trainings": 1
- },
- {
- "id": 9120,
- "name": "№9120 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.994038",
- "latitude": "55.916462",
- "address": "Пролетарский проспект",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-12-14-10-24-npe.jpg",
- "trainings": 0
- },
- {
- "id": 9122,
- "name": "№9122 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.96786922961475",
- "latitude": "55.00871204167149",
- "address": "Ленинградская улица, 214",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 6,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-13-16-10-13-vy9.jpg",
- "trainings": 0
- },
- {
- "id": 9123,
- "name": "№9123 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.572306372962544",
- "latitude": "54.151612893034894",
- "address": "Платоновский лес",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-13-21-10-51-qd3.jpg",
- "trainings": 3
- },
- {
- "id": 9125,
- "name": "№9125 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.535148",
- "latitude": "56.364720",
- "address": "дзфс 7",
- "city_id": 34,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-14-15-10-42-uw7.jpg",
- "trainings": 1
- },
- {
- "id": 9126,
- "name": "№9126 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.351607603108505",
- "latitude": "50.01641707627156",
- "address": "25 школа",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-14-20-10-40-slk.jpg",
- "trainings": 1
- },
- {
- "id": 9127,
- "name": "№9127 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.299719",
- "latitude": "43.673885",
- "address": "Сочи",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-15-10-10-11-rxj.jpg",
- "trainings": 0
- },
- {
- "id": 9129,
- "name": "№9129 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.179813",
- "latitude": "55.834288",
- "address": "Нахабино, улица Панфилова ",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-15-20-10-21-rbu.jpg",
- "trainings": 0
- },
- {
- "id": 9130,
- "name": "№9130 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.7355182",
- "latitude": "51.6598487",
- "address": "Курская область, Курчатовский район, село Дичня, 3-й квартал",
- "city_id": 7923,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-16-00-10-16-uqo.jpg",
- "trainings": 0
- },
- {
- "id": 9131,
- "name": "№9131 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.6915557384491",
- "latitude": "55.752191478154295",
- "address": "улица Дзержинского, 54",
- "city_id": 7427,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-16-06-10-12-zvq.jpg",
- "trainings": 0
- },
- {
- "id": 9132,
- "name": "№9132 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.52785800000004",
- "latitude": "55.541805",
- "address": "улица Адмирала Руднева",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-16-08-10-38-dok.jpg",
- "trainings": 0
- },
- {
- "id": 9133,
- "name": "№9133 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.34744408954998",
- "latitude": "55.947946977285376",
- "address": "Синявинская ул. 11 корп. 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-16-08-10-32-nj-.jpg",
- "trainings": 1
- },
- {
- "id": 9134,
- "name": "№9134 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "135.0654529110774",
- "latitude": "48.4732349538989",
- "address": "Уссурийский бульвар",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-16-09-10-25-poc.jpg",
- "trainings": 1
- },
- {
- "id": 9136,
- "name": "№9136 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.450043715536594",
- "latitude": "59.923080878360075",
- "address": "Санкт-Петербург",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-16-13-10-58-s-o.jpg",
- "trainings": 1
- },
- {
- "id": 9138,
- "name": "№9138 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.75263223052025",
- "latitude": "47.13655615251314",
- "address": "Книжный переулок, 10",
- "city_id": 8051,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-17-15-10-18-hkb.jpg",
- "trainings": 0
- },
- {
- "id": 9139,
- "name": "№9139 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.75247800350189",
- "latitude": "47.13656846843795",
- "address": "Книжный переулок, 10",
- "city_id": 8051,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-17-15-10-28--o2.jpg",
- "trainings": 1
- },
- {
- "id": 9140,
- "name": "№9140 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.794638",
- "latitude": "55.811281",
- "address": "Щелковское шоссе, 69",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-17-17-10-08-cfb.jpg",
- "trainings": 3
- },
- {
- "id": 9141,
- "name": "№9141 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "48.0348014831543",
- "latitude": "46.322097032398396",
- "address": "Краснодарская, 47",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-14-07-07-45-ryk.jpg",
- "trainings": 0
- },
- {
- "id": 9142,
- "name": "№9142 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.85134231299162",
- "latitude": "56.237226812582904",
- "address": "улица Героя Смирнова, 18а",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-18-14-10-13-m5v.jpg",
- "trainings": 0
- },
- {
- "id": 9143,
- "name": "№9143 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.729254600415565",
- "latitude": "55.71736548526428",
- "address": "Грайвороновская, д8, к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-19-01-10-21-rzv.jpg",
- "trainings": 1
- },
- {
- "id": 9144,
- "name": "№9144 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "65.55056244134903",
- "latitude": "57.15782783566292",
- "address": "улица Свердлова, 12",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-19-14-10-00-km-.jpg",
- "trainings": 3
- },
- {
- "id": 9145,
- "name": "№9145 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "30.260038375854496",
- "latitude": "50.536085227832395",
- "address": "Северинівська",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-19-18-10-04-gjo.jpeg",
- "trainings": 1
- },
- {
- "id": 9147,
- "name": "№9147 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.92759382540657",
- "latitude": "55.01045834415761",
- "address": "Михайловская набережная",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-14-12-04-26-yzh.jpg",
- "trainings": 9
- },
- {
- "id": 9148,
- "name": "№9148 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.34695667773485",
- "latitude": "50.025931711312644",
- "address": "вулиця Гвардійців-Широнінців, 75А",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-20-10-10-54-t2j.jpg",
- "trainings": 1
- },
- {
- "id": 9149,
- "name": "№9149 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "65.55673956871033",
- "latitude": "57.12186873285152",
- "address": "улица Широтная, 13Б",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-20-14-10-37-dya.jpg",
- "trainings": 2
- },
- {
- "id": 9150,
- "name": "№9150 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.60144829750061",
- "latitude": "55.63808939938922",
- "address": "Москва",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-21-20-10-03-cje.jpg",
- "trainings": 1
- },
- {
- "id": 9151,
- "name": "№9151 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.454191446113335",
- "latitude": "55.899316542600516",
- "address": "Ленинский проспект 11А",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-21-21-10-57-xii.jpg",
- "trainings": 1
- },
- {
- "id": 9152,
- "name": "№9152 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.20232105255127",
- "latitude": "48.88379554645444",
- "address": "Pirkheimerstraße 3,",
- "city_id": 8755,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-22-07-10-21-sum.jpg",
- "trainings": 0
- },
- {
- "id": 9153,
- "name": "№9153 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.6147717",
- "latitude": "52.591043",
- "address": "Проспект мира 34",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-22-17-10-52-h8e.jpg",
- "trainings": 0
- },
- {
- "id": 9154,
- "name": "№9154 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "34.363944232463844",
- "latitude": "53.26787592150398",
- "address": "г. Брянск, улица Дуки, Курган Бессмертия",
- "city_id": 13,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-22-18-10-28-2r6.jpg",
- "trainings": 1
- },
- {
- "id": 9155,
- "name": "№9155 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.3326160311699",
- "latitude": "53.260476890665934",
- "address": "г. Брянск, ул. Костычева, д.43",
- "city_id": 13,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-22-19-10-13-zob.jpg",
- "trainings": 0
- },
- {
- "id": 9156,
- "name": "№9156 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.974573016166694",
- "latitude": "45.04789428051929",
- "address": "ул. Красных Партизан, 248",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-22-22-10-18-zc5.jpg",
- "trainings": 1
- },
- {
- "id": 9157,
- "name": "№9157 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.34479081630707",
- "latitude": "59.91947851886659",
- "address": "Константина заслонова",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-23-00-10-55-dtq.jpg",
- "trainings": 1
- },
- {
- "id": 9159,
- "name": "№9159 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.78704283842672",
- "latitude": "55.79051105108424",
- "address": "Заводской проезд, 23",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-23-16-10-37-gwy.jpg",
- "trainings": 0
- },
- {
- "id": 9160,
- "name": "№9160 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.47048743069172",
- "latitude": "55.726433588153725",
- "address": "Славянский бульвар, 7 строение 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-23-23-10-17-pia.jpg",
- "trainings": 2
- },
- {
- "id": 9162,
- "name": "№9162 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.69867663627338",
- "latitude": "55.55248384577786",
- "address": "Школьная 55а",
- "city_id": 15,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-24-10-10-55-qbl.jpg",
- "trainings": 1
- },
- {
- "id": 9163,
- "name": "№9163 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.714444816112522",
- "latitude": "46.42780934420225",
- "address": "вулиця Генерала Петрова, 11",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-24-13-10-32-vlq.jpg",
- "trainings": 0
- },
- {
- "id": 9164,
- "name": "№9164 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.59021383523942",
- "latitude": "59.606343543486595",
- "address": "Ленина, 185",
- "city_id": 7417,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-24-21-10-16-rz1.jpg",
- "trainings": 0
- },
- {
- "id": 9165,
- "name": "№9165 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.73855712264776",
- "latitude": "55.64894909407454",
- "address": "Новочеркасский бульвар, 53 строение 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-26-00-10-20-3f3.jpg",
- "trainings": 1
- },
- {
- "id": 9166,
- "name": "№9166 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "36.190048456192024",
- "latitude": "51.758440648889824",
- "address": "ул. Хуторская, дом 2",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-27-00-10-51-ax0.jpg",
- "trainings": 2
- },
- {
- "id": 9167,
- "name": "№9167 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.8949790149266",
- "latitude": "47.200257",
- "address": "Приморский парк",
- "city_id": 133,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-27-14-10-17-5ms.jpg",
- "trainings": 2
- },
- {
- "id": 9168,
- "name": "№9168 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.31248551940371",
- "latitude": "45.051869628590154",
- "address": "Старокорсунская",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-27-22-10-55-iva.jpg",
- "trainings": 1
- },
- {
- "id": 9169,
- "name": "№9169 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.58101654052735",
- "latitude": "56.969529900969555",
- "address": "ул. Спицына, д. 2",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-28-11-10-53-ita.jpg",
- "trainings": 0
- },
- {
- "id": 9170,
- "name": "№9170 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.15812376270515",
- "latitude": "44.861528755232115",
- "address": "ул. Набережная 59А, Парк победы",
- "city_id": 8174,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-30-20-10-33-qav.jpg",
- "trainings": 0
- },
- {
- "id": 9171,
- "name": "№9171 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.10049235820771",
- "latitude": "68.97587593983197",
- "address": "Северный проезд, 14",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-30-22-10-31-lv2.jpg",
- "trainings": 2
- },
- {
- "id": 9172,
- "name": "№9172 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.96451473236084",
- "latitude": "45.056887348445265",
- "address": "ул. парковая, 9",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-02-17-11-10-c5u.jpeg",
- "trainings": 2
- },
- {
- "id": 9174,
- "name": "№9174 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.85408939421178",
- "latitude": "42.89844203627323",
- "address": "3, 3",
- "city_id": 7969,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-31-21-10-05-xhz.jpg",
- "trainings": 1
- },
- {
- "id": 9175,
- "name": "№9175 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.85265575349331",
- "latitude": "42.900117076119685",
- "address": "3, 3",
- "city_id": 7969,
- "country_id": 12,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-31-21-10-47-ima.jpg",
- "trainings": 1
- },
- {
- "id": 9176,
- "name": "№9176 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.86524570733309",
- "latitude": "42.89140514382243",
- "address": "Кант",
- "city_id": 7969,
- "country_id": 12,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/10/2018-10-31-21-10-09-pf9.jpg",
- "trainings": 1
- },
- {
- "id": 9178,
- "name": "№9178 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.38388085354381",
- "latitude": "52.076459659906256",
- "address": "3 мкр., д. 11",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-02-11-11-57-gyk.jpg",
- "trainings": 1
- },
- {
- "id": 9179,
- "name": "№9179 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.44354897737504",
- "latitude": "44.150577235988294",
- "address": "пос. Новый, ул. Строителей 9",
- "city_id": 8080,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-02-13-11-33-ore.jpg",
- "trainings": 1
- },
- {
- "id": 9180,
- "name": "№9180 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "34.5558150485158",
- "latitude": "57.58378394009899",
- "address": "Осташковская улица, 2",
- "city_id": 8118,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-02-16-11-08-pvk.jpg",
- "trainings": 0
- },
- {
- "id": 9181,
- "name": "№9181 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.19265994429588",
- "latitude": "59.98677592229274",
- "address": "Primorskiy Prospekt, 161",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-03-13-11-10-jzs.jpg",
- "trainings": 0
- },
- {
- "id": 9182,
- "name": "№9182 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.01859903335572",
- "latitude": "57.86898770452546",
- "address": "ул. Автодорожная",
- "city_id": 8236,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-03-16-11-22-18_.jpg",
- "trainings": 3
- },
- {
- "id": 9183,
- "name": "№9183 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.15223419724134",
- "latitude": "44.87547584883058",
- "address": "ул. Комсомольский проспект, 126",
- "city_id": 8174,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-03-21-11-09-hwe.jpg",
- "trainings": 0
- },
- {
- "id": 9184,
- "name": "№9184 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "83.776861",
- "latitude": "53.352457",
- "address": "улица Союза Республик",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-04-11-11-22-y_b.jpg",
- "trainings": 1
- },
- {
- "id": 9185,
- "name": "№9185 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.81465172767639",
- "latitude": "55.80501354920891",
- "address": "13 парковая",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-04-19-11-06-rzo.jpg",
- "trainings": 0
- },
- {
- "id": 9186,
- "name": "№9186 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.53133",
- "latitude": "55.787628",
- "address": "Москва, Хорошевский",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-04-19-11-18-esr.jpg",
- "trainings": 5
- },
- {
- "id": 9187,
- "name": "№9187 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "26.733804023824636",
- "latitude": "58.38920234496078",
- "address": "Peetri 41",
- "city_id": 577,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-05-12-11-01--vz.jpg",
- "trainings": 0
- },
- {
- "id": 9188,
- "name": "№9188 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "54.943263",
- "latitude": "56.272433",
- "address": "улица Некрасова",
- "city_id": 8262,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-05-21-11-05-xdq.jpg",
- "trainings": 0
- },
- {
- "id": 9189,
- "name": "№9189 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.598704814910892",
- "latitude": "50.50996742316304",
- "address": "Драйзера, 30-А",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-05-21-11-46-maf.jpeg",
- "trainings": 1
- },
- {
- "id": 9190,
- "name": "№9190 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.6023831489375",
- "latitude": "50.50998575",
- "address": "Беретти, 7",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-06-15-11-21-ovb.jpg",
- "trainings": 1
- },
- {
- "id": 9191,
- "name": "№9191 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.341928",
- "latitude": "45.199812",
- "address": "Интернациональная улица 134",
- "city_id": 493,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-06-18-11-33-3hk.jpg",
- "trainings": 1
- },
- {
- "id": 9192,
- "name": "№9192 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "74.84463091939688",
- "latitude": "42.90620381724342",
- "address": "Сакебаева",
- "city_id": 7969,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-06-18-11-55-pnh.jpg",
- "trainings": 0
- },
- {
- "id": 9193,
- "name": "№9193 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.97314564124827",
- "latitude": "45.04744919101871",
- "address": "Красных партизан, 244",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-06-21-11-42-vtd.jpg",
- "trainings": 1
- },
- {
- "id": 9194,
- "name": "№9194 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "54.927499",
- "latitude": "56.265242",
- "address": "центральный парк",
- "city_id": 8262,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-07-11-11-37-rro.jpg",
- "trainings": 0
- },
- {
- "id": 9195,
- "name": "№9195 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.96143829822541",
- "latitude": "48.0963938149963",
- "address": "Гвардейский квартал Школа 42",
- "city_id": 804,
- "country_id": 22,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-07-19-11-14-g7i.jpg",
- "trainings": 1
- },
- {
- "id": 9196,
- "name": "№9196 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.953810095787055",
- "latitude": "48.09637948385709",
- "address": "Квартал северный Школа 59",
- "city_id": 804,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-07-13-11-54-ymi.jpg",
- "trainings": 0
- },
- {
- "id": 9197,
- "name": "№9197 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.813551092031055",
- "latitude": "55.80693719541126",
- "address": "13 парковая дом 34 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-07-18-11-08-xqj.jpg",
- "trainings": 0
- },
- {
- "id": 9198,
- "name": "№9198 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.81557977199555",
- "latitude": "55.8075127895488",
- "address": "13 парковая дом 47 корпус 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-07-18-11-10-7cl.jpg",
- "trainings": 0
- },
- {
- "id": 9199,
- "name": "№9199 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.63223571112395",
- "latitude": "42.81362744411993",
- "address": "12 микрорайон, 36",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-08-06-11-38-h_t.jpg",
- "trainings": 0
- },
- {
- "id": 9200,
- "name": "№9200 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.63052392005922",
- "latitude": "42.81519720672704",
- "address": "Микрорайон Асанбай, 49",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-08-06-11-25-n9o.jpg",
- "trainings": 0
- },
- {
- "id": 9201,
- "name": "№9201 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.62945988173489",
- "latitude": "42.81591302856266",
- "address": "Микрорайон Асанбай, 45",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-08-06-11-42-aia.jpg",
- "trainings": 1
- },
- {
- "id": 9202,
- "name": "№9202 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.62811439711005",
- "latitude": "42.81632794278838",
- "address": "Микрорайон Асанбай, 44",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-08-06-11-19-xyy.jpg",
- "trainings": 0
- },
- {
- "id": 9203,
- "name": "№9203 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "74.62796075240476",
- "latitude": "42.81702124373632",
- "address": "Микрорайон Асанбай, 41",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-08-06-11-53-epy.jpg",
- "trainings": 0
- },
- {
- "id": 9204,
- "name": "№9204 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.1369378566742",
- "latitude": "51.695510695088494",
- "address": "Жк янтарный",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-08-14-11-38-sgi.jpg",
- "trainings": 1
- },
- {
- "id": 9205,
- "name": "№9205 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.1967545747757",
- "latitude": "50.64149201989864",
- "address": "Макарова 48",
- "city_id": 532,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-09-09-11-35-6ja.jpg",
- "trainings": 1
- },
- {
- "id": 9206,
- "name": "№9206 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "54.244360",
- "latitude": "56.091886",
- "address": "улица Ленина",
- "city_id": 783,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-09-13-11-08-kw6.jpg",
- "trainings": 0
- },
- {
- "id": 9207,
- "name": "№9207 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "113.47954273223878",
- "latitude": "52.08596725718853",
- "address": "Каштакский мкр., д. 1",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-09-15-11-01-ohc.jpg",
- "trainings": 0
- },
- {
- "id": 9208,
- "name": "№9208 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.38755369186403",
- "latitude": "52.06589475321684",
- "address": "Проспект им. Жукова, 5",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-10-07-11-32-n68.jpg",
- "trainings": 0
- },
- {
- "id": 9209,
- "name": "№9209 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.763829231262214",
- "latitude": "55.727067792533234",
- "address": "Михайлова10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-10-20-11-38-gzz.jpeg",
- "trainings": 1
- },
- {
- "id": 9210,
- "name": "№9210 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.29579767497308",
- "latitude": "44.85579261265329",
- "address": "ул. Свободы, 8",
- "city_id": 8174,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-11-13-11-55-gd9.jpg",
- "trainings": 1
- },
- {
- "id": 9211,
- "name": "№9211 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.24115526676179",
- "latitude": "50.01880117432234",
- "address": "Академика Павлова д 162 в",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-11-17-11-15-0np.jpg",
- "trainings": 0
- },
- {
- "id": 9212,
- "name": "№9212 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "36.27273559570313",
- "latitude": "49.991739366147286",
- "address": "ул Сумская, 81",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-11-18-11-20-ik5.jpg",
- "trainings": 1
- },
- {
- "id": 9213,
- "name": "№9213 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.27186399698258",
- "latitude": "53.25317607185014",
- "address": "Брянская область, село Толмачево, ул. Трудовая, д. 9",
- "city_id": 13,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-12-22-11-52-j5z.jpg",
- "trainings": 0
- },
- {
- "id": 9214,
- "name": "№9214 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "34.32191669940949",
- "latitude": "53.22478571138623",
- "address": "проспект Станке Димитрова, 73, средняя школа №59",
- "city_id": 13,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-12-22-11-30-hxj.jpg",
- "trainings": 1
- },
- {
- "id": 9215,
- "name": "№9215 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "135.06898105144504",
- "latitude": "48.49034142452473",
- "address": "Амурский бульвар 47",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-14-01-11-05-afm.jpg",
- "trainings": 4
- },
- {
- "id": 9216,
- "name": "№9216 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "65.4521991312504",
- "latitude": "57.1651281035049",
- "address": "Затюменский парк",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-16-20-11-04-w59.png",
- "trainings": 3
- },
- {
- "id": 9217,
- "name": "№9217 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.648471009153585",
- "latitude": "60.040002649909695",
- "address": "Шишканя",
- "city_id": 25,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-16-22-11-46-kfu.jpg",
- "trainings": 1
- },
- {
- "id": 9218,
- "name": "№9218 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "28.060613956658933",
- "latitude": "54.73121039676896",
- "address": "Парк пгт Бегомль",
- "city_id": 7983,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-18-08-11-49-cun.jpg",
- "trainings": 1
- },
- {
- "id": 9219,
- "name": "№9219 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.027707576796196",
- "latitude": "45.02111514237616",
- "address": "Краснодар, ул Димитрова 129",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-18-22-11-57-d2i.jpg",
- "trainings": 1
- },
- {
- "id": 9220,
- "name": "№9220 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.02002573011544",
- "latitude": "45.026006378903254",
- "address": "Краснодар, ул Селезнева, 4/15",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-18-22-11-01-8ad.jpg",
- "trainings": 1
- },
- {
- "id": 9221,
- "name": "№9221 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.34867441654206",
- "latitude": "53.254238378336936",
- "address": "Брянск, ул. Тарджиманова, д. 1",
- "city_id": 13,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-18-23-11-58-fpf.jpg",
- "trainings": 0
- },
- {
- "id": 9222,
- "name": "№9222 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.29269134998322",
- "latitude": "53.261535807051665",
- "address": "Брянский р-н., посёлок Путёвка, ул. Школьная, д.1, Снежская гимназия.",
- "city_id": 13,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-18-23-11-47--xr.jpg",
- "trainings": 0
- },
- {
- "id": 9223,
- "name": "№9223 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.234927296638496",
- "latitude": "53.27418301749058",
- "address": "Брянский р-н., посёлок Мичуринский, ул. Берёзовая, д.7, Мичуринская школа",
- "city_id": 13,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-18-23-11-05-cez.jpg",
- "trainings": 0
- },
- {
- "id": 9224,
- "name": "№9224 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.702037811279304",
- "latitude": "55.75833059852167",
- "address": "Карла Маркса 32",
- "city_id": 7427,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-20-07-11-50-dlw.jpg",
- "trainings": 0
- },
- {
- "id": 9225,
- "name": "№9225 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.90312509188153",
- "latitude": "56.90478229462315",
- "address": "пос.Шишкино, ул. Луговая, 7",
- "city_id": 10,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-20-09-11-43-nyo.jpg",
- "trainings": 1
- },
- {
- "id": 9226,
- "name": "№9226 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.82505870634123",
- "latitude": "56.91512448992015",
- "address": "Гагарина, 21",
- "city_id": 10,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-21-13-11-33-25c.jpg",
- "trainings": 0
- },
- {
- "id": 9228,
- "name": "№9228 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.630108118057255",
- "latitude": "50.47902208407597",
- "address": "Академика Курчатова, 13",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-22-21-11-15-qjc.jpg",
- "trainings": 0
- },
- {
- "id": 9229,
- "name": "№9229 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "73.4408062878265",
- "latitude": "61.245415674807774",
- "address": "Пролетарский проспект д.8/4",
- "city_id": 565,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-24-18-11-28-z1r.png",
- "trainings": 1
- },
- {
- "id": 9230,
- "name": "№9230 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "24.76004004478455",
- "latitude": "59.42574823526639",
- "address": "herne 30",
- "city_id": 576,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-25-11-11-55-caz.jpeg",
- "trainings": 1
- },
- {
- "id": 9231,
- "name": "№9231 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.3059653193525",
- "latitude": "51.4927868",
- "address": "Родимцева 6",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-25-19-11-30-dpo.png",
- "trainings": 1
- },
- {
- "id": 9232,
- "name": "№9232 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "45.182911",
- "latitude": "54.178948",
- "address": "улица Красная",
- "city_id": 115,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-26-13-11-38-y_-.jpg",
- "trainings": 1
- },
- {
- "id": 9233,
- "name": "№9233 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.30435645580292",
- "latitude": "51.49121211917845",
- "address": "серьожнікова 3",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-26-23-11-21-v9s.jpg",
- "trainings": 1
- },
- {
- "id": 9234,
- "name": "№9234 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.306330561637882",
- "latitude": "51.4912187993232",
- "address": "Преображенська вулиця, 14",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-26-23-11-29-9wi.jpg",
- "trainings": 0
- },
- {
- "id": 9235,
- "name": "№9235 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "31.3086211681366",
- "latitude": "51.48812912791607",
- "address": "Чернігівський дитинець",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-26-23-11-21-xba.jpg",
- "trainings": 1
- },
- {
- "id": 9236,
- "name": "№9236 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "31.322429180145267",
- "latitude": "51.4875596034676",
- "address": "міський пляж \"Золотий берег\"",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-26-23-11-57-pkc.jpg",
- "trainings": 0
- },
- {
- "id": 9237,
- "name": "№9237 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "31.323915123939518",
- "latitude": "51.49963166464956",
- "address": "Центральний парк культури і відпочинку",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-26-23-11-13-xbl.jpg",
- "trainings": 0
- },
- {
- "id": 9238,
- "name": "№9238 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.307274699211124",
- "latitude": "51.49393753696391",
- "address": "Гонча 17А",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-27-00-11-10-k9s.jpg",
- "trainings": 0
- },
- {
- "id": 9239,
- "name": "№9239 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.312226057052616",
- "latitude": "51.49499459449239",
- "address": "парк Мар`їн гай",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-27-00-11-38-ju9.jpg",
- "trainings": 0
- },
- {
- "id": 9240,
- "name": "№9240 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "31.32789015769959",
- "latitude": "51.4942347846862",
- "address": "дорога от горсада к золотому",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-27-00-11-20-g4j.jpg",
- "trainings": 0
- },
- {
- "id": 9241,
- "name": "№9241 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "31.326935291290287",
- "latitude": "51.49034703216319",
- "address": "дорога от горсада к золотому",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-27-00-11-00-i6m.jpg",
- "trainings": 0
- },
- {
- "id": 9242,
- "name": "№9242 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "31.30106514141517",
- "latitude": "51.49097967978492",
- "address": "Шевченка 9",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-28-00-11-22-r1d.jpg",
- "trainings": 0
- },
- {
- "id": 9243,
- "name": "№9243 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "31.316435661647123",
- "latitude": "51.49323691699155",
- "address": "Школа 2",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/11/2018-11-28-00-11-02-jxq.jpg",
- "trainings": 0
- },
- {
- "id": 9244,
- "name": "№9244 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "113.48676323890687",
- "latitude": "52.09589862103878",
- "address": "Полковой, проезд 9",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-01-17-12-07-soh.jpg",
- "trainings": 0
- },
- {
- "id": 9245,
- "name": "№9245 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "59.88856069743634",
- "latitude": "56.883023082283586",
- "address": "улица Свердлова, 21",
- "city_id": 7976,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-02-17-12-41-rpf.jpg",
- "trainings": 1
- },
- {
- "id": 9246,
- "name": "№9246 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.02015447613808",
- "latitude": "45.02649547957147",
- "address": "Краснодар, ул Селезнева, 4/15",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-03-00-12-34-cbt.jpg",
- "trainings": 1
- },
- {
- "id": 9247,
- "name": "№9247 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "50.27884483337403",
- "latitude": "53.30573018591462",
- "address": "Мехзавод, 3-й квартал ",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-03-11-12-27-sdy.jpg",
- "trainings": 1
- },
- {
- "id": 9248,
- "name": "№9248 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "50.28110325336457",
- "latitude": "53.300328608890574",
- "address": "Мехзавод, сквер Октябрь",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-03-11-12-32-gez.jpg",
- "trainings": 0
- },
- {
- "id": 9249,
- "name": "№9249 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "50.313456058502204",
- "latitude": "53.31495456348777",
- "address": "микрорайон Крутые Ключи, улица Виталия Жалнина, 24",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-03-11-12-16-sps.jpg",
- "trainings": 0
- },
- {
- "id": 9250,
- "name": "№9250 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.611560232185845",
- "latitude": "55.67534227799829",
- "address": "Электролитный проезд 7к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-03-12-12-57-mzi.jpg",
- "trainings": 1
- },
- {
- "id": 9251,
- "name": "№9251 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "20.497183814804888",
- "latitude": "54.706592369558386",
- "address": "Набережная Петра Великого",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-05-23-12-03-bxo.jpeg",
- "trainings": 1
- },
- {
- "id": 9252,
- "name": "№9252 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "20.4865089",
- "latitude": "54.7187795",
- "address": "Свободная, 10",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-05-23-12-54-zx7.jpeg",
- "trainings": 1
- },
- {
- "id": 9253,
- "name": "№9253 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.35906553268433",
- "latitude": "50.461711431936614",
- "address": "Академика Доброхотова",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-06-10-12-03-zwi.jpeg",
- "trainings": 0
- },
- {
- "id": 9255,
- "name": "№9255 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "135.0691639",
- "latitude": "48.4913915",
- "address": "Амурский бульвар, 49",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-07-04-12-59-g0-.jpg",
- "trainings": 0
- },
- {
- "id": 9256,
- "name": "№9256 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.606772899627686",
- "latitude": "50.49946575288201",
- "address": "Закревского 27/2",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-07-09-12-57-ou8.jpg",
- "trainings": 0
- },
- {
- "id": 9257,
- "name": "№9257 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.85486032275371",
- "latitude": "57.635599239909375",
- "address": "улица Щапова, 12",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-07-22-12-30-e_q.jpg",
- "trainings": 0
- },
- {
- "id": 9258,
- "name": "№9258 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.85927908837423",
- "latitude": "57.619805483661274",
- "address": "проспект Тобухина, 6к2",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-07-22-12-38-npr.jpg",
- "trainings": 0
- },
- {
- "id": 9259,
- "name": "№9259 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.12561904933456",
- "latitude": "58.50179926945602",
- "address": "Даниловская 25",
- "city_id": 8657,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-07-22-12-58-gyd.jpg",
- "trainings": 0
- },
- {
- "id": 9260,
- "name": "№9260 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.13235657465825",
- "latitude": "58.50293075659992",
- "address": "Войнова, 106",
- "city_id": 8657,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-07-22-12-49-3he.jpg",
- "trainings": 0
- },
- {
- "id": 9261,
- "name": "№9261 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.130102322512705",
- "latitude": "58.50339599628411",
- "address": "Войнова, 121",
- "city_id": 8657,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-07-22-12-39-wbj.jpg",
- "trainings": 0
- },
- {
- "id": 9262,
- "name": "№9262 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "20.492376655165575",
- "latitude": "54.71790909648977",
- "address": "Балтика",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-08-17-12-46-xb5.jpg",
- "trainings": 3
- },
- {
- "id": 9263,
- "name": "№9263 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.5774908065796",
- "latitude": "55.64279674051558",
- "address": "Балаклавский проспект, кск Битца",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-08-19-12-13-hj5.jpg",
- "trainings": 2
- },
- {
- "id": 9264,
- "name": "№9264 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "55.168523347072835",
- "latitude": "51.81356490608647",
- "address": "Транспортная улица, 7",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-09-15-12-12-fg_.jpg",
- "trainings": 1
- },
- {
- "id": 9265,
- "name": "№9265 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "55.163725868559894",
- "latitude": "51.823773446837926",
- "address": "Северный проезд 14",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-09-15-12-29-bcw.jpg",
- "trainings": 1
- },
- {
- "id": 9266,
- "name": "№9266 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "34.0256072928969",
- "latitude": "45.12277870357774",
- "address": "Гвардейское.,ул.Карла Маркса",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-09-16-12-48-oee.jpg",
- "trainings": 0
- },
- {
- "id": 9267,
- "name": "№9267 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.922448279903634",
- "latitude": "55.371169402600444",
- "address": "Чёлоховское озеро ) Пляж",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-09-21-12-57-f7g.jpg",
- "trainings": 1
- },
- {
- "id": 9268,
- "name": "№9268 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "55.210395820409836",
- "latitude": "51.707209849700774",
- "address": "Оренбург жк Экодолье ул.Татищева",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-01-20-01-38-ajp.jpg",
- "trainings": 1
- },
- {
- "id": 9269,
- "name": "№9269 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.55537331104279",
- "latitude": "55.63191168160755",
- "address": "Севастопольский проспект, Битцевский парк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-13-21-12-53-llr.jpg",
- "trainings": 1
- },
- {
- "id": 9270,
- "name": "№9270 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.56563544273377",
- "latitude": "55.69313142044049",
- "address": "Улица Губкина, 7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-14-19-12-13-a2f.jpg",
- "trainings": 1
- },
- {
- "id": 9271,
- "name": "№9271 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.56489247083665",
- "latitude": "55.691178177389354",
- "address": "Улица Дмитрия Ульянова, 7а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-14-19-12-22-qgz.jpg",
- "trainings": 1
- },
- {
- "id": 9272,
- "name": "№9272 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "35.43039321899415",
- "latitude": "46.82681573177402",
- "address": "Мелитопольский р-н с.Константиновка ",
- "city_id": 519,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-21-12-12-26-zgo.jpeg",
- "trainings": 1
- },
- {
- "id": 9273,
- "name": "№9273 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "48.40108662843705",
- "latitude": "54.31887782255947",
- "address": "Спасская ул., 15",
- "city_id": 575,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-16-16-12-02-his.jpg",
- "trainings": 2
- },
- {
- "id": 9274,
- "name": "№9274 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.42987823486329",
- "latitude": "46.82655146475546",
- "address": "с Константиновка ",
- "city_id": 519,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-22-15-12-54-izt.jpeg",
- "trainings": 0
- },
- {
- "id": 9275,
- "name": "№9275 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "73.42691481113435",
- "latitude": "54.97492594509157",
- "address": "масленникова, красная звезда",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-23-06-12-52-uif.jpg",
- "trainings": 1
- },
- {
- "id": 9276,
- "name": "№9276 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "23.690833",
- "latitude": "37.941945",
- "address": "Kallithea, Athens",
- "city_id": 7841,
- "country_id": 64,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-23-13-12-31-9ip.jpg",
- "trainings": 0
- },
- {
- "id": 9277,
- "name": "№9277 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.4887365102768",
- "latitude": "55.795651277299655",
- "address": "Маршала Бирюзова ул., 29",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-24-18-12-33-zyj.jpg",
- "trainings": 0
- },
- {
- "id": 9278,
- "name": "№9278 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.49329626560212",
- "latitude": "55.79433645919544",
- "address": "Маршала Бирюзова ул., 14,",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-24-18-12-10-omy.jpg",
- "trainings": 1
- },
- {
- "id": 9279,
- "name": "№9279 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.31161725521088",
- "latitude": "59.83833866850126",
- "address": "5-й Предпортовый проезд, д.6, к.1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-25-14-12-02-hjp.jpg",
- "trainings": 2
- },
- {
- "id": 9280,
- "name": "№9280 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.63485431684786",
- "latitude": "55.73987026158972",
- "address": "Озерковская набережная, 24",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-26-13-12-15-wba.jpg",
- "trainings": 0
- },
- {
- "id": 9281,
- "name": "№9281 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "45.744247125925845",
- "latitude": "51.76227800617614",
- "address": "Центральная улица",
- "city_id": 8180,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-26-22-12-13-hds.jpg",
- "trainings": 1
- },
- {
- "id": 9282,
- "name": "№9282 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "47.521753",
- "latitude": "42.952688",
- "address": "Шамиля проспект",
- "city_id": 616,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-29-07-12-32-u_k.jpg",
- "trainings": 0
- },
- {
- "id": 9283,
- "name": "№9283 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "8.058144450187685",
- "latitude": "52.30241703012183",
- "address": "Lerchenstraße, 145",
- "city_id": 693,
- "country_id": 7,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-29-21-12-24-ntg.jpeg",
- "trainings": 0
- },
- {
- "id": 9284,
- "name": "№9284 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.72240775823593",
- "latitude": "43.62133370060985",
- "address": "чехова 23",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-29-22-12-00-rl1.jpg",
- "trainings": 2
- },
- {
- "id": 9285,
- "name": "№9285 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.777572751045234",
- "latitude": "43.70715531028603",
- "address": "джапаридзе",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-29-22-12-44-sra.jpg",
- "trainings": 0
- },
- {
- "id": 9286,
- "name": "№9286 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.285182476480266",
- "latitude": "59.41283132077186",
- "address": "metsapargi",
- "city_id": 8734,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-30-14-12-49-lm6.jpg",
- "trainings": 0
- },
- {
- "id": 9287,
- "name": "№9287 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.28634834289551",
- "latitude": "59.40902575555504",
- "address": "Põhja allee 12",
- "city_id": 8734,
- "country_id": 29,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-30-15-12-26-dp1.jpg",
- "trainings": 0
- },
- {
- "id": 9288,
- "name": "№9288 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.40960482401352",
- "latitude": "44.66184646015628",
- "address": "Набережная улица, 16б",
- "city_id": 477,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2018/12/2018-12-30-15-12-45-wu6.jpg",
- "trainings": 0
- },
- {
- "id": 9289,
- "name": "№9289 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.804483413696296",
- "latitude": "55.07816455272468",
- "address": "Парк на окском проспекте",
- "city_id": 60,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-01-12-01-12-f3m.jpeg",
- "trainings": 2
- },
- {
- "id": 9290,
- "name": "№9290 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.636363",
- "latitude": "55.858635",
- "address": "парк Алтуфьево",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-03-02-01-43-b3f.jpg",
- "trainings": 1
- },
- {
- "id": 9291,
- "name": "№9291 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.59431341499988",
- "latitude": "55.681286496596435",
- "address": "улица Дмитрия Ульянова, 43к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-03-21-01-55-ool.jpg",
- "trainings": 1
- },
- {
- "id": 9292,
- "name": "№9292 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.59866458177567",
- "latitude": "50.50976444030169",
- "address": "Драйзера, 30",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-04-12-01-09-pod.jpg",
- "trainings": 1
- },
- {
- "id": 9293,
- "name": "№9293 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.78288767009582",
- "latitude": "59.39655333145538",
- "address": "Männiku Tee",
- "city_id": 8758,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-05-21-01-52-54x.jpg",
- "trainings": 0
- },
- {
- "id": 9294,
- "name": "№9294 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.414219632726606",
- "latitude": "44.675577847469725",
- "address": "Приморский парк",
- "city_id": 477,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-06-13-01-58-cyu.jpg",
- "trainings": 0
- },
- {
- "id": 9296,
- "name": "№9296 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.503244638443",
- "latitude": "55.97736115143155",
- "address": "деревня Головино",
- "city_id": 47,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-06-22-01-25-rg3.jpg",
- "trainings": 1
- },
- {
- "id": 9297,
- "name": "№9297 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.032714838002",
- "latitude": "52.99177160684028",
- "address": "Скварцова",
- "city_id": 93,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-07-13-01-15-7dj.jpg",
- "trainings": 1
- },
- {
- "id": 9298,
- "name": "№9298 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.539328336715705",
- "latitude": "55.66811991707596",
- "address": "Воронцовский парк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-12-14-01-02-bei.jpg",
- "trainings": 3
- },
- {
- "id": 9299,
- "name": "№9299 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "103.91908228397371",
- "latitude": "1.3021593733560988",
- "address": " East Coast Park (Парк на восточном побережье)",
- "city_id": 7840,
- "country_id": 63,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-12-16-01-52-d7z.jpg",
- "trainings": 0
- },
- {
- "id": 9300,
- "name": "№9300 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.12421776630359",
- "latitude": "56.298520365422256",
- "address": "ул.Клементьевская",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-12-18-01-35-w6d.jpg",
- "trainings": 2
- },
- {
- "id": 9301,
- "name": "№9301 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "31.295082079013813",
- "latitude": "58.535057130271696",
- "address": "Великий Новгород, парк 30-летия Октября",
- "city_id": 14,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-15-09-01-58-xiw.jpg",
- "trainings": 2
- },
- {
- "id": 9302,
- "name": "№9302 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.87728130817414",
- "latitude": "55.74546373115175",
- "address": "суздальская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-15-17-01-19-cw_.jpg",
- "trainings": 0
- },
- {
- "id": 9305,
- "name": "№9305 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.73453682661057",
- "latitude": "55.78717504792319",
- "address": "Мироновская улица, 18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-15-21-01-39-gsn.jpg",
- "trainings": 0
- },
- {
- "id": 9306,
- "name": "№9306 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "31.101302504539493",
- "latitude": "46.62565697494191",
- "address": "Десанта 28",
- "city_id": 8735,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-15-22-01-34-htv.jpg",
- "trainings": 0
- },
- {
- "id": 9307,
- "name": "№9307 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "24.00550782680512",
- "latitude": "49.836313076604355",
- "address": "Кропивницького ",
- "city_id": 516,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-15-22-01-55-esb.jpg",
- "trainings": 0
- },
- {
- "id": 9309,
- "name": "№9309 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.487258613109596",
- "latitude": "55.79115326963457",
- "address": "улица Маршала Вершинина, 3к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-16-14-01-39-ln1.jpg",
- "trainings": 0
- },
- {
- "id": 9310,
- "name": "№9310 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.485493719577796",
- "latitude": "55.79253152765125",
- "address": " ул. Расплетина, 11к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-16-14-01-28-z-t.jpg",
- "trainings": 0
- },
- {
- "id": 9311,
- "name": "№9311 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.3771681157997",
- "latitude": "60.0175098",
- "address": "Проспект Науки,2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-16-19-01-28-0k4.png",
- "trainings": 1
- },
- {
- "id": 9314,
- "name": "№9314 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.358747608959675",
- "latitude": "55.6367119263283",
- "address": "улица Шолохова, 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-17-14-01-53-9ca.jpg",
- "trainings": 1
- },
- {
- "id": 9317,
- "name": "№9317 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.59121298789979",
- "latitude": "55.682877317857994",
- "address": "Большая Черёмушкинская улица, 19к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-17-17-01-38-p6t.jpg",
- "trainings": 0
- },
- {
- "id": 9324,
- "name": "№9324 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.60671749583279",
- "latitude": "55.676686663283306",
- "address": "Нагорная улица, 17к5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-18-18-01-03-pqf.jpg",
- "trainings": 1
- },
- {
- "id": 9325,
- "name": "№9325 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.60728607185865",
- "latitude": "55.675861491116486",
- "address": "Нагорная улица, 17к5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-18-18-01-15-axv.jpg",
- "trainings": 0
- },
- {
- "id": 9326,
- "name": "№9326 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.603790469806555",
- "latitude": "55.6804239177496",
- "address": "Нагорная улица, 18к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-18-18-01-10-ctd.jpg",
- "trainings": 0
- },
- {
- "id": 9327,
- "name": "№9327 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.439206838607795",
- "latitude": "55.727838113262294",
- "address": "Улица Ивана Франко 16",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-19-20-01-43-2jz.jpg",
- "trainings": 0
- },
- {
- "id": 9328,
- "name": "№9328 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "56.017570667172556",
- "latitude": "54.730751047832946",
- "address": "Парк лесоводов Башкортостана ",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-19-20-01-47-uu2.jpg",
- "trainings": 1
- },
- {
- "id": 9330,
- "name": "№9330 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "31.21672495733947",
- "latitude": "58.5439702583161",
- "address": "Великий Новгород, Веряжский сквер",
- "city_id": 14,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-21-09-01-10-oep.jpg",
- "trainings": 1
- },
- {
- "id": 9331,
- "name": "№9331 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.230441863954187",
- "latitude": "58.5512237831935",
- "address": "Великий Новгород, ул. Лужская 20",
- "city_id": 14,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-21-09-01-41-t2g.jpg",
- "trainings": 1
- },
- {
- "id": 9333,
- "name": "№9333 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.63403031658482",
- "latitude": "50.47939753807451",
- "address": "Академика Курчатова, 25/37",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-21-15-01-49-rt1.jpg",
- "trainings": 0
- },
- {
- "id": 9334,
- "name": "№9334 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.5527676298995",
- "latitude": "55.743716625775235",
- "address": "Студенческая улица, 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-23-15-01-57-_he.jpg",
- "trainings": 0
- },
- {
- "id": 9335,
- "name": "№9335 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "104.27164793014528",
- "latitude": "52.24451458801672",
- "address": "Лермонтова 289",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-24-10-01-20-hfa.jpg",
- "trainings": 1
- },
- {
- "id": 9336,
- "name": "№9336 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "22.213261127471927",
- "latitude": "54.5899723446772",
- "address": "Калининградская Обл. Гусевский район. г. Гусев. Школьная 1. ФОК",
- "city_id": 8240,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-24-12-01-36-7rm.jpg",
- "trainings": 2
- },
- {
- "id": 9340,
- "name": "№9340 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.58525852015212",
- "latitude": "55.689692921613606",
- "address": "улица Винокурова, 5/6к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-26-13-01-13-mzw.jpg",
- "trainings": 0
- },
- {
- "id": 9341,
- "name": "№9341 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.58336104037094",
- "latitude": "55.689581041493355",
- "address": "улица Винокурова, 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-26-13-01-31-7fz.jpg",
- "trainings": 0
- },
- {
- "id": 9342,
- "name": "№9342 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.575221657753",
- "latitude": "55.686176704720225",
- "address": "улица Дмитрия Ульянова, 24с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-26-21-01-53-hi0.jpg",
- "trainings": 0
- },
- {
- "id": 9343,
- "name": "№9343 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.683458726200776",
- "latitude": "55.77180155974252",
- "address": "Ладожская, 9/8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-27-10-01-36-qln.jpg",
- "trainings": 0
- },
- {
- "id": 9344,
- "name": "№9344 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.70845234394074",
- "latitude": "55.79913110915999",
- "address": "1-я улица Бухвостова 7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-29-11-01-12-5vi.jpg",
- "trainings": 0
- },
- {
- "id": 9345,
- "name": "№9345 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.59881705045701",
- "latitude": "55.74046467511466",
- "address": "3-й Зачатьевский переулок 21",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-29-11-01-19-efw.jpg",
- "trainings": 0
- },
- {
- "id": 9346,
- "name": "№9346 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.601249814033515",
- "latitude": "55.74238374819931",
- "address": "Пожарский переулок 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-29-11-01-34-scc.jpg",
- "trainings": 0
- },
- {
- "id": 9347,
- "name": "№9347 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.67180263996125",
- "latitude": "55.77745700841347",
- "address": "ольховская 45",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-29-11-01-03-xpw.png",
- "trainings": 2
- },
- {
- "id": 9348,
- "name": "№9348 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.6660117506981",
- "latitude": "55.77471898869982",
- "address": "1-й Ольховский тупик 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-29-11-01-22-rau.jpg",
- "trainings": 0
- },
- {
- "id": 9349,
- "name": "№9349 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.233409404754642",
- "latitude": "50.51807920028487",
- "address": "Ярославська",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-29-17-01-43-x8m.jpeg",
- "trainings": 0
- },
- {
- "id": 9350,
- "name": "№9350 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.86489754915238",
- "latitude": "55.916895225700046",
- "address": "проспект Космонавтов, 14",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-30-10-01-58-m-v.jpg",
- "trainings": 1
- },
- {
- "id": 9351,
- "name": "№9351 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.59482324123383",
- "latitude": "55.68375738318864",
- "address": "улица Винокурова, 24к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-30-13-01-34-nrz.jpg",
- "trainings": 0
- },
- {
- "id": 9352,
- "name": "№9352 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.61170238256455",
- "latitude": "55.67955194378551",
- "address": "Нагорная улица, 7к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-30-13-01-40-vcy.jpg",
- "trainings": 0
- },
- {
- "id": 9353,
- "name": "№9353 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "42.873528",
- "latitude": "44.032908",
- "address": "улица Садовое Кольцо",
- "city_id": 8055,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/01/2019-01-30-14-01-12-mox.jpg",
- "trainings": 1
- },
- {
- "id": 9356,
- "name": "№9356 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.67111063003541",
- "latitude": "55.77757467106548",
- "address": "ольховская 45",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-01-14-02-30-k-k.jpg",
- "trainings": 2
- },
- {
- "id": 9357,
- "name": "№9357 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "22.19126701354981",
- "latitude": "54.591119280752075",
- "address": "Калининградская обл. г. Гусев, ул. Красноармейская 11",
- "city_id": 8240,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-01-19-02-37-npi.jpg",
- "trainings": 1
- },
- {
- "id": 9358,
- "name": "№9358 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.481644749641426",
- "latitude": "55.854281364854145",
- "address": "Парк Дружбы, Речной вокзал",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 8,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-02-10-02-53-2j7.jpg",
- "trainings": 2
- },
- {
- "id": 9359,
- "name": "№9359 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "74.63842034339906",
- "latitude": "42.81600782517954",
- "address": "12 микрорайон, 13",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-02-22-02-59-wzh.jpg",
- "trainings": 0
- },
- {
- "id": 9361,
- "name": "№9361 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.527360558509834",
- "latitude": "44.63255852583923",
- "address": "Михайловская 9",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-05-13-02-29-hed.jpg",
- "trainings": 1
- },
- {
- "id": 9362,
- "name": "№9362 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.45147769218602",
- "latitude": "50.51769948755903",
- "address": "Вышгородская 54б",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-05-17-02-05-9lj.jpg",
- "trainings": 1
- },
- {
- "id": 9363,
- "name": "№9363 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "38.314052578559675",
- "latitude": "54.015944940057",
- "address": "Взрослый парк",
- "city_id": 559,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-06-12-02-39-len.jpg",
- "trainings": 1
- },
- {
- "id": 9364,
- "name": "№9364 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.43235763528621",
- "latitude": "55.16388934849245",
- "address": "ул. Гагарина",
- "city_id": 149,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-06-12-02-44-tqf.jpg",
- "trainings": 0
- },
- {
- "id": 9365,
- "name": "№9365 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.90490271345698",
- "latitude": "45.029717407723396",
- "address": "Бульвар Евскина ",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-08-16-02-48-ijh.jpg",
- "trainings": 3
- },
- {
- "id": 9366,
- "name": "№9366 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.827026486396791",
- "latitude": "54.80014064147205",
- "address": "Am Wang 40, 25899 Niebüll",
- "city_id": 8759,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-09-10-02-24-v6e.png",
- "trainings": 0
- },
- {
- "id": 9367,
- "name": "№9367 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "33.52940976619721",
- "latitude": "44.6327379463856",
- "address": "Михайловская 19",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-10-10-02-49-mqt.jpg",
- "trainings": 1
- },
- {
- "id": 9368,
- "name": "№9368 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.85916566848755",
- "latitude": "55.747705636747305",
- "address": "Южная 8",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-16-14-02-33-edi.jpg",
- "trainings": 0
- },
- {
- "id": 9369,
- "name": "№9369 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.324717",
- "latitude": "59.847012",
- "address": "Московский проспект",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-13-15-02-09-6vt.jpg",
- "trainings": 1
- },
- {
- "id": 9370,
- "name": "№9370 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.60473068477116",
- "latitude": "55.74981696291657",
- "address": "улица Знаменка 13к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-16-20-02-09-kkz.jpg",
- "trainings": 1
- },
- {
- "id": 9371,
- "name": "№9371 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "40.26310701254936",
- "latitude": "43.68197382625342",
- "address": "набережная Времена года село Эстосадок, городской округ Сочи, Краснодарский край, Россия",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-20-18-02-16-enu.jpg",
- "trainings": 0
- },
- {
- "id": 9372,
- "name": "№9372 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "76.68786053943394",
- "latitude": "66.113836565492",
- "address": "мкр. Восточный тер. школы №17",
- "city_id": 570,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-20-10-02-04-q7v.jpg",
- "trainings": 0
- },
- {
- "id": 9373,
- "name": "№9373 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.629527019045785",
- "latitude": "50.47707018961758",
- "address": " Академика Курчатова, 16",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-20-17-02-48-q_k.jpg",
- "trainings": 0
- },
- {
- "id": 9375,
- "name": "№9375 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "24.1462123",
- "latitude": "56.961542",
- "address": "Александра Чака 88",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-23-14-02-08-odl.jpg",
- "trainings": 0
- },
- {
- "id": 9376,
- "name": "№9376 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.43430800906853",
- "latitude": "55.82693386337375",
- "address": "Волоколамский проезд, 6к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-23-18-02-14-zr4.jpg",
- "trainings": 0
- },
- {
- "id": 9377,
- "name": "№9377 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "92.98656463623048",
- "latitude": "55.9935328611365",
- "address": "Апрельская 7",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-24-09-02-07-yef.jpg",
- "trainings": 0
- },
- {
- "id": 9378,
- "name": "№9378 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.4602200984955",
- "latitude": "52.07681573680495",
- "address": "Железобетонный, 9",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-24-15-02-23-ik0.jpg",
- "trainings": 0
- },
- {
- "id": 9379,
- "name": "№9379 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.0809771541069",
- "latitude": "56.29887007262348",
- "address": "ул.Пушкина, д 81",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-24-17-02-50-asx.jpg",
- "trainings": 1
- },
- {
- "id": 9380,
- "name": "№9380 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "53.29484403133393",
- "latitude": "56.84602954372249",
- "address": "Молодежная, 98",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-11-07-06-34-ky9.jpg",
- "trainings": 2
- },
- {
- "id": 9381,
- "name": "№9381 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "34.85288143157959",
- "latitude": "32.18687660301047",
- "address": "Парк Раанана",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-26-15-02-07--fu.jpg",
- "trainings": 1
- },
- {
- "id": 9382,
- "name": "№9382 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.53997267782688",
- "latitude": "44.37072932318875",
- "address": "Горная улица, 21",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-26-20-02-24-5sy.jpg",
- "trainings": 3
- },
- {
- "id": 9384,
- "name": "№9384 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "53.288455009460456",
- "latitude": "56.85588271596416",
- "address": "Во дворе школы 41",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-26-21-02-03-q--.jpg",
- "trainings": 0
- },
- {
- "id": 9385,
- "name": "№9385 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "21.82361125946045",
- "latitude": "54.64027970522861",
- "address": " Спортивная ул., 19, Черняховск",
- "city_id": 8178,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-27-10-02-34-zso.jpg",
- "trainings": 1
- },
- {
- "id": 9386,
- "name": "№9386 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "21.815122067928318",
- "latitude": "54.63205368183669",
- "address": "переулок Суворова, 1А Черняховск, Калининградская область, Россия",
- "city_id": 8178,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-27-10-02-55-cgq.jpg",
- "trainings": 1
- },
- {
- "id": 9387,
- "name": "№9387 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.264276266098026",
- "latitude": "50.56955543932671",
- "address": "Гостомель, ул.Рекунова, 38",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-27-21-02-09-qwe.jpeg",
- "trainings": 2
- },
- {
- "id": 9388,
- "name": "№9388 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "53.29446583986283",
- "latitude": "56.840154246330066",
- "address": "Камбарская, 35",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-28-06-02-02-npt.jpg",
- "trainings": 0
- },
- {
- "id": 9389,
- "name": "№9389 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.452178418636322",
- "latitude": "50.445830934005265",
- "address": "вулиця Борщагівська, 117,",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-28-12-02-07-_ow.jpg",
- "trainings": 1
- },
- {
- "id": 9390,
- "name": "№9390 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "127.52617494741573",
- "latitude": "50.271026330309574",
- "address": "Сквер имени воинов интернационалистов",
- "city_id": 625,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-28-12-02-05-cin.jpg",
- "trainings": 1
- },
- {
- "id": 9391,
- "name": "№9391 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.327430316008765",
- "latitude": "55.702599897033",
- "address": "Кутузовская улица д.2",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/02/2019-02-28-18-02-23-1e4.jpg",
- "trainings": 1
- },
- {
- "id": 9392,
- "name": "№9392 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.68075180053712",
- "latitude": "55.75323809679153",
- "address": "Гайдара 5",
- "city_id": 7427,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-01-13-03-00-uju.jpg",
- "trainings": 0
- },
- {
- "id": 9393,
- "name": "№9393 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.358069896698005",
- "latitude": "52.595505254383305",
- "address": "Кулешовка",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-02-07-03-58-7ld.jpg",
- "trainings": 1
- },
- {
- "id": 9394,
- "name": "№9394 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.638809204101566",
- "latitude": "50.48367132132106",
- "address": "Лесной проспект, 32",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-02-11-03-30-sjv.jpg",
- "trainings": 0
- },
- {
- "id": 9395,
- "name": "№9395 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "52.242330461740494",
- "latitude": "52.77165732466691",
- "address": "1",
- "city_id": 7930,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-02-11-03-39-32v.jpg",
- "trainings": 0
- },
- {
- "id": 9396,
- "name": "№9396 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.25732898712159",
- "latitude": "49.97189792721557",
- "address": "проспект Гагаріна, 84",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-02-12-03-05-p8e.jpg",
- "trainings": 0
- },
- {
- "id": 9397,
- "name": "№9397 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "42.199671529233456",
- "latitude": "47.513165470114906",
- "address": "улица Энтузиастов, 9б",
- "city_id": 592,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-02-15-03-26-8_b.jpg",
- "trainings": 1
- },
- {
- "id": 9398,
- "name": "№9398 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.248629964888096",
- "latitude": "52.77767232414107",
- "address": "1",
- "city_id": 7930,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-03-11-03-40-fmx.jpg",
- "trainings": 0
- },
- {
- "id": 9399,
- "name": "№9399 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.00330655",
- "latitude": "45.08821015",
- "address": "Московская,144",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-03-12-03-13-4va.jpg",
- "trainings": 1
- },
- {
- "id": 9400,
- "name": "№9400 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.27413220421295",
- "latitude": "54.417994589260225",
- "address": "Школа 22",
- "city_id": 7386,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-03-18-03-41-k6v.jpg",
- "trainings": 1
- },
- {
- "id": 9402,
- "name": "№9402 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "132.85781621932986",
- "latitude": "42.81289121457667",
- "address": "Владивостокская 45а (стадион Водник)",
- "city_id": 679,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-05-14-03-47-1v3.jpg",
- "trainings": 3
- },
- {
- "id": 9403,
- "name": "№9403 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.015336",
- "latitude": "45.119411",
- "address": "Строителей бульвар",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-05-16-03-44-vod.jpg",
- "trainings": 0
- },
- {
- "id": 9404,
- "name": "№9404 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.1276414672019",
- "latitude": "49.78413095",
- "address": "Проспект Князя Володимира 3",
- "city_id": 8000,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-05-19-03-43-lrh.jpg",
- "trainings": 1
- },
- {
- "id": 9405,
- "name": "№9405 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.70202577114106",
- "latitude": "55.68151937751591",
- "address": "Коломенская,9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-06-16-03-38-gxq.jpg",
- "trainings": 1
- },
- {
- "id": 9406,
- "name": "№9406 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "43.44513416290283",
- "latitude": "44.13294218313968",
- "address": "ул. Калинина 150",
- "city_id": 8080,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-06-18-03-47--da.jpg",
- "trainings": 3
- },
- {
- "id": 9407,
- "name": "№9407 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.284648171932986",
- "latitude": "53.710388470976866",
- "address": "Ул.Мичурина",
- "city_id": 8415,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-06-19-03-39-qlw.jpeg",
- "trainings": 1
- },
- {
- "id": 9408,
- "name": "№9408 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.8385919890969",
- "latitude": "47.9601534",
- "address": "ул. Индустрии, 1",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-06-21-03-58-pjk.jpg",
- "trainings": 0
- },
- {
- "id": 9409,
- "name": "№9409 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "39.777489",
- "latitude": "47.223937",
- "address": "Ростов-на-Дону",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-08-09-03-17-qoi.jpg",
- "trainings": 1
- },
- {
- "id": 9410,
- "name": "№9410 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.312717470022115",
- "latitude": "55.81526427832753",
- "address": "Комсомольская 41",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-08-13-03-44-odu.jpg",
- "trainings": 1
- },
- {
- "id": 9411,
- "name": "№9411 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "43.48840355873108",
- "latitude": "44.14145432341727",
- "address": "улица Шоссейная, 2",
- "city_id": 8080,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-08-18-03-28-vhk.jpg",
- "trainings": 2
- },
- {
- "id": 9412,
- "name": "№9412 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.473254442214966",
- "latitude": "44.15535754105371",
- "address": "Гагарина 66",
- "city_id": 8080,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-08-18-03-53-hpr.jpg",
- "trainings": 1
- },
- {
- "id": 9413,
- "name": "№9413 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.66985797882081",
- "latitude": "55.780209417383205",
- "address": "Ул герцена 18 ",
- "city_id": 98,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-09-12-03-54-yfc.jpg",
- "trainings": 1
- },
- {
- "id": 9414,
- "name": "№9414 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.66507063060999",
- "latitude": "55.59661512937333",
- "address": "Педагогическая улица, 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-09-17-03-58-dh3.jpg",
- "trainings": 2
- },
- {
- "id": 9415,
- "name": "№9415 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "56.71797753842839",
- "latitude": "59.69405552491359",
- "address": "Парк",
- "city_id": 8063,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-09-20-03-37-suq.jpg",
- "trainings": 1
- },
- {
- "id": 9416,
- "name": "№9416 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.974859714508064",
- "latitude": "56.270996066789515",
- "address": "Проспект Гагарина, парк Швейцария, ост. \"Электрон\"",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-10-20-03-57-ew5.jpg",
- "trainings": 4
- },
- {
- "id": 9417,
- "name": "№9417 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "38.66660535334177",
- "latitude": "55.77788944208549",
- "address": "Ул. Тихонова. 81",
- "city_id": 98,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-10-23-03-04-rwl.jpg",
- "trainings": 0
- },
- {
- "id": 9418,
- "name": "№9418 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.409258",
- "latitude": "59.687425",
- "address": "улица Анциферовская",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-11-11-03-34-iqp.jpg",
- "trainings": 2
- },
- {
- "id": 9419,
- "name": "№9419 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.2827160358429",
- "latitude": "53.70862769606404",
- "address": "Ул. Победа",
- "city_id": 8415,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-11-16-03-02-gzg.jpeg",
- "trainings": 0
- },
- {
- "id": 9420,
- "name": "№9420 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.455753803253174",
- "latitude": "60.028001143169405",
- "address": "ул. Корнея Чуковского д.3,к.4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-11-17-03-00-yjs.jpg",
- "trainings": 2
- },
- {
- "id": 9421,
- "name": "№9421 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "34.1706669330597",
- "latitude": "44.50651051616685",
- "address": "Калинникова",
- "city_id": 557,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-12-19-03-43-ebh.jpg",
- "trainings": 1
- },
- {
- "id": 9422,
- "name": "№9422 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.79658436775208",
- "latitude": "55.815570164195606",
- "address": "Байкальская 18к4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-12-23-03-58-s-r.jpeg",
- "trainings": 3
- },
- {
- "id": 9423,
- "name": "№9423 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "83.76806974411012",
- "latitude": "53.3365873359738",
- "address": "переулок Ядринцева 76",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-13-07-03-29-azz.jpg",
- "trainings": 1
- },
- {
- "id": 9424,
- "name": "№9424 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "83.76894414424898",
- "latitude": "53.33863137985059",
- "address": "папанинцев 115",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-13-07-03-24-2wz.jpg",
- "trainings": 0
- },
- {
- "id": 9425,
- "name": "№9425 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.59192913770676",
- "latitude": "55.66710366616589",
- "address": "Нахимовский проспект, 23 строение 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-13-09-03-32-f6i.jpg",
- "trainings": 2
- },
- {
- "id": 9427,
- "name": "№9427 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.48117238971955",
- "latitude": "50.43326442799989",
- "address": "ул. Василия Липковского 26",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-13-16-03-14-zqi.jpg",
- "trainings": 1
- },
- {
- "id": 9428,
- "name": "№9428 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "104.325462",
- "latitude": "52.26833",
- "address": "улица Депутатская",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-14-11-03-20-1pr.jpg",
- "trainings": 0
- },
- {
- "id": 9429,
- "name": "№9429 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.427950232477283",
- "latitude": "50.50019417111101",
- "address": "Апрельский переулок 1в",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-14-13-03-39-6xu.jpg",
- "trainings": 1
- },
- {
- "id": 9430,
- "name": "№9430 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.612592173113775",
- "latitude": "50.519246450906174",
- "address": "Выгуровский бульвар 13а",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-14-21-03-01-5jj.jpg",
- "trainings": 0
- },
- {
- "id": 9431,
- "name": "№9431 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.600039014686192",
- "latitude": "50.47803482337144",
- "address": "Петра Запорожца 12",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-14-21-03-40-1k-.jpg",
- "trainings": 0
- },
- {
- "id": 9432,
- "name": "№9432 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.9101496959047",
- "latitude": "43.14482171365255",
- "address": "Днепровская 30",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-15-04-03-57-uaj.jpg",
- "trainings": 0
- },
- {
- "id": 9434,
- "name": "№9434 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "69.15042791515589",
- "latitude": "61.028734262166665",
- "address": "улица Радужная, 17",
- "city_id": 640,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-15-07-03-00-qej.jpg",
- "trainings": 1
- },
- {
- "id": 9435,
- "name": "№9435 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.471742676415708",
- "latitude": "50.44865753429606",
- "address": "Проспект Победы 21",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-15-10-03-15-cgp.jpg",
- "trainings": 0
- },
- {
- "id": 9436,
- "name": "№9436 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "103.62317",
- "latitude": "52.75602",
- "address": "улица Стопани",
- "city_id": 585,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-15-10-03-27-j5k.jpg",
- "trainings": 0
- },
- {
- "id": 9437,
- "name": "№9437 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "27.519223116291876",
- "latitude": "53.886432420247296",
- "address": "Проспект Дзержинского, дом 15, Грушевский сквер",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-15-13-03-22-bz5.jpg",
- "trainings": 1
- },
- {
- "id": 9438,
- "name": "№9438 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.528146624565128",
- "latitude": "50.49189245629666",
- "address": "Оболонская набережная, 1",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-23-16-03-09-mrx.jpg",
- "trainings": 3
- },
- {
- "id": 9439,
- "name": "№9439 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "95.720245",
- "latitude": "56.20565",
- "address": "улица Краснопартизанская",
- "city_id": 52,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-16-06-03-13-cn2.jpg",
- "trainings": 0
- },
- {
- "id": 9440,
- "name": "№9440 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "84.9843906",
- "latitude": "56.4834115",
- "address": "Овражный переулок,22",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-16-07-03-43-8oa.jpeg",
- "trainings": 1
- },
- {
- "id": 9441,
- "name": "№9441 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.48667001714421",
- "latitude": "50.46858865094617",
- "address": "ул. Татарская 36/5",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-16-17-03-07-hvg.jpg",
- "trainings": 0
- },
- {
- "id": 9442,
- "name": "№9442 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.47714671700969",
- "latitude": "50.476417045192825",
- "address": "ул. нагорная",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-16-17-03-52-rze.jpg",
- "trainings": 0
- },
- {
- "id": 9443,
- "name": "№9443 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "30.2172464132309",
- "latitude": "55.1745330411325",
- "address": "чкалова 14 к 1",
- "city_id": 373,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-17-13-03-49-dd4.jpg",
- "trainings": 0
- },
- {
- "id": 9444,
- "name": "№9444 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.3739916086197",
- "latitude": "55.67205377670165",
- "address": "Парк Мещерский",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-17-15-03-46-3bp.jpg",
- "trainings": 3
- },
- {
- "id": 9445,
- "name": "№9445 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "65.57753",
- "latitude": "57.138083",
- "address": "улица Одесская",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-18-12-03-43-l_k.jpg",
- "trainings": 1
- },
- {
- "id": 9446,
- "name": "№9446 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.5236661276808",
- "latitude": "56.87422625",
- "address": "Таёжная, 4",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-17-20-03-12-ngy.jpg",
- "trainings": 1
- },
- {
- "id": 9447,
- "name": "№9447 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "56.70846462241571",
- "latitude": "59.70062019558959",
- "address": "Северная 41а",
- "city_id": 8063,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-18-06-03-29-1hb.jpg",
- "trainings": 1
- },
- {
- "id": 9448,
- "name": "№9448 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.476823942297",
- "latitude": "52.0345295",
- "address": "5 Малая 1б",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-18-06-03-58-mto.jpg",
- "trainings": 0
- },
- {
- "id": 9449,
- "name": "№9449 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "113.47763299942018",
- "latitude": "52.035518270327664",
- "address": "Малая 6",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-18-07-03-46-v_4.jpg",
- "trainings": 0
- },
- {
- "id": 9450,
- "name": "№9450 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "113.4655547",
- "latitude": "52.0419021",
- "address": "Комсомольская 105",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-18-07-03-57-tyq.jpg",
- "trainings": 0
- },
- {
- "id": 9451,
- "name": "№9451 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "132.88297533988955",
- "latitude": "42.83789050674916",
- "address": "Бульвар Энтузиастов 8",
- "city_id": 679,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-18-11-03-33-mzx.jpg",
- "trainings": 0
- },
- {
- "id": 9452,
- "name": "№9452 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "132.8814598917961",
- "latitude": "42.838753930853535",
- "address": "Бульвар Энтузиастов 11",
- "city_id": 679,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-18-11-03-16-eq_.jpg",
- "trainings": 1
- },
- {
- "id": 9453,
- "name": "№9453 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.486014872650117",
- "latitude": "50.46869791343228",
- "address": "ул.татарская",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-18-13-03-47-x6v.jpg",
- "trainings": 1
- },
- {
- "id": 9454,
- "name": "№9454 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.488220297964567",
- "latitude": "50.46835373567573",
- "address": "Печенежская 8",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-18-13-03-29-4d2.jpg",
- "trainings": 0
- },
- {
- "id": 9455,
- "name": "№9455 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.824100993573666",
- "latitude": "32.170089015485566",
- "address": "Yosef Nevo Street",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-19-17-03-57-lbf.jpg",
- "trainings": 1
- },
- {
- "id": 9456,
- "name": "№9456 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.42481970787049",
- "latitude": "47.941646854618824",
- "address": "Космонавтів 21",
- "city_id": 512,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-20-11-03-23-ag3.jpg",
- "trainings": 0
- },
- {
- "id": 9457,
- "name": "№9457 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.67753720283509",
- "latitude": "55.70762046856906",
- "address": "кожуховская 27",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-22-21-03-23-aph.jpg",
- "trainings": 0
- },
- {
- "id": 9458,
- "name": "№9458 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.717966556549076",
- "latitude": "46.38980638255682",
- "address": "ул. Вильямса, 81/3",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-23-08-03-48-xty.jpg",
- "trainings": 0
- },
- {
- "id": 9459,
- "name": "№9459 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.793186",
- "latitude": "57.696469",
- "address": "улица Батова",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-23-11-03-41-ocm.jpg",
- "trainings": 2
- },
- {
- "id": 9460,
- "name": "№9460 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "73.43676924705507",
- "latitude": "61.24820413352839",
- "address": "Университетская",
- "city_id": 565,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-23-12-03-21-iib.jpeg",
- "trainings": 1
- },
- {
- "id": 9461,
- "name": "№9461 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "44.519102051854134",
- "latitude": "48.710038540721676",
- "address": "улица Комсомольская, 13",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-23-13-03-45-mpk.jpg",
- "trainings": 1
- },
- {
- "id": 9462,
- "name": "№9462 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.524922609329227",
- "latitude": "50.496797315156655",
- "address": "Оболонская набережкая",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-23-13-03-12-421.jpg",
- "trainings": 2
- },
- {
- "id": 9463,
- "name": "№9463 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.716114044298596",
- "latitude": "46.39746751550756",
- "address": "Глушко, 25",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-12-12-10-39-gkx.jpg",
- "trainings": 0
- },
- {
- "id": 9464,
- "name": "№9464 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.720359086826655",
- "latitude": "46.395284720112485",
- "address": "Микрорайон Б",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-31-11-10-22-eb9.jpg",
- "trainings": 0
- },
- {
- "id": 9465,
- "name": "№9465 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.718542337308467",
- "latitude": "46.39384920707604",
- "address": "Микрорайон Б",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-04-21-09-30-ta9.jpg",
- "trainings": 0
- },
- {
- "id": 9466,
- "name": "№9466 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "131.90777469641037",
- "latitude": "43.14261033505411",
- "address": "100 летия Владивостока 7б",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-24-06-03-05-0kx.jpg",
- "trainings": 2
- },
- {
- "id": 9468,
- "name": "№9468 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.423055328428745",
- "latitude": "50.472219574487376",
- "address": "02000",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-24-19-03-40-xth.jpg",
- "trainings": 0
- },
- {
- "id": 9469,
- "name": "№9469 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "32.605822943151",
- "latitude": "51.86379557760018",
- "address": "Unnamed Road",
- "city_id": 552,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-24-20-03-55-wpr.jpg",
- "trainings": 1
- },
- {
- "id": 9470,
- "name": "№9470 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.346580",
- "latitude": "59.840983",
- "address": "улица Орджоникидзе",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-24-23-03-35-ed1.jpg",
- "trainings": 1
- },
- {
- "id": 9471,
- "name": "№9471 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.874955",
- "latitude": "43.115611",
- "address": "улица Набережная",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-25-06-03-38-sm_.jpg",
- "trainings": 1
- },
- {
- "id": 9472,
- "name": "№9472 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.123580574989326",
- "latitude": "55.863909800528255",
- "address": "улица Космонавта Комарова, 2",
- "city_id": 794,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-25-08-03-53-kqz.jpg",
- "trainings": 1
- },
- {
- "id": 9473,
- "name": "№9473 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "69.03260350227357",
- "latitude": "60.99913609358359",
- "address": "улица Калинина, 1",
- "city_id": 640,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-25-12-03-00-ycj.jpg",
- "trainings": 1
- },
- {
- "id": 9474,
- "name": "№9474 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "61.45545959472657",
- "latitude": "55.16207795277828",
- "address": "ЧЕЛЯБИНСК УЛИЦА МАРЧЕНКО 37",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-25-13-03-44-487.jpg",
- "trainings": 1
- },
- {
- "id": 9475,
- "name": "№9475 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.667447566931514",
- "latitude": "55.778512942578814",
- "address": "Парк культуры и отдыха",
- "city_id": 98,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-25-15-03-20-26d.jpg",
- "trainings": 0
- },
- {
- "id": 9476,
- "name": "№9476 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.67379546165467",
- "latitude": "55.77982829483327",
- "address": "Стадион спартак",
- "city_id": 98,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-25-15-03-19-dug.jpg",
- "trainings": 0
- },
- {
- "id": 9477,
- "name": "№9477 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.752162931821662",
- "latitude": "46.39471989322308",
- "address": "Солнечный",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-15-09-32-lqf.jpg",
- "trainings": 0
- },
- {
- "id": 9478,
- "name": "№9478 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.67372846603394",
- "latitude": "55.76488919564486",
- "address": "Доброслободская улица, 16к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-26-07-03-33-twy.jpeg",
- "trainings": 0
- },
- {
- "id": 9479,
- "name": "№9479 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.716536044965327",
- "latitude": "46.393727112842946",
- "address": "ул. Ильфа и Петрова, Парк",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-12-13-10-49-0ts.jpg",
- "trainings": 0
- },
- {
- "id": 9480,
- "name": "№9480 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.46737933158875",
- "latitude": "55.17559606277185",
- "address": "Кулибина 60",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-26-12-03-44-9dx.jpg",
- "trainings": 1
- },
- {
- "id": 9481,
- "name": "№9481 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "61.464284062385566",
- "latitude": "55.17648444527635",
- "address": "ул.Шумеская 31",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-26-13-03-47-szg.jpg",
- "trainings": 0
- },
- {
- "id": 9482,
- "name": "№9482 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.46265864372254",
- "latitude": "55.17854296587244",
- "address": "ул.Южноуральская 13",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-26-13-03-19-jws.jpg",
- "trainings": 0
- },
- {
- "id": 9483,
- "name": "№9483 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "61.46028220653535",
- "latitude": "55.17760868026725",
- "address": "ул.Шуменская 131б",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-26-13-03-40-yt9.jpg",
- "trainings": 0
- },
- {
- "id": 9484,
- "name": "№9484 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "61.459300518035896",
- "latitude": "55.16821253175987",
- "address": "Сад Победы",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-26-13-03-30-t68.jpg",
- "trainings": 2
- },
- {
- "id": 9485,
- "name": "№9485 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.459788680076606",
- "latitude": "55.16826461954822",
- "address": "Сад Победы",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-26-13-03-14-kro.jpg",
- "trainings": 2
- },
- {
- "id": 9486,
- "name": "№9486 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "61.46744906902314",
- "latitude": "55.16858940069335",
- "address": "Салютная 148Б",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-26-13-03-22-q8d.jpg",
- "trainings": 0
- },
- {
- "id": 9487,
- "name": "№9487 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.72714328784969",
- "latitude": "46.39070673260785",
- "address": "ул. Вильямса, 61",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-06-14-11-11-hny.jpg",
- "trainings": 0
- },
- {
- "id": 9488,
- "name": "№9488 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "170.55971464519942",
- "latitude": "70.08458259782545",
- "address": "Посёлок Шелагский (заброшен)",
- "city_id": 8675,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-28-16-03-26-nxb.jpg",
- "trainings": 0
- },
- {
- "id": 9489,
- "name": "№9489 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.711089842021465",
- "latitude": "47.22266769760464",
- "address": "переулок Семашко, 53а",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-29-14-03-27-b2j.jpg",
- "trainings": 1
- },
- {
- "id": 9490,
- "name": "№9490 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "69.033315628767",
- "latitude": "60.999909657296165",
- "address": "улица Калинина, 14",
- "city_id": 640,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-29-19-03-11--vt.jpg",
- "trainings": 0
- },
- {
- "id": 9491,
- "name": "№9491 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.263185487128798",
- "latitude": "60.016616004420904",
- "address": "Парк озеро долгое ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-30-09-03-05-1l2.jpg",
- "trainings": 3
- },
- {
- "id": 9492,
- "name": "№9492 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.719128847067626",
- "latitude": "46.388230117792546",
- "address": "Школа 86",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-23-23-08-10-4va.jpg",
- "trainings": 0
- },
- {
- "id": 9493,
- "name": "№9493 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.472811229527",
- "latitude": "56.005102892268276",
- "address": "улица Иванищенко, 1А Стадион Москвич",
- "city_id": 73,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-30-17-03-27-28j.jpg",
- "trainings": 0
- },
- {
- "id": 9494,
- "name": "№9494 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.536350180993466",
- "latitude": "53.92528361053732",
- "address": "Unnamed Road",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-30-22-03-59-_ff.jpg",
- "trainings": 0
- },
- {
- "id": 9495,
- "name": "№9495 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.535894364118576",
- "latitude": "53.92518782025944",
- "address": "Unnamed Road",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-30-22-03-12-svp.jpg",
- "trainings": 0
- },
- {
- "id": 9496,
- "name": "№9496 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.920228",
- "latitude": "43.125142",
- "address": "Красного Знамени проспект",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-31-05-03-51-5bk.jpg",
- "trainings": 0
- },
- {
- "id": 9497,
- "name": "№9497 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "24.943415634334087",
- "latitude": "59.473890072143654",
- "address": "Viljapuu puiestee, 70",
- "city_id": 576,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-31-10-03-05-dcv.jpg",
- "trainings": 1
- },
- {
- "id": 9498,
- "name": "№9498 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.658148519694805",
- "latitude": "55.601660819404216",
- "address": "Элеваторная улица, 12",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-31-17-03-29-xi-.jpg",
- "trainings": 3
- },
- {
- "id": 9499,
- "name": "№9499 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.63334511018184",
- "latitude": "60.025251343061555",
- "address": "Вокка дом 6",
- "city_id": 25,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-31-21-03-46-mpq.jpg",
- "trainings": 1
- },
- {
- "id": 9500,
- "name": "№9500 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "8.43147175234022",
- "latitude": "48.9944325",
- "address": "PSV",
- "city_id": 7515,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-31-22-03-48-d20.png",
- "trainings": 1
- },
- {
- "id": 9501,
- "name": "№9501 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.22574901580811",
- "latitude": "60.03815654824971",
- "address": "Комедатский проспект 67",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/03/2019-03-31-23-03-28-_8d.jpeg",
- "trainings": 1
- },
- {
- "id": 9502,
- "name": "№9502 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.557044",
- "latitude": "55.722588",
- "address": "Khamovnicheskiy Val ulitsa",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-01-09-04-58-hi5.jpg",
- "trainings": 2
- },
- {
- "id": 9503,
- "name": "№9503 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.52066683769227",
- "latitude": "56.785283939105156",
- "address": "Павла Шаманова 7",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-02-04-04-20-gx3.jpg",
- "trainings": 1
- },
- {
- "id": 9504,
- "name": "№9504 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.568172",
- "latitude": "55.719722",
- "address": "Khamovnicheskiy Val ulitsa",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-02-08-04-26-j4j.jpg",
- "trainings": 1
- },
- {
- "id": 9505,
- "name": "№9505 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.394067354500294",
- "latitude": "59.974864035746315",
- "address": "улица Федосеенко, 28",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-02-11-04-35-e07.jpg",
- "trainings": 1
- },
- {
- "id": 9506,
- "name": "№9506 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.7609430551529",
- "latitude": "47.27388731570882",
- "address": "парк Осенний",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-02-20-04-44-8bq.jpg",
- "trainings": 3
- },
- {
- "id": 9507,
- "name": "№9507 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "39.71646398305893",
- "latitude": "47.23724506739833",
- "address": "Текучева",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-02-21-04-19-o2k.jpg",
- "trainings": 5
- },
- {
- "id": 9508,
- "name": "№9508 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.400929786264896",
- "latitude": "59.96050020073206",
- "address": "Свердловская набережная, 38Д",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-03-12-04-57-ocy.jpg",
- "trainings": 1
- },
- {
- "id": 9509,
- "name": "№9509 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.397886149585243",
- "latitude": "59.97501804405175",
- "address": "улица Федосеенко, 31",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-03-19-04-37-q__.jpg",
- "trainings": 0
- },
- {
- "id": 9510,
- "name": "№9510 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.643521428108215",
- "latitude": "55.83961085294962",
- "address": "улица Сельскохозяйственная, 18 корпус 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-04-16-04-50-ojt.jpg",
- "trainings": 0
- },
- {
- "id": 9511,
- "name": "№9511 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.581422",
- "latitude": "55.686542",
- "address": "улица Новочеремушкинская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-04-19-04-29-cvm.jpg",
- "trainings": 2
- },
- {
- "id": 9512,
- "name": "№9512 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.61073541641236",
- "latitude": "56.86688270118708",
- "address": "Космонавтов 11",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-05-08-04-07-jsh.jpg",
- "trainings": 0
- },
- {
- "id": 9513,
- "name": "№9513 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.410543158650402",
- "latitude": "59.96408335246044",
- "address": "Пискарёвский проспект, 9 корпус 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-05-13-04-38-_lp.jpg",
- "trainings": 2
- },
- {
- "id": 9514,
- "name": "№9514 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.362069129943855",
- "latitude": "48.153236361184966",
- "address": "Г.Кировское ",
- "city_id": 7388,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-05-15-04-35-3yu.jpg",
- "trainings": 1
- },
- {
- "id": 9515,
- "name": "№9515 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "27.465101480484012",
- "latitude": "53.943587267921394",
- "address": "Победителей пр. 114",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-05-16-04-32-3jo.jpeg",
- "trainings": 2
- },
- {
- "id": 9516,
- "name": "№9516 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "131.9255177343075",
- "latitude": "43.18785749867768",
- "address": "100 летия Владивостока 178",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-06-13-04-23-6em.jpg",
- "trainings": 1
- },
- {
- "id": 9517,
- "name": "№9517 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.635533385429888",
- "latitude": "50.47315344541113",
- "address": "Шолом-Алейхема, 15",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-06-16-04-53-bnb.jpg",
- "trainings": 0
- },
- {
- "id": 9519,
- "name": "№9519 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.08473944664001",
- "latitude": "54.8688159280201",
- "address": "Российская 21",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-07-13-04-38-pv3.jpg",
- "trainings": 1
- },
- {
- "id": 9520,
- "name": "№9520 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.07977199554445",
- "latitude": "54.8715817464377",
- "address": "Шатурская 9",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-07-13-04-06-qyh.jpg",
- "trainings": 1
- },
- {
- "id": 9521,
- "name": "№9521 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "83.09411913156511",
- "latitude": "54.864168246670374",
- "address": "бульвар Молодёжи 40",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-07-13-04-11-k2h.jpg",
- "trainings": 1
- },
- {
- "id": 9522,
- "name": "№9522 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.362034",
- "latitude": "55.603393",
- "address": "улица Бианки",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-07-18-04-43-r_x.jpg",
- "trainings": 0
- },
- {
- "id": 9523,
- "name": "№9523 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.580680",
- "latitude": "55.606445",
- "address": "улица Красного Маяка 17б",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-07-19-04-10-rde.jpg",
- "trainings": 2
- },
- {
- "id": 9524,
- "name": "№9524 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.413298246247",
- "latitude": "55.915639207206944",
- "address": "ул.Германа Титова ",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-08-00-04-16-rkz.jpg",
- "trainings": 1
- },
- {
- "id": 9525,
- "name": "№9525 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.598418122779556",
- "latitude": "55.7840225326929",
- "address": "Палиха 2а ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-08-14-04-25-ulf.jpg",
- "trainings": 3
- },
- {
- "id": 9526,
- "name": "№9526 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-4.776220575933073",
- "latitude": "37.876836829732945",
- "address": "Córdoba",
- "city_id": 8763,
- "country_id": 10,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-09-00-04-40-z09.jpg",
- "trainings": 0
- },
- {
- "id": 9527,
- "name": "№9527 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.63120603561402",
- "latitude": "56.883507035859885",
- "address": "ул. Бабушкина, д. 2А",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-11-15-04-51-ujb.png",
- "trainings": 0
- },
- {
- "id": 9528,
- "name": "№9528 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.615092620253566",
- "latitude": "53.86048224312601",
- "address": "проспект Рокоссовского, 93",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-09-14-04-05-g6k.jpg",
- "trainings": 1
- },
- {
- "id": 9529,
- "name": "№9529 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.25132620334626",
- "latitude": "49.972892263595114",
- "address": "ул. Чугуевская 35а",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-09-18-04-31-udf.jpg",
- "trainings": 1
- },
- {
- "id": 9530,
- "name": "№9530 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.25784397125245",
- "latitude": "49.97466490531722",
- "address": "Гагарина 49а",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-09-18-04-36-f72.jpg",
- "trainings": 0
- },
- {
- "id": 9531,
- "name": "№9531 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.93037831783296",
- "latitude": "55.04660930277116",
- "address": "Семьи Шамшиных, 90/5",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-16-08-04-29-9jg.jpg",
- "trainings": 1
- },
- {
- "id": 9532,
- "name": "№9532 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.82400727272035",
- "latitude": "54.98467694397337",
- "address": "Фасадная, 17/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-11-08-04-44-wqq.jpeg",
- "trainings": 1
- },
- {
- "id": 9533,
- "name": "№9533 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "56.79570615291596",
- "latitude": "59.67935250065654",
- "address": "Ул. Сильвинитовая 22",
- "city_id": 8063,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-11-18-04-11-rct.jpeg",
- "trainings": 0
- },
- {
- "id": 9534,
- "name": "№9534 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.81356275081636",
- "latitude": "54.985469541455174",
- "address": "Спортивная, 2",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-12-15-04-18-ocb.jpg",
- "trainings": 1
- },
- {
- "id": 9535,
- "name": "№9535 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.666411399841316",
- "latitude": "55.704821626057836",
- "address": "ул Сайкина 10 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-12-16-04-46-isz.jpg",
- "trainings": 0
- },
- {
- "id": 9536,
- "name": "№9536 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.666196823120124",
- "latitude": "55.70368510578037",
- "address": "ул Трофимова 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-12-16-04-27-xpm.jpg",
- "trainings": 0
- },
- {
- "id": 9537,
- "name": "№9537 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.200878",
- "latitude": "31.733587",
- "address": "Mevo Hatzari Street",
- "city_id": 690,
- "country_id": 9,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-12-17-04-30-5bd.jpg",
- "trainings": 0
- },
- {
- "id": 9538,
- "name": "№9538 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.25011920928956",
- "latitude": "49.972412003759054",
- "address": "ул. Чугуевская 35а",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-12-18-04-58-zvw.jpg",
- "trainings": 1
- },
- {
- "id": 9539,
- "name": "№9539 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.79223650693895",
- "latitude": "54.98281312395499",
- "address": "Спортивная, 23",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-13-08-04-14-qop.jpg",
- "trainings": 1
- },
- {
- "id": 9540,
- "name": "№9540 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.79247522354127",
- "latitude": "54.98144329189347",
- "address": "Спортивная, 23",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-13-08-04-27-d2e.jpg",
- "trainings": 0
- },
- {
- "id": 9541,
- "name": "№9541 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.862527265475364",
- "latitude": "55.91017303303241",
- "address": "Адасько, 4",
- "city_id": 47,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-13-10-04-58-f-3.jpg",
- "trainings": 1
- },
- {
- "id": 9542,
- "name": "№9542 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.672478",
- "latitude": "55.703800",
- "address": "улица Трофимова",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-13-12-04-00-gin.jpg",
- "trainings": 1
- },
- {
- "id": 9543,
- "name": "№9543 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.60583596754441",
- "latitude": "50.48292453907702",
- "address": "Курнатовского 4",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-13-16-04-31-cik.jpg",
- "trainings": 0
- },
- {
- "id": 9544,
- "name": "№9544 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.51251563456178",
- "latitude": "48.699272224800076",
- "address": "Степана разина",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-13-21-04-25-gwk.jpg",
- "trainings": 0
- },
- {
- "id": 9545,
- "name": "№9545 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.55651727318764",
- "latitude": "55.71140414109063",
- "address": "Лужнецкая набережная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-13-22-04-48-xcr.jpg",
- "trainings": 1
- },
- {
- "id": 9546,
- "name": "№9546 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.82053649425508",
- "latitude": "54.985900461673985",
- "address": "Фасадная, 19",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-14-11-04-10-8bu.jpg",
- "trainings": 0
- },
- {
- "id": 9547,
- "name": "№9547 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.42855545133353",
- "latitude": "55.72858689575705",
- "address": "улица Ивана Франко, 26 строение 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-14-14-04-09--oh.jpg",
- "trainings": 0
- },
- {
- "id": 9548,
- "name": "№9548 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "65.5599367618561",
- "latitude": "57.16996203550151",
- "address": "Эрвье 30 к4",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-14-15-04-53-qj4.jpg",
- "trainings": 0
- },
- {
- "id": 9549,
- "name": "№9549 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.98497200012208",
- "latitude": "48.08379520218479",
- "address": "Бажанова Трояновского 65",
- "city_id": 804,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-14-22-04-43-9wg.jpg",
- "trainings": 0
- },
- {
- "id": 9550,
- "name": "№9550 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.982568740844734",
- "latitude": "48.08508172080028",
- "address": "Бажанова Ярошенко 13/43",
- "city_id": 804,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-14-22-04-52-loq.jpg",
- "trainings": 0
- },
- {
- "id": 9551,
- "name": "№9551 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.83939242362976",
- "latitude": "55.05111301181898",
- "address": "Парковая, 88",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-15-11-04-43-xog.jpg",
- "trainings": 0
- },
- {
- "id": 9552,
- "name": "№9552 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "82.89385631575927",
- "latitude": "54.978445573758705",
- "address": "Сибиряков-Гвардейцев 24",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-15-12-04-54-5ll.jpg",
- "trainings": 1
- },
- {
- "id": 9553,
- "name": "№9553 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.304360203444954",
- "latitude": "59.911222052192024",
- "address": "12-я Красноармейская улица, 10",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-15-15-04-51--gj.jpg",
- "trainings": 0
- },
- {
- "id": 9554,
- "name": "№9554 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.91911840438844",
- "latitude": "55.03927259673878",
- "address": "красный проспект, 62",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-16-09-04-39--us.jpg",
- "trainings": 1
- },
- {
- "id": 9555,
- "name": "№9555 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.98282623291016",
- "latitude": "48.083573014652885",
- "address": "Бажанова Руднева 14",
- "city_id": 804,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-16-14-04-56-adr.jpg",
- "trainings": 0
- },
- {
- "id": 9556,
- "name": "№9556 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.95595049858094",
- "latitude": "48.09087603112368",
- "address": "кв-л Химик 10",
- "city_id": 804,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-16-14-04-06-mxc.jpg",
- "trainings": 0
- },
- {
- "id": 9557,
- "name": "№9557 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.314976051449776",
- "latitude": "59.90983025635103",
- "address": "улица Егорова, дом 28а",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-16-17-04-42-kqy.jpg",
- "trainings": 2
- },
- {
- "id": 9558,
- "name": "№9558 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.215584672987454",
- "latitude": "59.76443403307884",
- "address": "улица Попова, 78",
- "city_id": 7436,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-17-16-04-01-5k8.jpg",
- "trainings": 1
- },
- {
- "id": 9560,
- "name": "№9560 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.09581474214792",
- "latitude": "52.97369330981502",
- "address": "улица Железнодорожная, 36",
- "city_id": 93,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-17-19-04-00-xq3.jpg",
- "trainings": 1
- },
- {
- "id": 9561,
- "name": "№9561 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.12374961376191",
- "latitude": "51.70049804574434",
- "address": "урочище Солянка",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-17-20-04-28-rs2.jpg",
- "trainings": 0
- },
- {
- "id": 9562,
- "name": "№9562 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.57375918328762",
- "latitude": "55.768237299320596",
- "address": "улица Климашкина, 12с2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-18-15-04-41-_su.jpg",
- "trainings": 1
- },
- {
- "id": 9563,
- "name": "№9563 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "35.182237",
- "latitude": "31.741083",
- "address": "парк Гило",
- "city_id": 690,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-19-18-04-58-gu0.jpg",
- "trainings": 0
- },
- {
- "id": 9564,
- "name": "№9564 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "83.09678255758627",
- "latitude": "54.869767889794026",
- "address": "Ивановна 36",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-20-11-04-42-55q.jpg",
- "trainings": 0
- },
- {
- "id": 9565,
- "name": "№9565 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.63190746307374",
- "latitude": "55.67691816000455",
- "address": "1й нагатинский проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-20-13-04-47-klj.jpg",
- "trainings": 0
- },
- {
- "id": 9566,
- "name": "№9566 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.453393459320072",
- "latitude": "50.51083392842091",
- "address": "Дубровицкая 12",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-20-16-04-11-ezm.jpg",
- "trainings": 2
- },
- {
- "id": 9567,
- "name": "№9567 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.175022602081306",
- "latitude": "44.863892043315595",
- "address": "Колкозная 28",
- "city_id": 8174,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-21-15-04-29-dbt.png",
- "trainings": 0
- },
- {
- "id": 9568,
- "name": "№9568 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.18466792678833",
- "latitude": "44.50301750514557",
- "address": "Массандровский парк",
- "city_id": 557,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-21-17-04-16-xlc.jpg",
- "trainings": 0
- },
- {
- "id": 9569,
- "name": "№9569 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.52375236173248",
- "latitude": "50.42575670381335",
- "address": "Тютюнника 11/2",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-21-18-04-42-dmr.jpg",
- "trainings": 0
- },
- {
- "id": 9570,
- "name": "№9570 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.45101527044608",
- "latitude": "50.51561857927935",
- "address": "Вышгородская 46а",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-21-19-04-24-2mx.jpg",
- "trainings": 0
- },
- {
- "id": 9571,
- "name": "№9571 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.455571413040165",
- "latitude": "50.5258781088211",
- "address": "Кондратюка 2",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-21-20-04-52-cdj.jpg",
- "trainings": 0
- },
- {
- "id": 9572,
- "name": "№9572 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.45758843421936",
- "latitude": "50.522411960037104",
- "address": "Рокоссовского 3б",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-21-20-04-47-prg.jpg",
- "trainings": 0
- },
- {
- "id": 9573,
- "name": "№9573 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.455439600409594",
- "latitude": "50.522269872131126",
- "address": "Рокоссовского 3в",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-21-20-04-37-rnb.jpg",
- "trainings": 0
- },
- {
- "id": 9574,
- "name": "№9574 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.45367240905762",
- "latitude": "50.51711732142837",
- "address": "Автозаводская 89а",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-21-20-04-00-lfl.jpg",
- "trainings": 0
- },
- {
- "id": 9575,
- "name": "№9575 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "53.282584396754295",
- "latitude": "56.8411616010904",
- "address": "40 Лет Победы, 138А",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-22-08-04-18-bpr.png",
- "trainings": 0
- },
- {
- "id": 9577,
- "name": "№9577 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.82317914068699",
- "latitude": "55.74725838852194",
- "address": "Фрязевская улица, 11 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-23-16-04-56-knr.jpg",
- "trainings": 0
- },
- {
- "id": 9578,
- "name": "№9578 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.55015373229981",
- "latitude": "55.59785932720855",
- "address": "Ясенево",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-23-16-04-53-t3r.jpg",
- "trainings": 1
- },
- {
- "id": 9579,
- "name": "№9579 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "53.23158636019996",
- "latitude": "56.84746518726007",
- "address": "Советская ул.",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-24-07-04-39-cuh.jpg",
- "trainings": 2
- },
- {
- "id": 9580,
- "name": "№9580 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "53.226332139603166",
- "latitude": "56.85318641147686",
- "address": "Зенитная, 3",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-24-08-04-33-x3b.jpg",
- "trainings": 1
- },
- {
- "id": 9581,
- "name": "№9581 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "53.22721032185716",
- "latitude": "56.85376396239727",
- "address": "Зенитная, 5А",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-24-08-04-02-1d6.jpg",
- "trainings": 0
- },
- {
- "id": 9582,
- "name": "№9582 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.57254488780746",
- "latitude": "55.6058817740335",
- "address": "Чертаново центральное, ул. Красного маяка, ск кислород",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-24-17-04-10-7zd.jpg",
- "trainings": 2
- },
- {
- "id": 9583,
- "name": "№9583 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.349865329415486",
- "latitude": "55.59845645279855",
- "address": "Московский, проектируемый пр-д 5259",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-25-11-04-33-g_a.jpg",
- "trainings": 2
- },
- {
- "id": 9584,
- "name": "№9584 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.630437",
- "latitude": "55.717208",
- "address": "Павловский 2-й переулок дом 20",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-25-12-04-21-gmp.jpg",
- "trainings": 0
- },
- {
- "id": 9585,
- "name": "№9585 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.5673396512866",
- "latitude": "55.768897606255024",
- "address": "улица Климашкина, 22 строение 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-25-15-04-44-x6i.jpg",
- "trainings": 0
- },
- {
- "id": 9586,
- "name": "№9586 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "52.24756479241424",
- "latitude": "52.80603683967221",
- "address": "Шевченко 81",
- "city_id": 7930,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-25-17-04-46-mzz.jpg",
- "trainings": 1
- },
- {
- "id": 9587,
- "name": "№9587 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.9300081729889",
- "latitude": "55.05349142960688",
- "address": "Кропоткина, 118/6",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-26-08-04-02-j5r.jpg",
- "trainings": 0
- },
- {
- "id": 9588,
- "name": "№9588 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.453103840172847",
- "latitude": "50.506808663998",
- "address": "Макеевская 5",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-26-13-04-04-dwp.jpg",
- "trainings": 0
- },
- {
- "id": 9589,
- "name": "№9589 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.73607125456151",
- "latitude": "55.68195931973552",
- "address": "Ул.Люблинская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-26-19-04-43-tga.jpg",
- "trainings": 2
- },
- {
- "id": 9590,
- "name": "№9590 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.794964984059334",
- "latitude": "55.76084962417066",
- "address": "улица Новогиреевская улица ,д. 7с2, 7 строение 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-26-20-04-01--4n.jpg",
- "trainings": 1
- },
- {
- "id": 9591,
- "name": "№9591 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "28.623558282852176",
- "latitude": "59.3793487626998",
- "address": "Крикковское шоссе 2",
- "city_id": 53,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-26-23-04-22-lnc.jpeg",
- "trainings": 1
- },
- {
- "id": 9592,
- "name": "№9592 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.697950180669075",
- "latitude": "55.89126450818159",
- "address": "Кострово, Центральная, д. 72",
- "city_id": 47,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-27-14-04-37-ee8.jpg",
- "trainings": 1
- },
- {
- "id": 9593,
- "name": "№9593 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "53.4296464920044",
- "latitude": "56.88920410143565",
- "address": "деревня Якшур",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-27-19-04-08-cky.jpg",
- "trainings": 1
- },
- {
- "id": 9594,
- "name": "№9594 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.80955016613008",
- "latitude": "54.99083478397798",
- "address": "Невельского, 67",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-28-08-04-17-dyg.jpg",
- "trainings": 0
- },
- {
- "id": 9595,
- "name": "№9595 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "52.276468276803804",
- "latitude": "52.789447774813326",
- "address": "Ул. Серго",
- "city_id": 7930,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-28-10-04-55-p9p.jpg",
- "trainings": 0
- },
- {
- "id": 9596,
- "name": "№9596 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.644388",
- "latitude": "55.854169",
- "address": "улица Седова",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-28-14-04-33-r21.jpg",
- "trainings": 1
- },
- {
- "id": 9597,
- "name": "№9597 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.646737",
- "latitude": "55.854297",
- "address": "Снежная улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-28-14-04-02-inf.jpg",
- "trainings": 1
- },
- {
- "id": 9598,
- "name": "№9598 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "13.991217613220217",
- "latitude": "51.508091390469076",
- "address": "Зенфтенберг, 01968, Германия ",
- "city_id": 8765,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-28-16-04-54-xf5.jpeg",
- "trainings": 0
- },
- {
- "id": 9599,
- "name": "№9599 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.526660680770878",
- "latitude": "50.42595700867397",
- "address": "Летняя 4",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-28-19-04-15-s51.jpg",
- "trainings": 0
- },
- {
- "id": 9600,
- "name": "№9600 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.53523302078247",
- "latitude": "50.4296409690015",
- "address": "Леси Украинки 24",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-28-19-04-01-ihm.jpg",
- "trainings": 0
- },
- {
- "id": 9601,
- "name": "№9601 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.541856771960745",
- "latitude": "50.42922579224058",
- "address": "Генерала алмазов 9",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-28-19-04-58-fe9.jpg",
- "trainings": 0
- },
- {
- "id": 9602,
- "name": "№9602 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.959182560443885",
- "latitude": "48.08820650109503",
- "address": "ОШ № 47",
- "city_id": 804,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-29-13-04-59-naz.jpg",
- "trainings": 0
- },
- {
- "id": 9603,
- "name": "№9603 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.96026885509492",
- "latitude": "48.08376346251092",
- "address": "Комсомольский 22",
- "city_id": 804,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-29-13-04-56-rgq.jpg",
- "trainings": 0
- },
- {
- "id": 9604,
- "name": "№9604 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.95990255222132",
- "latitude": "48.083373073730336",
- "address": "Комсомольский 19",
- "city_id": 804,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-29-13-04-50-tz5.jpg",
- "trainings": 0
- },
- {
- "id": 9605,
- "name": "№9605 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.99761456889055",
- "latitude": "48.015293815415575",
- "address": "Украинская 5",
- "city_id": 804,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-29-13-04-24--p5.jpg",
- "trainings": 0
- },
- {
- "id": 9606,
- "name": "№9606 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "82.81360030174255",
- "latitude": "54.9904248446773",
- "address": "Невельского, 53/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-29-17-04-51-31m.jpg",
- "trainings": 1
- },
- {
- "id": 9607,
- "name": "№9607 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.77900365287426",
- "latitude": "55.65267575688974",
- "address": "Парк имени 850-летия Москвы",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-29-22-04-48-o5h.jpg",
- "trainings": 2
- },
- {
- "id": 9608,
- "name": "№9608 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.78426401938245",
- "latitude": "55.65007033077636",
- "address": "Марьино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-29-22-04-10-9zx.jpg",
- "trainings": 2
- },
- {
- "id": 9609,
- "name": "№9609 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.77821234329508",
- "latitude": "55.65121930648055",
- "address": "Парк имени 850-летия Москвы",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-29-22-04-20-exv.jpg",
- "trainings": 2
- },
- {
- "id": 9610,
- "name": "№9610 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.59430289268494",
- "latitude": "55.66758926122558",
- "address": "Школа №517",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-30-08-04-18-npt.jpg",
- "trainings": 1
- },
- {
- "id": 9611,
- "name": "№9611 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.57671159505844",
- "latitude": "59.05159254803772",
- "address": "Клубный переулок, 1",
- "city_id": 8492,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-30-17-04-43-lf2.jpg",
- "trainings": 0
- },
- {
- "id": 9612,
- "name": "№9612 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.63581812381745",
- "latitude": "55.75534219263655",
- "address": "Большой Спасоглинищевский переулок д.9/1 с.5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-30-18-04-56-a00.jpg",
- "trainings": 1
- },
- {
- "id": 9613,
- "name": "№9613 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "13.98714065551758",
- "latitude": "51.498598091381744",
- "address": "Зенфтенберг, Дорфстрассе,01968, Германия ",
- "city_id": 8765,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/04/2019-04-30-21-04-24-abu.jpeg",
- "trainings": 0
- },
- {
- "id": 9614,
- "name": "№9614 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.51524877548218",
- "latitude": "56.78724289519723",
- "address": "Павла Шаманова 17",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-01-06-05-05-c8v.jpg",
- "trainings": 3
- },
- {
- "id": 9615,
- "name": "№9615 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.57321667671204",
- "latitude": "56.8396128803973",
- "address": "верх-исетский бульвар 18",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-01-12-05-30-euj.jpg",
- "trainings": 2
- },
- {
- "id": 9616,
- "name": "№9616 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.606678269803524",
- "latitude": "55.87100976619051",
- "address": "улица Бестужевых, 21А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-01-18-05-11-nhp.jpg",
- "trainings": 0
- },
- {
- "id": 9617,
- "name": "№9617 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.60639160871506",
- "latitude": "55.870350249314924",
- "address": "улица Бестужевых, 12",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-01-18-05-49-cxv.jpg",
- "trainings": 0
- },
- {
- "id": 9618,
- "name": "№9618 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "44.50908280247138",
- "latitude": "48.70539202865809",
- "address": "ул. Краснознаменская 11",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-02-09-05-14-knq.jpg",
- "trainings": 0
- },
- {
- "id": 9619,
- "name": "№9619 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "14.026950001716616",
- "latitude": "51.511887488651574",
- "address": "Улица Бухвалдер 52, Senftenberg Германия",
- "city_id": 8765,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-02-17-05-21-wjg.jpeg",
- "trainings": 0
- },
- {
- "id": 9620,
- "name": "№9620 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "23.313243091106415",
- "latitude": "42.694882807987305",
- "address": "ulitsa \"Ivaylo\", 31",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-02-19-05-02-prs.jpg",
- "trainings": 0
- },
- {
- "id": 9621,
- "name": "№9621 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "80.24565831034705",
- "latitude": "50.42688503006758",
- "address": "Жамакаево",
- "city_id": 419,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-03-13-05-02-p6u.jpg",
- "trainings": 1
- },
- {
- "id": 9623,
- "name": "№9623 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "132.4045014381409",
- "latitude": "42.97518625642591",
- "address": "Клубная улица",
- "city_id": 8295,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-04-05-05-48-8sr.jpeg",
- "trainings": 1
- },
- {
- "id": 9624,
- "name": "№9624 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "55.828035534414084",
- "latitude": "54.71162207818033",
- "address": "Во дворе дома по ул.Ухтомского-26",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-15-06-09-13-ivh.jpg",
- "trainings": 0
- },
- {
- "id": 9625,
- "name": "№9625 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.8280520439148",
- "latitude": "55.91002396517687",
- "address": "ул.Пионерская д.30 к.10",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-04-17-05-03-yxs.jpg",
- "trainings": 1
- },
- {
- "id": 9626,
- "name": "№9626 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.418897904455665",
- "latitude": "50.4794974400773",
- "address": "вулиця Володимира Сальського, 43Б",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-09-05-10-he5.jpg",
- "trainings": 1
- },
- {
- "id": 9627,
- "name": "№9627 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.813680984079845",
- "latitude": "52.86206388198648",
- "address": "улица Пушкина, 34",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-10-05-34-npu.jpg",
- "trainings": 0
- },
- {
- "id": 9629,
- "name": "№9629 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "55.17555534839631",
- "latitude": "51.810137122446896",
- "address": "Гаранькина 25",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-12-05-05-ntg.jpg",
- "trainings": 1
- },
- {
- "id": 9630,
- "name": "№9630 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.59530377388001",
- "latitude": "50.447682734167756",
- "address": "улица Флоренции 12 А",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-13-05-46-0ax.jpg",
- "trainings": 0
- },
- {
- "id": 9631,
- "name": "№9631 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.497219748795033",
- "latitude": "59.91204499967333",
- "address": "Ulitsa Dybenko, 38",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-14-05-22-zab.jpg",
- "trainings": 1
- },
- {
- "id": 9632,
- "name": "№9632 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.06671764463682",
- "latitude": "44.99995428932109",
- "address": "Автолюбителей 1/3 к1",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-15-05-50-o3h.jpg",
- "trainings": 0
- },
- {
- "id": 9633,
- "name": "№9633 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.82584726810456",
- "latitude": "55.914329355974324",
- "address": "ул.Октябрьский бульвар, 10 , Вымпел \"городки\" третья точка",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-16-05-33-gt5.jpg",
- "trainings": 1
- },
- {
- "id": 9634,
- "name": "№9634 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.59313543140888",
- "latitude": "59.049830186572265",
- "address": "Уральская улица, 10",
- "city_id": 8492,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-19-05-08-5gt.jpg",
- "trainings": 0
- },
- {
- "id": 9635,
- "name": "№9635 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "56.8066817522049",
- "latitude": "59.67661984975879",
- "address": "Цифриновича, 31",
- "city_id": 8063,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-21-05-48-yiu.jpeg",
- "trainings": 0
- },
- {
- "id": 9636,
- "name": "№9636 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "56.80347383022309",
- "latitude": "59.676996313414435",
- "address": "Школа номер7",
- "city_id": 8063,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-21-05-20-5tn.jpeg",
- "trainings": 0
- },
- {
- "id": 9637,
- "name": "№9637 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "56.747195720672615",
- "latitude": "59.63667444323219",
- "address": "20 Лет Победы, 191",
- "city_id": 8063,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-21-05-00-x-2.jpeg",
- "trainings": 0
- },
- {
- "id": 9638,
- "name": "№9638 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "56.79629623889924",
- "latitude": "59.673903227660176",
- "address": "ФОЦ",
- "city_id": 8063,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-21-05-48-y_g.jpeg",
- "trainings": 0
- },
- {
- "id": 9639,
- "name": "№9639 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "56.77897453308106",
- "latitude": "59.65084234939429",
- "address": "Металлург",
- "city_id": 8063,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-22-05-09-rh4.jpeg",
- "trainings": 0
- },
- {
- "id": 9640,
- "name": "№9640 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.76694214344025",
- "latitude": "59.64528000420514",
- "address": "Школа номер 4",
- "city_id": 8063,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-22-05-25-vkq.jpeg",
- "trainings": 0
- },
- {
- "id": 9641,
- "name": "№9641 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "56.688766479492195",
- "latitude": "59.70192287513824",
- "address": "Школа 16",
- "city_id": 8063,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-05-22-05-09-ks-.jpeg",
- "trainings": 0
- },
- {
- "id": 9642,
- "name": "№9642 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.827075",
- "latitude": "55.715272",
- "address": "улица Косинская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-06-08-05-45-iul.jpg",
- "trainings": 1
- },
- {
- "id": 9643,
- "name": "№9643 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.817017197608955",
- "latitude": "53.451785816435",
- "address": "Гагарина",
- "city_id": 8147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-06-11-05-56-3v5.jpg",
- "trainings": 0
- },
- {
- "id": 9644,
- "name": "№9644 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "27.49723702669144",
- "latitude": "52.789603723445055",
- "address": "Солигорск",
- "city_id": 558,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-06-12-05-38-mfx.jpg",
- "trainings": 2
- },
- {
- "id": 9645,
- "name": "№9645 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.81634932756425",
- "latitude": "53.45845542051821",
- "address": "Лермонтова",
- "city_id": 8147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-06-20-05-20-sot.jpg",
- "trainings": 1
- },
- {
- "id": 9646,
- "name": "№9646 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.834182783961296",
- "latitude": "52.853556421229264",
- "address": "набережная улица, 44",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-06-20-05-15-3el.jpg",
- "trainings": 0
- },
- {
- "id": 9647,
- "name": "№9647 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.96145285665989",
- "latitude": "57.817900724657385",
- "address": "улица Строителей, 12",
- "city_id": 8613,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-06-20-05-31-rpx.jpg",
- "trainings": 2
- },
- {
- "id": 9648,
- "name": "№9648 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.8088954",
- "latitude": "53.4539085",
- "address": "Московская",
- "city_id": 8147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-06-20-05-32-atg.jpg",
- "trainings": 0
- },
- {
- "id": 9649,
- "name": "№9649 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "25.923344604671",
- "latitude": "48.273556119941226",
- "address": "вулиця Павла Каспрука, 14",
- "city_id": 553,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-06-23-05-19-aj3.jpg",
- "trainings": 1
- },
- {
- "id": 9650,
- "name": "№9650 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.586950",
- "latitude": "56.852658",
- "address": "Гражданская 6 Школа 208",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-07-16-05-31-9lh.jpg",
- "trainings": 2
- },
- {
- "id": 9651,
- "name": "№9651 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.558788",
- "latitude": "56.852146",
- "address": "Бебеля 122 а Школа 29",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-07-16-05-30-gt5.jpg",
- "trainings": 0
- },
- {
- "id": 9652,
- "name": "№9652 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.60772869852372",
- "latitude": "50.50593569250092",
- "address": "Маяковского, 20б",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-07-16-05-37-rwv.jpg",
- "trainings": 0
- },
- {
- "id": 9653,
- "name": "№9653 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "55.168898105621345",
- "latitude": "51.81846507338099",
- "address": "ул.Диагностики д.17",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-08-03-05-46-tg8.jpg",
- "trainings": 1
- },
- {
- "id": 9654,
- "name": "№9654 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "43.980664014816284",
- "latitude": "56.29578551037996",
- "address": "проспект Гагарина, 25А",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-08-04-05-38-scr.jpg",
- "trainings": 1
- },
- {
- "id": 9655,
- "name": "№9655 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.376478433609012",
- "latitude": "59.944829303966166",
- "address": "кирочная 50",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-08-04-05-16-f_x.jpg",
- "trainings": 2
- },
- {
- "id": 9656,
- "name": "№9656 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "69.03901666402817",
- "latitude": "61.008717266984775",
- "address": "улица Чкалова, 64",
- "city_id": 640,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-08-10-05-44-pce.jpg",
- "trainings": 0
- },
- {
- "id": 9657,
- "name": "№9657 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.542364",
- "latitude": "56.819441",
- "address": "Репина 86",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-08-11-05-42-zlo.jpg",
- "trainings": 0
- },
- {
- "id": 9658,
- "name": "№9658 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.825267672538764",
- "latitude": "53.46376831373805",
- "address": "Механизаторов 3",
- "city_id": 8147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-08-12-05-39-fge.jpg",
- "trainings": 0
- },
- {
- "id": 9659,
- "name": "№9659 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "60.633194",
- "latitude": "56.843124",
- "address": "Проспект Ленина 85",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-08-16-05-35-wxo.jpg",
- "trainings": 4
- },
- {
- "id": 9660,
- "name": "№9660 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.8194928765297",
- "latitude": "53.44536277715769",
- "address": "Общежитие Строительного колледжа",
- "city_id": 8147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-09-09-05-02-fkd.jpg",
- "trainings": 0
- },
- {
- "id": 9661,
- "name": "№9661 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "49.53317918417563",
- "latitude": "53.41367584842814",
- "address": "Пролетарская ул., 25 корпус 1",
- "city_id": 8102,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-09-13-05-24-dza.jpg",
- "trainings": 0
- },
- {
- "id": 9662,
- "name": "№9662 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "49.54217935365879",
- "latitude": "53.402227718186204",
- "address": "В-3, Радиозаводская, 12",
- "city_id": 8102,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-09-13-05-54-pip.jpg",
- "trainings": 0
- },
- {
- "id": 9663,
- "name": "№9663 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.54208874702454",
- "latitude": "50.42922406023014",
- "address": "Старонаводницкая",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-10-11-05-53-hae.jpeg",
- "trainings": 0
- },
- {
- "id": 9664,
- "name": "№9664 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.81831654758026",
- "latitude": "59.213124630135326",
- "address": "ГПЗ-23",
- "city_id": 19,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-10-12-05-01--f1.jpg",
- "trainings": 1
- },
- {
- "id": 9665,
- "name": "№9665 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "52.28109700295797",
- "latitude": "52.79025415976711",
- "address": "Ул. Серго",
- "city_id": 7930,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-10-20-05-09-hqc.jpg",
- "trainings": 0
- },
- {
- "id": 9666,
- "name": "№9666 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.79580384492874",
- "latitude": "55.743388166412124",
- "address": "Перовская улица, 64",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-11-18-05-28-o5a.jpg",
- "trainings": 3
- },
- {
- "id": 9667,
- "name": "№9667 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.706505",
- "latitude": "43.641242",
- "address": "Сочи, Теневой переулок, 32 ",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-12-19-05-54-awn.jpg",
- "trainings": 1
- },
- {
- "id": 9668,
- "name": "№9668 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.958467558026314",
- "latitude": "57.81787286740723",
- "address": "Профсоюзная улица, 12",
- "city_id": 8613,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-12-22-05-13-590.jpg",
- "trainings": 0
- },
- {
- "id": 9669,
- "name": "№9669 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.960153996944427",
- "latitude": "57.820507782288324",
- "address": "Профсоюзная улица, 2/8",
- "city_id": 8613,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-12-22-05-22-wzz.jpg",
- "trainings": 0
- },
- {
- "id": 9670,
- "name": "№9670 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "29.95606698095798",
- "latitude": "57.82880982601663",
- "address": "улица Петрова, 55",
- "city_id": 8613,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-12-22-05-58-wrf.jpg",
- "trainings": 2
- },
- {
- "id": 9671,
- "name": "№9671 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "13.69325637817383",
- "latitude": "51.6323865638745",
- "address": "Финстервалде, Форстштрассе",
- "city_id": 8766,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-13-09-05-48-dhm.jpeg",
- "trainings": 0
- },
- {
- "id": 9673,
- "name": "№9673 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.4646789",
- "latitude": "55.6740481",
- "address": "Олимпийская деревня ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-13-15-05-55-in5.jpeg",
- "trainings": 0
- },
- {
- "id": 9674,
- "name": "№9674 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.648669",
- "latitude": "55.847517",
- "address": "Серебрякова проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-14-07-05-41-h6f.jpg",
- "trainings": 1
- },
- {
- "id": 9675,
- "name": "№9675 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "26.578482538461685",
- "latitude": "48.682887889573735",
- "address": "Хмельницька область",
- "city_id": 501,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-14-15-05-46-dha.jpg",
- "trainings": 0
- },
- {
- "id": 9676,
- "name": "№9676 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "121.0647660119139",
- "latitude": "14.657872170903277",
- "address": "Ylanan street",
- "city_id": 8767,
- "country_id": 55,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-15-12-05-56-4dh.jpg",
- "trainings": 0
- },
- {
- "id": 9678,
- "name": "№9678 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.672424241900444",
- "latitude": "55.814858654837394",
- "address": "5-й Лучевой просек, 12А строение 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-18-07-05-57-cd7.jpg",
- "trainings": 1
- },
- {
- "id": 9679,
- "name": "№9679 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.66542166471481",
- "latitude": "55.8106471648352",
- "address": "4-й Лучевой просек",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-18-08-05-30-ypf.jpg",
- "trainings": 2
- },
- {
- "id": 9680,
- "name": "№9680 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.518264287533285",
- "latitude": "55.713571120746316",
- "address": "Университетский проспект, д. 23, корпус 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-18-10-05-15-svz.jpg",
- "trainings": 0
- },
- {
- "id": 9681,
- "name": "№9681 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.611029148101814",
- "latitude": "55.79886877578227",
- "address": "улица Октябрьская 103к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-19-18-05-17-hc-.png",
- "trainings": 1
- },
- {
- "id": 9682,
- "name": "№9682 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.314472",
- "latitude": "55.749642",
- "address": "Рублёво-Успенское шоссе",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-19-19-05-27-tmb.jpg",
- "trainings": 0
- },
- {
- "id": 9683,
- "name": "№9683 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.705655470490456",
- "latitude": "55.81496810417148",
- "address": "Наримановская улица, 22, корп. 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-20-06-05-34-lxx.jpg",
- "trainings": 1
- },
- {
- "id": 9684,
- "name": "№9684 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.649784773922878",
- "latitude": "50.41230724089191",
- "address": "Вербицкого 6а",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-21-02-05-06-ttt.jpg",
- "trainings": 0
- },
- {
- "id": 9685,
- "name": "№9685 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.253905",
- "latitude": "59.852845",
- "address": "Ленинский проспект",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-22-16-05-34-zwi.jpg",
- "trainings": 2
- },
- {
- "id": 9686,
- "name": "№9686 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.254467",
- "latitude": "59.856208",
- "address": "улица Зины Портновой",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-22-18-05-02-gtz.jpg",
- "trainings": 1
- },
- {
- "id": 9687,
- "name": "№9687 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.96718004345894",
- "latitude": "57.82312197180341",
- "address": "Коммунистическая улица, 18/1а",
- "city_id": 8613,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-22-21-05-20-mvw.jpg",
- "trainings": 2
- },
- {
- "id": 9688,
- "name": "№9688 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.7175536",
- "latitude": "55.9095081",
- "address": "бульвар Ветеранов",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-23-20-05-28-_pq.jpg",
- "trainings": 1
- },
- {
- "id": 9689,
- "name": "№9689 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "34.41102879374185",
- "latitude": "44.68125026816282",
- "address": "Ленина, 7",
- "city_id": 477,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-25-12-05-01-osj.jpg",
- "trainings": 0
- },
- {
- "id": 9690,
- "name": "№9690 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.609037",
- "latitude": "55.695483",
- "address": "Детский парк на Загородном шоссе",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-25-12-05-06-lis.jpg",
- "trainings": 3
- },
- {
- "id": 9691,
- "name": "№9691 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.519920",
- "latitude": "55.711821",
- "address": "улица Дружбы",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-25-22-05-42-egx.jpg",
- "trainings": 0
- },
- {
- "id": 9692,
- "name": "№9692 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.516902",
- "latitude": "55.715287",
- "address": "Мосфильмовская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-25-22-05-46-ddq.jpg",
- "trainings": 0
- },
- {
- "id": 9693,
- "name": "№9693 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.513017",
- "latitude": "55.708098",
- "address": "улица Дружбы 10/32",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-25-22-05-25-usx.jpg",
- "trainings": 0
- },
- {
- "id": 9694,
- "name": "№9694 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.363646",
- "latitude": "55.598652",
- "address": "Лаптева 8к2 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-26-09-05-42-p9n.jpg",
- "trainings": 3
- },
- {
- "id": 9695,
- "name": "№9695 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.586933",
- "latitude": "50.595299",
- "address": "ул. Садовая 118 а",
- "city_id": 626,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-27-10-05-37-aww.jpg",
- "trainings": 0
- },
- {
- "id": 9696,
- "name": "№9696 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.310795068740847",
- "latitude": "50.279974714834985",
- "address": "Udenhainer Str. 5, 63607 Wächtersbach, Germany",
- "city_id": 8768,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-27-14-05-45-lk3.jpg",
- "trainings": 0
- },
- {
- "id": 9697,
- "name": "№9697 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.202980995178224",
- "latitude": "50.422334282126",
- "address": "Mühlstraße 32, Gedern",
- "city_id": 8769,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-27-15-05-27-vf3.jpg",
- "trainings": 0
- },
- {
- "id": 9698,
- "name": "№9698 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.249383",
- "latitude": "59.850442",
- "address": "улица Зины Портновой",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-27-15-05-29-m1m.jpg",
- "trainings": 2
- },
- {
- "id": 9699,
- "name": "№9699 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.143212392926216",
- "latitude": "51.6806837971528",
- "address": "Курск",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-28-11-05-33-csd.jpg",
- "trainings": 1
- },
- {
- "id": 9700,
- "name": "№9700 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.8063590079546",
- "latitude": "55.76233138343684",
- "address": "улица Металлургов, 56",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-28-16-05-18-vpb.jpg",
- "trainings": 1
- },
- {
- "id": 9701,
- "name": "№9701 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.62395828283876",
- "latitude": "42.83453968476418",
- "address": "5 микрорайон, 4/1",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-28-16-05-55-vbb.jpg",
- "trainings": 0
- },
- {
- "id": 9702,
- "name": "№9702 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.63870922983415",
- "latitude": "42.81427067048174",
- "address": "12 микрорайон, 19",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-29-16-05-46-grr.jpg",
- "trainings": 0
- },
- {
- "id": 9703,
- "name": "№9703 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "74.63474290665617",
- "latitude": "42.816130168270554",
- "address": "12 микрорайон, 8",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-29-17-05-03-e-4.jpg",
- "trainings": 0
- },
- {
- "id": 9704,
- "name": "№9704 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.63392482498185",
- "latitude": "42.81485986329303",
- "address": "12 микрорайон, 27",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-29-17-05-08-fpj.jpg",
- "trainings": 0
- },
- {
- "id": 9705,
- "name": "№9705 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "53.25048365472413",
- "latitude": "56.881502609001146",
- "address": "Ул. 9 января 249",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-29-18-05-06-_kb.jpg",
- "trainings": 1
- },
- {
- "id": 9706,
- "name": "№9706 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.993234150111675",
- "latitude": "45.05817645686465",
- "address": "Краснодар",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-30-05-05-20-fve.jpg",
- "trainings": 5
- },
- {
- "id": 9707,
- "name": "№9707 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.8167986",
- "latitude": "53.4401041",
- "address": "Свободная",
- "city_id": 8147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-30-11-05-59-sks.jpg",
- "trainings": 0
- },
- {
- "id": 9708,
- "name": "№9708 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.82175666093827",
- "latitude": "53.44310545762457",
- "address": "Городской сад имени А.С.Пушкина",
- "city_id": 8147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-30-11-05-00-yfb.jpg",
- "trainings": 0
- },
- {
- "id": 9709,
- "name": "№9709 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.11476857215166",
- "latitude": "51.68661127291047",
- "address": "улица Парк Солянка",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-30-12-05-59-xka.jpg",
- "trainings": 0
- },
- {
- "id": 9710,
- "name": "№9710 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.61387288572224",
- "latitude": "55.77477590383035",
- "address": "ул делегатская 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-30-17-05-35-mmp.jpg",
- "trainings": 0
- },
- {
- "id": 9711,
- "name": "№9711 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.59734986349828",
- "latitude": "55.771696041421976",
- "address": "3я тверская-ямская ул 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-30-17-05-54-upy.jpg",
- "trainings": 0
- },
- {
- "id": 9712,
- "name": "№9712 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.9007765725255",
- "latitude": "51.648967824359936",
- "address": "МКОУ \"Залининска СОШ\"",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-30-20-05-11-hw9.jpg",
- "trainings": 1
- },
- {
- "id": 9713,
- "name": "№9713 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.63676578774862",
- "latitude": "42.81344249989491",
- "address": "12 микрорайон, 57",
- "city_id": 709,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-31-03-05-02-3cm.jpg",
- "trainings": 0
- },
- {
- "id": 9714,
- "name": "№9714 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.55321280295084",
- "latitude": "55.71322238736043",
- "address": "Лужники",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-31-11-05-53-hub.jpg",
- "trainings": 6
- },
- {
- "id": 9715,
- "name": "№9715 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "120.9844332933426",
- "latitude": "14.558439180533508",
- "address": "Malate",
- "city_id": 8767,
- "country_id": 55,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-31-19-05-02-tse.jpg",
- "trainings": 0
- },
- {
- "id": 9716,
- "name": "№9716 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "120.98590314388276",
- "latitude": "14.573153316483086",
- "address": "641 Gen. Malvar St, Malate",
- "city_id": 8767,
- "country_id": 55,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-31-20-05-12-mlz.jpg",
- "trainings": 0
- },
- {
- "id": 9717,
- "name": "№9717 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "120.97982525825502",
- "latitude": "14.575162545344458",
- "address": "Roxas Boulevard",
- "city_id": 8767,
- "country_id": 55,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-01-16-06-17-tvr.jpg",
- "trainings": 0
- },
- {
- "id": 9718,
- "name": "№9718 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "120.98496973514557",
- "latitude": "14.572322622182911",
- "address": "No. 1700, Ground Floor Pearl Garden Hotel, Adriatico Street",
- "city_id": 8767,
- "country_id": 55,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-31-20-05-51-6of.jpg",
- "trainings": 0
- },
- {
- "id": 9719,
- "name": "№9719 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "120.9901785850525",
- "latitude": "14.57302352069725",
- "address": "Taft. Ave",
- "city_id": 8767,
- "country_id": 55,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/05/2019-05-31-20-05-34-g04.jpg",
- "trainings": 0
- },
- {
- "id": 9720,
- "name": "№9720 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.564249",
- "latitude": "55.889468",
- "address": "Moscow, Degunino Vostochnoye",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-01-10-06-21-75j.jpg",
- "trainings": 1
- },
- {
- "id": 9721,
- "name": "№9721 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.876603",
- "latitude": "43.114147",
- "address": "工程巷",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-01-12-06-16-ost.jpg",
- "trainings": 0
- },
- {
- "id": 9722,
- "name": "№9722 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.714837",
- "latitude": "55.9113489",
- "address": "Юбилейная, 6",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-01-12-06-29-jtq.jpg",
- "trainings": 1
- },
- {
- "id": 9723,
- "name": "№9723 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "86.16855025291444",
- "latitude": "55.359063294344026",
- "address": "Ленинградский 14-а",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-01-17-06-46-dcz.jpg",
- "trainings": 0
- },
- {
- "id": 9724,
- "name": "№9724 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.502432",
- "latitude": "55.680508",
- "address": "Москва, Проспект Вернадского",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-01-17-06-17-isz.jpg",
- "trainings": 2
- },
- {
- "id": 9725,
- "name": "№9725 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.742057",
- "latitude": "55.644247",
- "address": "Батайский проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-02-15-06-40-9pf.jpg",
- "trainings": 0
- },
- {
- "id": 9726,
- "name": "№9726 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.17539682984352",
- "latitude": "55.988174237110414",
- "address": "1017",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-02-18-06-36-9xu.jpg",
- "trainings": 0
- },
- {
- "id": 9727,
- "name": "№9727 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "66.60456195473672",
- "latitude": "66.52755847328743",
- "address": "улица Ленина, 58",
- "city_id": 643,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-02-20-06-40-n63.jpg",
- "trainings": 1
- },
- {
- "id": 9728,
- "name": "№9728 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.2883530721476",
- "latitude": "58.00301705",
- "address": "Патриса лумумбы 17",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-03-11-06-08-i1s.jpeg",
- "trainings": 0
- },
- {
- "id": 9729,
- "name": "№9729 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.521781",
- "latitude": "55.717591",
- "address": "Мосфильмовская улица 11",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-03-19-06-05-afv.jpg",
- "trainings": 0
- },
- {
- "id": 9730,
- "name": "№9730 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.7761907600907",
- "latitude": "55.9144484",
- "address": "Мытищи, 2-й первомайский проезд 6",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-03-21-06-51-h2u.jpeg",
- "trainings": 0
- },
- {
- "id": 9732,
- "name": "№9732 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.652494",
- "latitude": "55.625955",
- "address": "Севанская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-03-21-06-38-udc.jpg",
- "trainings": 1
- },
- {
- "id": 9734,
- "name": "№9734 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.13435539562489",
- "latitude": "51.67056190982606",
- "address": "Школа 50",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-04-17-06-31-vlq.jpg",
- "trainings": 0
- },
- {
- "id": 9735,
- "name": "№9735 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.988603",
- "latitude": "56.287083",
- "address": "улица Краснозвёздная, ЖК Зенит",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-05-09-06-08-j8b.jpg",
- "trainings": 1
- },
- {
- "id": 9736,
- "name": "№9736 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.195823609828953",
- "latitude": "59.85660109660946",
- "address": "Ленинский проспект 79 к.3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-30-15-06-09-27l.jpg",
- "trainings": 1
- },
- {
- "id": 9737,
- "name": "№9737 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "53.21302056312561",
- "latitude": "56.81786668016761",
- "address": "Степана Разина, 56",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-06-09-06-00-f6u.jpg",
- "trainings": 0
- },
- {
- "id": 9738,
- "name": "№9738 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "9.66477155685425",
- "latitude": "50.54413456364393",
- "address": "Fulda Sankt-Laurentius-Straße 4",
- "city_id": 8771,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-06-14-06-28-7pg.jpg",
- "trainings": 0
- },
- {
- "id": 9739,
- "name": "№9739 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.643117",
- "latitude": "55.739308",
- "address": "Космодамианская набережная 32/34",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-06-18-06-31-m5j.jpg",
- "trainings": 1
- },
- {
- "id": 9740,
- "name": "№9740 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.076528",
- "latitude": "55.886033",
- "address": "улица Беляева",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-06-20-06-23-quq.jpg",
- "trainings": 1
- },
- {
- "id": 9741,
- "name": "№9741 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.647547",
- "latitude": "55.626981",
- "address": "улица Бехтерева",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-07-05-06-06-pyh.jpg",
- "trainings": 1
- },
- {
- "id": 9742,
- "name": "№9742 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.665455",
- "latitude": "55.742311",
- "address": "Товарищеский переулок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-07-13-06-38-3z6.jpg",
- "trainings": 0
- },
- {
- "id": 9743,
- "name": "№9743 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "72.83631920814514",
- "latitude": "60.760495888799475",
- "address": "улица Су-79, 1",
- "city_id": 674,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-07-16-06-46-wbs.jpg",
- "trainings": 0
- },
- {
- "id": 9745,
- "name": "№9745 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.535453",
- "latitude": "55.728583",
- "address": "улица Пудовкина 6к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-08-19-06-50-4oe.jpg",
- "trainings": 0
- },
- {
- "id": 9746,
- "name": "№9746 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.533128",
- "latitude": "55.728717",
- "address": "улица Пудовкина",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-08-19-06-20-s2c.jpg",
- "trainings": 0
- },
- {
- "id": 9747,
- "name": "№9747 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "20.93996185809374",
- "latitude": "52.173805240015774",
- "address": "Aleja Krakowska, 79",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-08-19-06-11-its.jpg",
- "trainings": 0
- },
- {
- "id": 9748,
- "name": "№9748 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.525037",
- "latitude": "44.372847",
- "address": "Zhukovskogo Street",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-09-09-06-43-evg.jpg",
- "trainings": 1
- },
- {
- "id": 9749,
- "name": "№9749 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "46.039867",
- "latitude": "51.523362",
- "address": "Бабушкин взвоз",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-09-10-06-50-a7j.jpg",
- "trainings": 0
- },
- {
- "id": 9750,
- "name": "№9750 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "45.02004381269217",
- "latitude": "53.14089012576502",
- "address": "улица Терновского, 203",
- "city_id": 99,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-10-12-06-33-dsk.jpg",
- "trainings": 1
- },
- {
- "id": 9751,
- "name": "№9751 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "53.24722751457557",
- "latitude": "56.88689204203467",
- "address": "Воткинское шоссе, 114",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-30-11-06-17-fok.jpg",
- "trainings": 1
- },
- {
- "id": 9752,
- "name": "№9752 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "55.932745",
- "latitude": "53.340722",
- "address": "бульвар Салавата Юлаева",
- "city_id": 8010,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-10-20-06-03-yqh.jpg",
- "trainings": 0
- },
- {
- "id": 9753,
- "name": "№9753 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.529978550464875",
- "latitude": "55.60374225775115",
- "address": "Тарусская ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-11-09-06-02-kbw.jpg",
- "trainings": 0
- },
- {
- "id": 9754,
- "name": "№9754 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.5755553394556",
- "latitude": "50.443590986023544",
- "address": "Броварський проспект",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-11-10-06-06-yej.jpg",
- "trainings": 0
- },
- {
- "id": 9755,
- "name": "№9755 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.12419614195824",
- "latitude": "56.7553791075582",
- "address": "улица Жуковского, 3",
- "city_id": 37,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-11-14-06-59-s7s.jpg",
- "trainings": 0
- },
- {
- "id": 9756,
- "name": "№9756 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "109.0269258990884",
- "latitude": "53.40977287775679",
- "address": "улица Оцимика, 24",
- "city_id": 615,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-11-14-06-37-vjt.jpg",
- "trainings": 1
- },
- {
- "id": 9758,
- "name": "№9758 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "50.08167833089829",
- "latitude": "53.189458502640456",
- "address": "Максима Горького 107",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-11-16-06-14-bv2.jpg",
- "trainings": 1
- },
- {
- "id": 9759,
- "name": "№9759 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.72307501733304",
- "latitude": "53.374171177556214",
- "address": "улица 40 лет Октября, 2А",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-11-19-06-26-xlr.jpg",
- "trainings": 2
- },
- {
- "id": 9760,
- "name": "№9760 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.63785149902105",
- "latitude": "42.560003538419885",
- "address": "Княз Борис І-ви, 93",
- "city_id": 7873,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-11-20-06-52-6rr.jpg",
- "trainings": 0
- },
- {
- "id": 9761,
- "name": "№9761 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.489929758012295",
- "latitude": "55.570419095223066",
- "address": "улица Липовый Парк, 4 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-12-14-06-16-mzl.jpg",
- "trainings": 2
- },
- {
- "id": 9762,
- "name": "№9762 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.823916621066022",
- "latitude": "49.85127915861716",
- "address": "вул.Паркова, 2га школа",
- "city_id": 8760,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-13-06-06-34-q-5.jpg",
- "trainings": 1
- },
- {
- "id": 9763,
- "name": "№9763 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.48517721891403",
- "latitude": "55.57331569676483",
- "address": "улица Бачуринская, 22 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-13-08-06-45-twb.jpg",
- "trainings": 0
- },
- {
- "id": 9764,
- "name": "№9764 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.48753923922777",
- "latitude": "55.57399503367271",
- "address": "Москва",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-13-08-06-27-wgi.jpg",
- "trainings": 0
- },
- {
- "id": 9765,
- "name": "№9765 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.490898706018925",
- "latitude": "55.573132592228234",
- "address": "улица Бачуринская, 21",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-13-08-06-54-z_n.jpg",
- "trainings": 0
- },
- {
- "id": 9766,
- "name": "№9766 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.49411065131426",
- "latitude": "55.57169767515094",
- "address": "улица Липовый Парк, 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-13-08-06-51-vws.jpg",
- "trainings": 1
- },
- {
- "id": 9767,
- "name": "№9767 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.49353934079409",
- "latitude": "55.5685101519529",
- "address": "улица Липовый Парк, 5 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-13-08-06-24-9nv.jpg",
- "trainings": 0
- },
- {
- "id": 9768,
- "name": "№9768 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.4926609173417",
- "latitude": "55.56805384958906",
- "address": "улица Липовый Парк, 5 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-13-08-06-09-5vj.jpg",
- "trainings": 0
- },
- {
- "id": 9769,
- "name": "№9769 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.485663034021854",
- "latitude": "55.56796531835438",
- "address": "улица Липовый Парк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-13-10-06-02-nho.jpg",
- "trainings": 0
- },
- {
- "id": 9770,
- "name": "№9770 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.172031328082085",
- "latitude": "55.99045336052657",
- "address": "корпус 1013Г",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-13-10-06-45-5co.jpg",
- "trainings": 0
- },
- {
- "id": 9773,
- "name": "№9773 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "109.0289496257901",
- "latitude": "53.41569114376096",
- "address": "улица Энгельса, 40",
- "city_id": 615,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-13-15-06-38-zzr.jpg",
- "trainings": 1
- },
- {
- "id": 9774,
- "name": "№9774 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.084255",
- "latitude": "55.551475",
- "address": "Февральская улица",
- "city_id": 8029,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-14-17-06-21-jvo.jpg",
- "trainings": 1
- },
- {
- "id": 9776,
- "name": "№9776 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.48499013483524",
- "latitude": "55.57342620354099",
- "address": "улица Бачуринская, 22",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-14-17-06-40-b56.jpg",
- "trainings": 0
- },
- {
- "id": 9777,
- "name": "№9777 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.483204789459705",
- "latitude": "55.57296635683193",
- "address": "улица Бачуринская, 22к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-14-17-06-48-rpq.jpg",
- "trainings": 0
- },
- {
- "id": 9778,
- "name": "№9778 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.4863463267684",
- "latitude": "55.57234443686787",
- "address": "улица Фитаревская, 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-14-18-06-38-upv.jpg",
- "trainings": 0
- },
- {
- "id": 9779,
- "name": "№9779 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.485533952713006",
- "latitude": "55.57157484229662",
- "address": "улица Фитаревская, 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-14-18-06-39-zwd.jpg",
- "trainings": 0
- },
- {
- "id": 9780,
- "name": "№9780 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.48160149902105",
- "latitude": "55.56991618203073",
- "address": "улица Фитаревская, 12",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-14-18-06-57-0ko.jpg",
- "trainings": 0
- },
- {
- "id": 9783,
- "name": "№9783 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.778337",
- "latitude": "57.693528",
- "address": "улица Панина",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-14-21-06-33-a1z.jpg",
- "trainings": 2
- },
- {
- "id": 9784,
- "name": "№9784 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.780350",
- "latitude": "57.692220",
- "address": "улица Панина",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-14-22-06-09-8d8.jpg",
- "trainings": 2
- },
- {
- "id": 9786,
- "name": "№9786 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.42153920978308",
- "latitude": "60.01617195624275",
- "address": "ул. Софьи Ковалевской, 87 корпус 4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-15-12-06-42-n4m.jpg",
- "trainings": 0
- },
- {
- "id": 9787,
- "name": "№9787 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.331742",
- "latitude": "59.823422",
- "address": "Санкт-Петербург",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-15-20-06-39-gkc.jpg",
- "trainings": 2
- },
- {
- "id": 9788,
- "name": "№9788 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.5204513669014",
- "latitude": "50.499829153773405",
- "address": "Оболонская набережная 19",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-15-20-06-17-ahm.jpg",
- "trainings": 1
- },
- {
- "id": 9789,
- "name": "№9789 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.538941",
- "latitude": "55.645889",
- "address": "профсоюзная, 26 к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-16-21-06-36-snd.jpg",
- "trainings": 1
- },
- {
- "id": 9790,
- "name": "№9790 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.593005",
- "latitude": "55.610558",
- "address": "Чертановская улица, 37",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-16-23-06-52-emv.jpg",
- "trainings": 1
- },
- {
- "id": 9791,
- "name": "№9791 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "43.985050",
- "latitude": "56.288162",
- "address": "Краснозвёздная улица за домом №6",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-17-19-06-10-idx.jpg",
- "trainings": 2
- },
- {
- "id": 9792,
- "name": "№9792 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.270138",
- "latitude": "59.946858",
- "address": "9-я линия В.О. 66",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-18-08-06-45-ac4.jpg",
- "trainings": 1
- },
- {
- "id": 9793,
- "name": "№9793 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "37.91898429393768",
- "latitude": "59.096765086173306",
- "address": "Ленинградская улица, 14а",
- "city_id": 148,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-18-14-06-30-smt.jpg",
- "trainings": 0
- },
- {
- "id": 9794,
- "name": "№9794 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.135489940643314",
- "latitude": "36.83561672574868",
- "address": "sokak 83",
- "city_id": 8772,
- "country_id": 62,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-18-18-06-24-zxb.jpg",
- "trainings": 1
- },
- {
- "id": 9795,
- "name": "№9795 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.792151451547404",
- "latitude": "64.53581006503896",
- "address": "Победы 76",
- "city_id": 7383,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-18-18-06-05-jta.jpg",
- "trainings": 1
- },
- {
- "id": 9796,
- "name": "№9796 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.477653",
- "latitude": "55.156295",
- "address": "весенняя",
- "city_id": 149,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-18-19-06-48-bvb.jpg",
- "trainings": 1
- },
- {
- "id": 9797,
- "name": "№9797 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "62.98151850700379",
- "latitude": "57.691075180908854",
- "address": "улица Советская, 34",
- "city_id": 7914,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-19-16-06-30-gd_.jpg",
- "trainings": 0
- },
- {
- "id": 9798,
- "name": "№9798 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.338659286499027",
- "latitude": "60.01880767620704",
- "address": "Проспект Тореза, 96",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-20-11-06-26-5s3.jpg",
- "trainings": 1
- },
- {
- "id": 9799,
- "name": "№9799 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.827184658319315",
- "latitude": "49.86114838865692",
- "address": "Стадионная",
- "city_id": 8760,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-21-06-06-46-xik.jpg",
- "trainings": 1
- },
- {
- "id": 9800,
- "name": "№9800 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "113.48798632621767",
- "latitude": "52.05825639135921",
- "address": "Средняя школа №9",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-21-06-06-03-v7i.jpg",
- "trainings": 0
- },
- {
- "id": 9802,
- "name": "№9802 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "86.16621673107149",
- "latitude": "55.352351204332265",
- "address": "Октябрьский 85-а",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-21-10-06-11-s9n.jpg",
- "trainings": 0
- },
- {
- "id": 9803,
- "name": "№9803 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "86.1996102333069",
- "latitude": "55.31634999637095",
- "address": "Новая 3-а к3",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-21-10-06-05-x1z.jpg",
- "trainings": 0
- },
- {
- "id": 9804,
- "name": "№9804 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "53.22077214717866",
- "latitude": "56.87292823608672",
- "address": "Удмуртская улица, 261",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-21-12-06-13-woa.jpg",
- "trainings": 0
- },
- {
- "id": 9805,
- "name": "№9805 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "53.2189804315567",
- "latitude": "56.87267611400787",
- "address": "10 лет Октября, 23",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-21-12-06-57-mx_.jpg",
- "trainings": 0
- },
- {
- "id": 9806,
- "name": "№9806 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "53.22123885154724",
- "latitude": "56.870453848201834",
- "address": "Удмуртская улица, 259",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-21-12-06-52-bk0.jpg",
- "trainings": 0
- },
- {
- "id": 9807,
- "name": "№9807 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "53.220595121383674",
- "latitude": "56.847117949504224",
- "address": "Советская улица, 23",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-21-13-06-55-yrf.jpg",
- "trainings": 0
- },
- {
- "id": 9815,
- "name": "№9815 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "43.952633",
- "latitude": "56.329072",
- "address": "бульвар Мира 17",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-22-13-06-49-kag.jpg",
- "trainings": 0
- },
- {
- "id": 9816,
- "name": "№9816 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.08250522613526",
- "latitude": "55.54986625519777",
- "address": "1-я Заводская улица",
- "city_id": 8029,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-22-19-06-42-4jt.jpg",
- "trainings": 2
- },
- {
- "id": 9817,
- "name": "№9817 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.507266521453865",
- "latitude": "56.82526456423822",
- "address": "ул. Металлургов, д. 87",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-22-22-06-07-bbs.jpg",
- "trainings": 0
- },
- {
- "id": 9819,
- "name": "№9819 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.52643380117207",
- "latitude": "55.60184058635884",
- "address": "Тарусская 21 к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-23-13-06-36-64m.jpg",
- "trainings": 0
- },
- {
- "id": 9820,
- "name": "№9820 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.673997",
- "latitude": "55.752338",
- "address": "Волочаевская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-23-20-06-45-7ql.jpg",
- "trainings": 0
- },
- {
- "id": 9821,
- "name": "№9821 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "8.163678646087648",
- "latitude": "48.9727664738411",
- "address": "Lauterbourg, Rue Saint-Priest Taurion ",
- "city_id": 8773,
- "country_id": 24,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-24-15-06-08-xqe.jpg",
- "trainings": 0
- },
- {
- "id": 9822,
- "name": "№9822 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.17774772644044",
- "latitude": "55.61023247729086",
- "address": "Северная ул",
- "city_id": 7730,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-25-13-06-44-8f5.jpg",
- "trainings": 0
- },
- {
- "id": 9823,
- "name": "№9823 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "73.42681380871001",
- "latitude": "54.97463072280243",
- "address": "Красная звезда",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-25-19-06-10-08e.jpg",
- "trainings": 1
- },
- {
- "id": 9827,
- "name": "№9827 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.634936764836308",
- "latitude": "50.4052962760095",
- "address": "проспект Петра Григоренка, 25Б",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-26-09-06-18-u9v.jpg",
- "trainings": 0
- },
- {
- "id": 9828,
- "name": "№9828 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.628061927855015",
- "latitude": "50.40172389958838",
- "address": "вулиця Княжий Затон, 1/2",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-26-12-06-28-kii.jpg",
- "trainings": 0
- },
- {
- "id": 9829,
- "name": "№9829 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "53.640875816345215",
- "latitude": "63.54975652596328",
- "address": "Зимняя тропа",
- "city_id": 596,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-26-23-06-32-x9g.jpeg",
- "trainings": 1
- },
- {
- "id": 9830,
- "name": "№9830 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "63.75340461730958",
- "latitude": "57.10385522732301",
- "address": "Свердловская обл., Талицкий р-н, пос. Пионерский, ул. Школьная, 1",
- "city_id": 8507,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-28-15-06-39-tio.jpg",
- "trainings": 1
- },
- {
- "id": 9831,
- "name": "№9831 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.94009186327457",
- "latitude": "43.20948686145732",
- "address": "Крайбрежна алея",
- "city_id": 7870,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-28-19-06-39-oib.jpg",
- "trainings": 0
- },
- {
- "id": 9832,
- "name": "№9832 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.24693487443074",
- "latitude": "59.850425849552764",
- "address": "Ленинский проспект, 115, корп. 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-29-01-06-09-p0y.jpg",
- "trainings": 2
- },
- {
- "id": 9833,
- "name": "№9833 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "121.05089843273164",
- "latitude": "14.552161750442215",
- "address": "30th Street",
- "city_id": 8767,
- "country_id": 55,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-29-01-06-54-_ku.jpg",
- "trainings": 0
- },
- {
- "id": 9834,
- "name": "№9834 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "53.29063217459407",
- "latitude": "56.8540844500467",
- "address": "молодежная, 25",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-29-07-06-15-4yr.jpg",
- "trainings": 0
- },
- {
- "id": 9835,
- "name": "№9835 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.297772",
- "latitude": "44.892853",
- "address": "Пляж Высокий Берег. Малая Бухта",
- "city_id": 4,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-29-08-06-40-sjz.jpg",
- "trainings": 1
- },
- {
- "id": 9836,
- "name": "№9836 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "43.8961820485862",
- "latitude": "56.3136985",
- "address": "Московское шоссе 106",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-29-11-06-13-cja.jpg",
- "trainings": 1
- },
- {
- "id": 9837,
- "name": "№9837 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.52267209392813",
- "latitude": "55.59997196519961",
- "address": "Голубинская ул",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-29-17-06-44-4r1.jpg",
- "trainings": 0
- },
- {
- "id": 9838,
- "name": "№9838 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.33828302472829",
- "latitude": "55.647269864979286",
- "address": "Лукинская улица, 16 корпус 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-30-11-06-01-u2q.jpg",
- "trainings": 2
- },
- {
- "id": 9839,
- "name": "№9839 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "86.09824419021608",
- "latitude": "55.33831038334608",
- "address": "Гагарина, 49",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-30-13-06-00--il.jpg",
- "trainings": 1
- },
- {
- "id": 9840,
- "name": "№9840 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "86.17493391036987",
- "latitude": "55.329058963245195",
- "address": " ул. Марковцева, 5",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-30-13-06-58-ci9.jpg",
- "trainings": 0
- },
- {
- "id": 9841,
- "name": "№9841 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.58642792701722",
- "latitude": "55.64968349768627",
- "address": "улица Каховка 11к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-30-14-06-25-jwd.jpg",
- "trainings": 0
- },
- {
- "id": 9842,
- "name": "№9842 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.05523157864809",
- "latitude": "52.965655037663524",
- "address": "улица Салтыкова-Щедрина, 1",
- "city_id": 93,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-30-15-06-00-rgh.jpg",
- "trainings": 0
- },
- {
- "id": 9843,
- "name": "№9843 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.04279685765505",
- "latitude": "52.9759498551135",
- "address": "улица Полесская, 47",
- "city_id": 93,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/06/2019-06-30-16-06-45-moh.jpg",
- "trainings": 0
- },
- {
- "id": 9844,
- "name": "№9844 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.68411660194397",
- "latitude": "55.32311857346005",
- "address": "улица Октябрьская 19 Турнички на шк№2",
- "city_id": 24,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-01-02-07-51-q6p.jpg",
- "trainings": 1
- },
- {
- "id": 9845,
- "name": "№9845 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.85605430603028",
- "latitude": "55.90971126454308",
- "address": "ст.Металлист, У бассейна",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-01-02-07-08-26l.jpg",
- "trainings": 1
- },
- {
- "id": 9846,
- "name": "№9846 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.263926982879646",
- "latitude": "43.68190140828879",
- "address": "Село Эстосадок",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-01-15-07-16-trt.jpg",
- "trainings": 0
- },
- {
- "id": 9847,
- "name": "№9847 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "59.953461",
- "latitude": "57.914977",
- "address": "улица Серова",
- "city_id": 611,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-02-09-07-17-qzq.jpg",
- "trainings": 0
- },
- {
- "id": 9848,
- "name": "№9848 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "39.049795903265476",
- "latitude": "55.36409566232321",
- "address": "ул. Майора Удачина, д. 7А, в глубине парка \"200-летия Егорьевску\" за парковкой и фонтаном",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-02-10-07-46-xq9.jpg",
- "trainings": 3
- },
- {
- "id": 9849,
- "name": "№9849 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.075782150030136",
- "latitude": "55.46829426143018",
- "address": "с. Шувое, ул. Советская, д. 25, на территории школы",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-02-10-07-50-l59.jpg",
- "trainings": 0
- },
- {
- "id": 9850,
- "name": "№9850 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.15451705455781",
- "latitude": "55.1715980964558",
- "address": "с. Раменки, ул. Новая, парк между школой и КДЦ",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-02-10-07-19-hlu.jpg",
- "trainings": 0
- },
- {
- "id": 9852,
- "name": "№9852 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.402913950383663",
- "latitude": "60.022296067110545",
- "address": "Северный проспект, 65 корпус 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-02-16-07-53-w4v.jpg",
- "trainings": 0
- },
- {
- "id": 9853,
- "name": "№9853 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.06741115450859",
- "latitude": "52.96649790480049",
- "address": "Почтовый переулок",
- "city_id": 93,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-02-18-07-27-pfh.jpg",
- "trainings": 0
- },
- {
- "id": 9854,
- "name": "№9854 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.9002470523119",
- "latitude": "59.12731614071096",
- "address": "бульвар Доменщиков, 41",
- "city_id": 148,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-02-21-07-52-pfl.jpg",
- "trainings": 2
- },
- {
- "id": 9855,
- "name": "№9855 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.11653005331755",
- "latitude": "45.051079960866986",
- "address": "Виноградный переулок, 38",
- "city_id": 4,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-03-17-07-32--p-.jpg",
- "trainings": 0
- },
- {
- "id": 9856,
- "name": "№9856 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.026672",
- "latitude": "60.015483",
- "address": "Зелёный проспект",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-03-22-07-40-2as.jpg",
- "trainings": 1
- },
- {
- "id": 9857,
- "name": "№9857 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.131140381097794",
- "latitude": "45.058075564988684",
- "address": "улица Слесова, 68",
- "city_id": 4,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-04-17-07-34-2xf.jpg",
- "trainings": 0
- },
- {
- "id": 9859,
- "name": "№9859 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.387262",
- "latitude": "59.868470",
- "address": "улица Турку",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-06-14-07-19-bv4.jpg",
- "trainings": 2
- },
- {
- "id": 9860,
- "name": "№9860 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "44.49813958257436",
- "latitude": "48.73739986981954",
- "address": "улица Новодвинская, 34",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-06-15-07-26-5qg.jpg",
- "trainings": 0
- },
- {
- "id": 9863,
- "name": "№9863 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.517725",
- "latitude": "44.356939",
- "address": "Gelendzhik",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-06-22-07-51-syp.jpg",
- "trainings": 1
- },
- {
- "id": 9864,
- "name": "№9864 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.277617551386356",
- "latitude": "51.21164864128972",
- "address": "улица Ленина, 68",
- "city_id": 8465,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-07-15-07-38-fsf.jpg",
- "trainings": 1
- },
- {
- "id": 9865,
- "name": "№9865 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.27779927104711",
- "latitude": "51.20979464998764",
- "address": "улица Жукова, 25",
- "city_id": 8465,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-07-15-07-22-rjr.jpg",
- "trainings": 1
- },
- {
- "id": 9866,
- "name": "№9866 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.27284858375788",
- "latitude": "51.20762529928657",
- "address": "улица Фрунзе, 6-а",
- "city_id": 8465,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-07-16-07-40-4nw.jpg",
- "trainings": 1
- },
- {
- "id": 9867,
- "name": "№9867 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.28658283501864",
- "latitude": "51.20854153055133",
- "address": "улица 8 Марта, 28б",
- "city_id": 8465,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-07-16-07-48-jct.jpg",
- "trainings": 1
- },
- {
- "id": 9868,
- "name": "№9868 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.266807265579704",
- "latitude": "59.98304930575367",
- "address": "Приморский проспект, 65",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-07-18-07-11-wya.jpg",
- "trainings": 1
- },
- {
- "id": 9869,
- "name": "№9869 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.73868206143379",
- "latitude": "43.58164942927378",
- "address": "улица Лысая Гора, 23/1",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-06-07-42-jtp.jpg",
- "trainings": 2
- },
- {
- "id": 9870,
- "name": "№9870 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.07887876033784",
- "latitude": "55.29828978718718",
- "address": "д. Михали, ул. Гагарина, д. 16А, территория школы",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-13-07-40-ehu.jpg",
- "trainings": 0
- },
- {
- "id": 9871,
- "name": "№9871 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.466828",
- "latitude": "55.780033",
- "address": "бульвар Генерала Карбышева",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-14-07-09-rel.jpg",
- "trainings": 1
- },
- {
- "id": 9872,
- "name": "№9872 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.73734799772501",
- "latitude": "43.5778721720264",
- "address": "улица Грибоедова, 22",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-19-07-00-gnd.jpg",
- "trainings": 1
- },
- {
- "id": 9873,
- "name": "№9873 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "41.96203351020814",
- "latitude": "44.6110163954552",
- "address": "Апанасенко 9",
- "city_id": 778,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-19-07-03-esz.jpg",
- "trainings": 0
- },
- {
- "id": 9874,
- "name": "№9874 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.881497",
- "latitude": "56.273333",
- "address": "улица Пермякова",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-20-07-43-x67.jpg",
- "trainings": 0
- },
- {
- "id": 9875,
- "name": "№9875 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.884328",
- "latitude": "56.273888",
- "address": "проспект Бусыгина",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-20-07-37-cnd.jpg",
- "trainings": 0
- },
- {
- "id": 9876,
- "name": "№9876 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.886987",
- "latitude": "56.272153",
- "address": "проспект Бусыгина",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-21-07-32-9vp.jpg",
- "trainings": 0
- },
- {
- "id": 9877,
- "name": "№9877 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.886487",
- "latitude": "56.269675",
- "address": "Львовская улица",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-21-07-06-jbx.jpg",
- "trainings": 0
- },
- {
- "id": 9878,
- "name": "№9878 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.880817",
- "latitude": "56.269553",
- "address": "Львовская улица",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-21-07-08-ypm.jpg",
- "trainings": 0
- },
- {
- "id": 9879,
- "name": "№9879 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.879188",
- "latitude": "56.266280",
- "address": "улица Васильева",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-21-07-52-urc.jpg",
- "trainings": 0
- },
- {
- "id": 9880,
- "name": "№9880 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.875388",
- "latitude": "56.265422",
- "address": "улица Дружаева",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-21-07-18-jff.jpg",
- "trainings": 0
- },
- {
- "id": 9881,
- "name": "№9881 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.871613",
- "latitude": "56.263672",
- "address": "Львовская улица",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-21-07-39-a2q.jpg",
- "trainings": 0
- },
- {
- "id": 9882,
- "name": "№9882 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "43.870155",
- "latitude": "56.262413",
- "address": "северная звезда",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-21-07-52-b3k.jpg",
- "trainings": 0
- },
- {
- "id": 9883,
- "name": "№9883 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.867588",
- "latitude": "56.261908",
- "address": "Львовская улица",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-21-07-13-kwo.jpg",
- "trainings": 0
- },
- {
- "id": 9884,
- "name": "№9884 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.868020",
- "latitude": "56.268250",
- "address": "улица Пермякова",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-08-21-07-55-lxp.jpg",
- "trainings": 0
- },
- {
- "id": 9885,
- "name": "№9885 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.893392",
- "latitude": "56.270322",
- "address": "улица Бурденко",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-09-08-07-53-eab.jpg",
- "trainings": 0
- },
- {
- "id": 9886,
- "name": "№9886 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.72539238631725",
- "latitude": "43.574825322748296",
- "address": "Приморская улица, 11",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-09-10-07-10-_5y.jpg",
- "trainings": 3
- },
- {
- "id": 9887,
- "name": "№9887 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "35.900112",
- "latitude": "56.852650",
- "address": "Tver",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-09-19-07-41-nm8.jpg",
- "trainings": 0
- },
- {
- "id": 9888,
- "name": "№9888 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.86574712397852",
- "latitude": "56.038448742444764",
- "address": "Мартынова 30",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-09-20-07-25-ukw.jpg",
- "trainings": 1
- },
- {
- "id": 9889,
- "name": "№9889 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.73775066435337",
- "latitude": "43.576290958106064",
- "address": "улица Лермонтова, 7",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-10-10-07-11-w2j.jpg",
- "trainings": 1
- },
- {
- "id": 9890,
- "name": "№9890 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.87023717886768",
- "latitude": "56.039043091983",
- "address": "Мартынова 75 а",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-10-16-07-51-1kp.jpg",
- "trainings": 0
- },
- {
- "id": 9891,
- "name": "№9891 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.87329580491135",
- "latitude": "56.04042762439762",
- "address": "Чернышевского,116",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-10-16-07-43-0ko.jpg",
- "trainings": 0
- },
- {
- "id": 9892,
- "name": "№9892 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "92.8700395416449",
- "latitude": "56.02956335",
- "address": "сквер Чернышевского",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-10-17-07-28-9aw.jpg",
- "trainings": 1
- },
- {
- "id": 9893,
- "name": "№9893 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.77269155054762",
- "latitude": "55.09690135588648",
- "address": "Октябрьская 8",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-10-18-07-29-6xc.jpg",
- "trainings": 1
- },
- {
- "id": 9894,
- "name": "№9894 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.847387",
- "latitude": "56.244163",
- "address": "Молодёжный проспект",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-10-18-07-27-mvv.jpg",
- "trainings": 0
- },
- {
- "id": 9895,
- "name": "№9895 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.847503",
- "latitude": "56.245400",
- "address": "проспект Ильича",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-10-18-07-28-p61.jpg",
- "trainings": 0
- },
- {
- "id": 9896,
- "name": "№9896 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.847713",
- "latitude": "56.245705",
- "address": "проспект Ильича",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-10-18-07-23-syd.jpg",
- "trainings": 0
- },
- {
- "id": 9897,
- "name": "№9897 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "8.767540454864504",
- "latitude": "50.23758503491058",
- "address": "August-Buß-Weg, 61184 Karben, Германия",
- "city_id": 8774,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-10-21-07-03-vh-.jpg",
- "trainings": 0
- },
- {
- "id": 9898,
- "name": "№9898 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.849167",
- "latitude": "56.247172",
- "address": "проспект Ильича",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-11-07-07-35-u_o.jpg",
- "trainings": 0
- },
- {
- "id": 9899,
- "name": "№9899 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.848745",
- "latitude": "56.248245",
- "address": "проспект Ильича",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-11-07-07-58-orf.jpg",
- "trainings": 0
- },
- {
- "id": 9900,
- "name": "№9900 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.850662",
- "latitude": "56.252187",
- "address": "улица Краснодонцев",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-11-07-07-36-j3_.jpg",
- "trainings": 0
- },
- {
- "id": 9901,
- "name": "№9901 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.851933",
- "latitude": "56.257228",
- "address": "улица Краснодонцев",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-11-07-07-08-uj_.jpg",
- "trainings": 0
- },
- {
- "id": 9902,
- "name": "№9902 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.851088",
- "latitude": "56.259450",
- "address": "улица Советской Армии",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-11-07-07-26-bct.jpg",
- "trainings": 0
- },
- {
- "id": 9903,
- "name": "№9903 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.851628",
- "latitude": "56.258805",
- "address": "улица Советской Армии",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-11-07-07-06-_uy.jpg",
- "trainings": 0
- },
- {
- "id": 9904,
- "name": "№9904 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.853705",
- "latitude": "56.260697",
- "address": "улица Политбойцов",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-11-07-07-23-sij.jpg",
- "trainings": 0
- },
- {
- "id": 9905,
- "name": "№9905 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.853870",
- "latitude": "56.261097",
- "address": "улица Политбойцов",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-11-07-07-38-qcu.jpg",
- "trainings": 0
- },
- {
- "id": 9906,
- "name": "№9906 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.204430818557743",
- "latitude": "55.16755070452384",
- "address": "Школа 40",
- "city_id": 373,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-11-22-07-06-vkb.jpg",
- "trainings": 0
- },
- {
- "id": 9907,
- "name": "№9907 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.65940513461828",
- "latitude": "55.86786764911396",
- "address": "Ленская улица, 24",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-12-07-07-04-5ud.jpg",
- "trainings": 1
- },
- {
- "id": 9908,
- "name": "№9908 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "40.301200",
- "latitude": "43.674070",
- "address": "Тропа здоровья",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-12-12-07-50-5hr.jpg",
- "trainings": 0
- },
- {
- "id": 9910,
- "name": "№9910 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "86.02086301625604",
- "latitude": "56.07922052960616",
- "address": "Ленина 13 б",
- "city_id": 597,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-13-03-07-49-1hw.jpg",
- "trainings": 1
- },
- {
- "id": 9911,
- "name": "№9911 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "49.079609",
- "latitude": "55.835486",
- "address": "улица Декабристов",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-13-11-07-05-jxy.jpg",
- "trainings": 2
- },
- {
- "id": 9912,
- "name": "№9912 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.42163300514222",
- "latitude": "55.74193984844426",
- "address": "Рублевское шоссе 101 к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-14-10-07-11-5bw.jpg",
- "trainings": 2
- },
- {
- "id": 9913,
- "name": "№9913 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.82198555767536",
- "latitude": "55.74818361442989",
- "address": "Фрязевская улица, 11 корпус 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-14-20-07-41-hmv.jpg",
- "trainings": 0
- },
- {
- "id": 9915,
- "name": "№9915 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.8265630826354",
- "latitude": "55.74772279692633",
- "address": "Фрязевская улица, 15 корпус 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-14-20-07-17-njw.jpg",
- "trainings": 0
- },
- {
- "id": 9916,
- "name": "№9916 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.99236013961492",
- "latitude": "55.02313885089189",
- "address": "Крамского 46",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-15-04-07-11-c86.jpg",
- "trainings": 0
- },
- {
- "id": 9918,
- "name": "№9918 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.733872",
- "latitude": "55.586258",
- "address": "Совхоз имени Ленина поселок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-15-13-07-19-0rq.jpg",
- "trainings": 0
- },
- {
- "id": 9919,
- "name": "№9919 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "22.713432",
- "latitude": "48.442080",
- "address": "Валенберга улица",
- "city_id": 522,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-15-13-07-06-vyu.jpg",
- "trainings": 1
- },
- {
- "id": 9920,
- "name": "№9920 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.192534685134895",
- "latitude": "55.319320059745856",
- "address": "д. Юрцово, ул. Новая, д. 212",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-15-15-07-26-6bw.jpg",
- "trainings": 0
- },
- {
- "id": 9921,
- "name": "№9921 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "53.690067529678345",
- "latitude": "63.56706501747622",
- "address": "Юбилейная за Буревестником",
- "city_id": 596,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-15-19-07-08-2zk.jpeg",
- "trainings": 2
- },
- {
- "id": 9922,
- "name": "№9922 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.883530",
- "latitude": "56.261342",
- "address": "улица Дружаева",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-15-20-07-39-8qk.jpg",
- "trainings": 0
- },
- {
- "id": 9923,
- "name": "№9923 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.892253",
- "latitude": "56.268197",
- "address": "проспект Бусыгина",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-15-20-07-33-tx4.jpg",
- "trainings": 0
- },
- {
- "id": 9924,
- "name": "№9924 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "42.870413",
- "latitude": "44.052128",
- "address": "Баталинская улица",
- "city_id": 8055,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-16-13-07-10-y3x.jpg",
- "trainings": 0
- },
- {
- "id": 9925,
- "name": "№9925 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.737633652985096",
- "latitude": "43.57913152698711",
- "address": "улица Грибоедова, 30",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-16-14-07-31-6eq.jpg",
- "trainings": 0
- },
- {
- "id": 9926,
- "name": "№9926 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "55.1390826702118",
- "latitude": "51.77161098495589",
- "address": "Чкалова, 53/3",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-16-19-07-50-n66.jpg",
- "trainings": 1
- },
- {
- "id": 9927,
- "name": "№9927 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.625450",
- "latitude": "56.824192",
- "address": "улица Луначарского 218",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-16-19-07-01-urw.jpg",
- "trainings": 0
- },
- {
- "id": 9928,
- "name": "№9928 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "52.42138735949993",
- "latitude": "55.768362534057346",
- "address": "проспект Чулман, 112",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-16-20-07-39-pon.jpg",
- "trainings": 1
- },
- {
- "id": 9929,
- "name": "№9929 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.15851628780366",
- "latitude": "55.61368341416876",
- "address": "кратово ул мира 15а",
- "city_id": 7730,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-18-14-07-03-w24.jpg",
- "trainings": 0
- },
- {
- "id": 9930,
- "name": "№9930 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "73.43540132045747",
- "latitude": "61.25534579251074",
- "address": "30 лет Победы, 37",
- "city_id": 565,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-18-14-07-24-irt.jpeg",
- "trainings": 0
- },
- {
- "id": 9931,
- "name": "№9931 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.837144613266",
- "latitude": "57.583447483900066",
- "address": "Гагарина, 32",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-18-21-07-21-wlk.jpg",
- "trainings": 0
- },
- {
- "id": 9932,
- "name": "№9932 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.901580",
- "latitude": "56.264313",
- "address": "улица Переходникова",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-19-11-07-06-kab.jpg",
- "trainings": 0
- },
- {
- "id": 9933,
- "name": "№9933 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.515289925038815",
- "latitude": "50.207030420400244",
- "address": "Октябрьская улица, 152",
- "city_id": 8089,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-19-12-07-17-aqt.jpg",
- "trainings": 0
- },
- {
- "id": 9934,
- "name": "№9934 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.01432511204213",
- "latitude": "42.84012941266985",
- "address": "село. Петровка у. Советска/Фрунзе (школа-гимназия)",
- "city_id": 7935,
- "country_id": 12,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-20-06-07-57--m9.jpg",
- "trainings": 0
- },
- {
- "id": 9935,
- "name": "№9935 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "23.809581581090274",
- "latitude": "53.7023048850749",
- "address": "БЛК, Лицей 1",
- "city_id": 375,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-20-14-07-47-zkj.jpg",
- "trainings": 1
- },
- {
- "id": 9936,
- "name": "№9936 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "150.75237026479957",
- "latitude": "59.91980728594903",
- "address": "Сокол",
- "city_id": 629,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-20-23-07-34-pas.jpg",
- "trainings": 0
- },
- {
- "id": 9937,
- "name": "№9937 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "12.543318271636965",
- "latitude": "55.698844511467854",
- "address": "Superkilen",
- "city_id": 7611,
- "country_id": 49,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-21-14-07-26-8h2.jpeg",
- "trainings": 1
- },
- {
- "id": 9938,
- "name": "№9938 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.71192312240601",
- "latitude": "55.601335597772824",
- "address": "Домодедовская улица, 44к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-21-14-07-50-dut.png",
- "trainings": 0
- },
- {
- "id": 9939,
- "name": "№9939 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "23.786814271997823",
- "latitude": "53.687963645644665",
- "address": "Тропа Здоровья",
- "city_id": 375,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-21-18-07-37-qfr.jpg",
- "trainings": 2
- },
- {
- "id": 9940,
- "name": "№9940 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "12.55388617515564",
- "latitude": "55.69677120688149",
- "address": "Guldbergs plads ",
- "city_id": 7611,
- "country_id": 49,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-21-22-07-17-g8a.jpeg",
- "trainings": 1
- },
- {
- "id": 9941,
- "name": "№9941 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "55.244188",
- "latitude": "51.760842",
- "address": "Овощеводческая улица",
- "city_id": 94,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-22-12-07-20-fr3.jpg",
- "trainings": 0
- },
- {
- "id": 9942,
- "name": "№9942 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.384539508375425",
- "latitude": "52.720355974279656",
- "address": "Киквидзе 112",
- "city_id": 631,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-22-18-07-36-l8w.jpg",
- "trainings": 0
- },
- {
- "id": 9943,
- "name": "№9943 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.898658",
- "latitude": "56.266725",
- "address": "Газовская улица",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-22-18-07-15-_bc.jpg",
- "trainings": 0
- },
- {
- "id": 9944,
- "name": "№9944 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.915025",
- "latitude": "56.270230",
- "address": "Ленина проспект",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-22-18-07-18-ssk.jpg",
- "trainings": 1
- },
- {
- "id": 9945,
- "name": "№9945 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.93987783789635",
- "latitude": "57.82879018902959",
- "address": "улица Заводская, 3",
- "city_id": 8613,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-22-22-07-32-2_e.jpg",
- "trainings": 2
- },
- {
- "id": 9946,
- "name": "№9946 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.359958708286285",
- "latitude": "59.85245907850985",
- "address": "ул. Типанова 34 к 3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-23-09-07-37-8n3.jpg",
- "trainings": 1
- },
- {
- "id": 9947,
- "name": "№9947 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.7297228127718",
- "latitude": "43.570167795229416",
- "address": "улица Черноморская, 3",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-23-11-07-21-h4b.jpg",
- "trainings": 0
- },
- {
- "id": 9948,
- "name": "№9948 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "12.54194498062134",
- "latitude": "55.706054834072695",
- "address": "Mimersparken ",
- "city_id": 7611,
- "country_id": 49,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-23-12-07-25-1_x.jpeg",
- "trainings": 1
- },
- {
- "id": 9949,
- "name": "№9949 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.703239441354533",
- "latitude": "46.400769878072424",
- "address": "Радужный",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-24-01-07-11-ys8.jpg",
- "trainings": 0
- },
- {
- "id": 9950,
- "name": "№9950 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.510167",
- "latitude": "55.626838",
- "address": "улица Профсоюзная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-24-06-07-05-_q6.jpg",
- "trainings": 2
- },
- {
- "id": 9951,
- "name": "№9951 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "24.947434589266773",
- "latitude": "42.821383314216156",
- "address": "Улица Отдих, 2",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-24-23-07-38-7ct.jpg",
- "trainings": 0
- },
- {
- "id": 9952,
- "name": "№9952 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "27.584120733140022",
- "latitude": "53.93188488654534",
- "address": "ул. Некрасова, 33",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-25-14-07-54-cfk.jpg",
- "trainings": 0
- },
- {
- "id": 9953,
- "name": "№9953 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.875175",
- "latitude": "56.261513",
- "address": "улица Дьяконова",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-26-13-07-38-b5n.jpg",
- "trainings": 0
- },
- {
- "id": 9954,
- "name": "№9954 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.07472737133502",
- "latitude": "55.368975535331735",
- "address": "улица Спортивная, д.15А, мини-стадион \"Виктория\"",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-27-12-07-16-jtj.jpg",
- "trainings": 1
- },
- {
- "id": 9955,
- "name": "№9955 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.54724073410035",
- "latitude": "55.12886997935226",
- "address": "Рязановский, ул. Чехова, д. 22",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-27-15-07-21-cxg.jpg",
- "trainings": 0
- },
- {
- "id": 9956,
- "name": "№9956 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.8464",
- "latitude": "56.247342",
- "address": "проспект Ильича",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-28-12-07-09-2tk.jpg",
- "trainings": 0
- },
- {
- "id": 9957,
- "name": "№9957 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.846803",
- "latitude": "56.248737",
- "address": "улица Ватутина",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-28-12-07-42-13m.jpg",
- "trainings": 0
- },
- {
- "id": 9958,
- "name": "№9958 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.843403",
- "latitude": "56.255505",
- "address": "улица Строкина",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-28-12-07-39-vff.jpg",
- "trainings": 0
- },
- {
- "id": 9959,
- "name": "№9959 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.846175",
- "latitude": "56.256613",
- "address": "Нижний Новгород",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-28-12-07-21-zv0.jpg",
- "trainings": 0
- },
- {
- "id": 9960,
- "name": "№9960 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.845488",
- "latitude": "56.257437",
- "address": "улица Строкина",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-28-12-07-03-wcx.jpg",
- "trainings": 0
- },
- {
- "id": 9961,
- "name": "№9961 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.848312",
- "latitude": "56.257617",
- "address": "улица Советской Армии",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-28-12-07-53-tth.jpg",
- "trainings": 0
- },
- {
- "id": 9962,
- "name": "№9962 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.847622",
- "latitude": "56.260747",
- "address": "улица Строкина",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-28-12-07-23-7h4.jpg",
- "trainings": 0
- },
- {
- "id": 9963,
- "name": "№9963 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.850338",
- "latitude": "56.263130",
- "address": "улица Строкина",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-28-13-07-24-v8k.jpg",
- "trainings": 0
- },
- {
- "id": 9964,
- "name": "№9964 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.851513",
- "latitude": "56.264088",
- "address": "улица Строкина",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-28-13-07-44-4qe.jpg",
- "trainings": 0
- },
- {
- "id": 9965,
- "name": "№9965 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.527191579341896",
- "latitude": "44.610018465523204",
- "address": "улица Ленина, 25",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-28-17-07-24-dth.jpg",
- "trainings": 1
- },
- {
- "id": 9966,
- "name": "№9966 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "33.41390077024698",
- "latitude": "44.56561340932391",
- "address": "Казачья улица, 2",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-28-18-07-28-kdu.jpg",
- "trainings": 0
- },
- {
- "id": 9967,
- "name": "№9967 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.874700",
- "latitude": "56.258308",
- "address": "улица Дьяконова",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-29-07-07-25-b7p.jpg",
- "trainings": 0
- },
- {
- "id": 9968,
- "name": "№9968 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.864875",
- "latitude": "56.254917",
- "address": "Моторный переулок",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-29-07-07-13-u1l.jpg",
- "trainings": 0
- },
- {
- "id": 9969,
- "name": "№9969 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "66.44501175731422",
- "latitude": "61.55141500213587",
- "address": "4",
- "city_id": 747,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-29-11-07-55-6bb.jpg",
- "trainings": 1
- },
- {
- "id": 9970,
- "name": "№9970 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.73255598555989",
- "latitude": "46.456663170099446",
- "address": "Бассейная, 6а",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-30-13-07-27-glz.jpg",
- "trainings": 0
- },
- {
- "id": 9971,
- "name": "№9971 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "13.950512",
- "latitude": "51.745678",
- "address": "Töpferstraße",
- "city_id": 8764,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-30-15-07-08-plq.jpg",
- "trainings": 1
- },
- {
- "id": 9972,
- "name": "№9972 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "22.700438",
- "latitude": "48.439879",
- "address": "Мукачево",
- "city_id": 522,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-30-18-07-57-bbd.jpg",
- "trainings": 1
- },
- {
- "id": 9974,
- "name": "№9974 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "-9.440227746963501",
- "latitude": "38.695818403656574",
- "address": "Avenida Diana Spencer",
- "city_id": 7780,
- "country_id": 41,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-31-14-07-02-ayb.jpeg",
- "trainings": 1
- },
- {
- "id": 9975,
- "name": "№9975 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.56008528172969",
- "latitude": "55.87294630335248",
- "address": "Дубнинская улица, 20к1с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-31-15-07-55-wmj.jpg",
- "trainings": 0
- },
- {
- "id": 9976,
- "name": "№9976 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.11752676963807",
- "latitude": "55.59797753466714",
- "address": "Ул. Жуковского",
- "city_id": 41,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/07/2019-07-31-17-07-22-axy.jpg",
- "trainings": 0
- },
- {
- "id": 9977,
- "name": "№9977 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "86.16624355316162",
- "latitude": "55.35226885904324",
- "address": "Октябрьский 85-а",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-01-03-08-14-gwc.jpg",
- "trainings": 0
- },
- {
- "id": 9978,
- "name": "№9978 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.630116881648068",
- "latitude": "50.48687149130515",
- "address": "Кубанской Украины, 51",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-01-15-08-18-k12.jpg",
- "trainings": 1
- },
- {
- "id": 9979,
- "name": "№9979 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "135.09385415775495",
- "latitude": "48.46002045428434",
- "address": "Трубный переулок 10",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-01-15-08-41-uvt.jpg",
- "trainings": 0
- },
- {
- "id": 9980,
- "name": "№9980 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.715956687981823",
- "latitude": "46.387332193807886",
- "address": "Школа 89",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-01-17-08-46-w7r.jpg",
- "trainings": 2
- },
- {
- "id": 9981,
- "name": "№9981 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.627552166042737",
- "latitude": "50.48166041044688",
- "address": "Лесной проспект, 13",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-02-10-08-01-gxg.jpg",
- "trainings": 0
- },
- {
- "id": 9982,
- "name": "№9982 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.612838268280036",
- "latitude": "56.960660043267914",
- "address": "ул. Петрова 59Д",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-02-18-08-48-u3k.jpg",
- "trainings": 0
- },
- {
- "id": 9983,
- "name": "№9983 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.61404526233674",
- "latitude": "56.962599108578",
- "address": "улица Победы, д. 11",
- "city_id": 7910,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-02-18-08-49-lx-.jpg",
- "trainings": 0
- },
- {
- "id": 9984,
- "name": "№9984 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "45.13586729764939",
- "latitude": "54.169036993119136",
- "address": "улица Попова 64а к4",
- "city_id": 115,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-02-22-08-25-yge.jpg",
- "trainings": 2
- },
- {
- "id": 9985,
- "name": "№9985 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "102.17379570007326",
- "latitude": "54.109512072045845",
- "address": "ул. Олимпийский микрорайон, 20, Саянск, Иркутская обл., 666304",
- "city_id": 8155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-03-03-08-38-bsy.jpg",
- "trainings": 0
- },
- {
- "id": 9986,
- "name": "№9986 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "102.17350333929065",
- "latitude": "54.11551353612644",
- "address": "ул. Строителей микрорайон, 19, Саянск, Иркутская обл., 666303",
- "city_id": 8155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-03-03-08-35-wah.jpg",
- "trainings": 0
- },
- {
- "id": 9987,
- "name": "№9987 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "102.18456476926805",
- "latitude": "54.11229986566836",
- "address": "Саянск, Иркутская обл., 666303 54.112327, 102.184383",
- "city_id": 8155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-03-03-08-54-ot_.jpg",
- "trainings": 2
- },
- {
- "id": 9988,
- "name": "№9988 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "135.10548142208",
- "latitude": "48.4805433",
- "address": "Шатурский переулок 3",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-03-12-08-13-iw5.jpg",
- "trainings": 2
- },
- {
- "id": 9989,
- "name": "№9989 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.786858",
- "latitude": "55.811505",
- "address": "Щёлковское шоссе",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-03-15-08-25-15j.jpg",
- "trainings": 0
- },
- {
- "id": 9990,
- "name": "№9990 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.531636178493503",
- "latitude": "59.95885786327559",
- "address": "Unnamed Road",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-03-17-08-26-meb.jpg",
- "trainings": 1
- },
- {
- "id": 9991,
- "name": "№9991 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "43.825813",
- "latitude": "56.354017",
- "address": "улица Мокроусова",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-03-20-08-15-s0k.jpg",
- "trainings": 1
- },
- {
- "id": 9992,
- "name": "№9992 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "43.854308",
- "latitude": "56.242663",
- "address": "Молодёжный проспект",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-03-20-08-42-h9-.jpg",
- "trainings": 0
- },
- {
- "id": 9993,
- "name": "№9993 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.825025",
- "latitude": "56.354083",
- "address": "улица Мокроусова",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-03-20-08-47-8f4.jpg",
- "trainings": 0
- },
- {
- "id": 9994,
- "name": "№9994 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.59183458983898",
- "latitude": "55.75669624809302",
- "address": "Скатертный переулок, 23",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-04-21-08-18-5nu.jpg",
- "trainings": 0
- },
- {
- "id": 9995,
- "name": "№9995 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.99282813085594",
- "latitude": "55.41317323101388",
- "address": "пос. Новый, д. 18, около КДЦ",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-04-21-08-46-qpw.jpg",
- "trainings": 0
- },
- {
- "id": 9996,
- "name": "№9996 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.573014199733734",
- "latitude": "55.72953276536988",
- "address": "улица Усачева, 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-05-09-08-25-2bd.jpg",
- "trainings": 0
- },
- {
- "id": 9997,
- "name": "№9997 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.140333046725978",
- "latitude": "59.99509764271879",
- "address": "Ольгино, Песочная улица 5",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-05-16-08-38-rxe.jpg",
- "trainings": 0
- },
- {
- "id": 9998,
- "name": "№9998 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.216436562227237",
- "latitude": "59.90005080864782",
- "address": "Канонерский остров 12",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-05-16-08-56-frd.jpg",
- "trainings": 0
- },
- {
- "id": 9999,
- "name": "№9999 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.217527297262453",
- "latitude": "59.937758194245916",
- "address": "Морская набережная 9",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-05-16-08-31-etq.jpg",
- "trainings": 0
- },
- {
- "id": 10000,
- "name": "№10000 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "31.0009302038034",
- "latitude": "59.87985820774682",
- "address": "ул. Новая; д. 38",
- "city_id": 8733,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-05-17-08-11-0mv.jpg",
- "trainings": 0
- },
- {
- "id": 10001,
- "name": "№10001 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "32.2695291248975",
- "latitude": "52.76315385",
- "address": "Фок солнечный ",
- "city_id": 8091,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-05-23-08-46-b1x.jpg",
- "trainings": 0
- },
- {
- "id": 10002,
- "name": "№10002 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.700600",
- "latitude": "55.625855",
- "address": "Москва, Орехово-Борисово",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-06-15-08-27-nwn.jpg",
- "trainings": 2
- },
- {
- "id": 10003,
- "name": "№10003 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "64.45204496383668",
- "latitude": "39.729749134436545",
- "address": "мустакилик кучаси, Машин базар",
- "city_id": 461,
- "country_id": 21,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-06-19-08-45-shv.jpeg",
- "trainings": 1
- },
- {
- "id": 10004,
- "name": "№10004 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.56627682596446",
- "latitude": "55.72682932987408",
- "address": "улица Усачева, 40",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-07-10-08-54-giz.jpg",
- "trainings": 1
- },
- {
- "id": 10006,
- "name": "№10006 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "33.81062731146813",
- "latitude": "52.585469317035944",
- "address": "Брянская область, Трубчевский р-н, д Городцы, Трубчевская ул., д.139",
- "city_id": 7430,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-07-14-08-12-qed.jpg",
- "trainings": 1
- },
- {
- "id": 10007,
- "name": "№10007 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.872500",
- "latitude": "56.258137",
- "address": "улица Дьяконова",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-07-15-08-37-mbg.jpg",
- "trainings": 0
- },
- {
- "id": 10008,
- "name": "№10008 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.868017",
- "latitude": "56.254795",
- "address": "проспект Октября",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-07-15-08-50-amd.jpg",
- "trainings": 0
- },
- {
- "id": 10009,
- "name": "№10009 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.868808",
- "latitude": "56.252828",
- "address": "Комсомольская улица",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-07-16-08-49-hze.jpg",
- "trainings": 0
- },
- {
- "id": 10010,
- "name": "№10010 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.868825",
- "latitude": "56.251278",
- "address": "Комсомольская улица",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-07-16-08-36-tox.jpg",
- "trainings": 0
- },
- {
- "id": 10011,
- "name": "№10011 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.867328",
- "latitude": "56.251228",
- "address": "Комсомольская улица",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-07-16-08-28-te1.jpg",
- "trainings": 0
- },
- {
- "id": 10012,
- "name": "№10012 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.866383",
- "latitude": "56.249338",
- "address": "проспект Октября",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-07-16-08-32-10h.jpg",
- "trainings": 0
- },
- {
- "id": 10013,
- "name": "№10013 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.57955241948366",
- "latitude": "55.729743458953244",
- "address": "Хользунова переулок, 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-08-09-08-20-zio.jpg",
- "trainings": 0
- },
- {
- "id": 10014,
- "name": "№10014 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.717712640707763",
- "latitude": "46.39124446856364",
- "address": "ул. Вильямса, 72",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-08-13-08-50-yhc.jpg",
- "trainings": 0
- },
- {
- "id": 10015,
- "name": "№10015 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.44783280790217",
- "latitude": "55.78177704325648",
- "address": "Набережная Новикова-прибоя 4к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-08-14-08-03-s7c.jpg",
- "trainings": 0
- },
- {
- "id": 10016,
- "name": "№10016 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.93841600423549",
- "latitude": "55.04645409940242",
- "address": "Гоголя, 43б",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-09-08-08-38-p6c.jpg",
- "trainings": 0
- },
- {
- "id": 10018,
- "name": "№10018 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.533905036470976",
- "latitude": "55.60265699984003",
- "address": "Ясногорская д 17 к 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-09-17-09-07--r4.jpg",
- "trainings": 0
- },
- {
- "id": 10019,
- "name": "№10019 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.532164703061426",
- "latitude": "55.598232056901175",
- "address": "Ясенево",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-09-20-08-08-8vv.jpg",
- "trainings": 0
- },
- {
- "id": 10020,
- "name": "№10020 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.53230333008106",
- "latitude": "55.598177117389895",
- "address": "Ясенево",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-09-20-08-08-izy.jpg",
- "trainings": 0
- },
- {
- "id": 10021,
- "name": "№10021 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.534207999706275",
- "latitude": "55.60043700983746",
- "address": "школа 862",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-09-20-08-53-qsp.jpg",
- "trainings": 0
- },
- {
- "id": 10022,
- "name": "№10022 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.710671007633206",
- "latitude": "60.19738956780863",
- "address": "Комсомольская улица, 19",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-10-09-08-02-eqs.jpg",
- "trainings": 1
- },
- {
- "id": 10023,
- "name": "№10023 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "29.70304582268",
- "latitude": "60.19478893149141",
- "address": "Комендантская улица, 6Б",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-10-10-08-24-nv4.jpg",
- "trainings": 0
- },
- {
- "id": 10024,
- "name": "№10024 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.70124505460262",
- "latitude": "60.18928802180482",
- "address": "Главная улица, 9А",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-10-10-08-41-q34.jpg",
- "trainings": 0
- },
- {
- "id": 10025,
- "name": "№10025 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.538999942009475",
- "latitude": "56.67299172367118",
- "address": "пос. Горный Щит, СТ «Рассвет-1»",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-10-14-08-17-50h.jpg",
- "trainings": 0
- },
- {
- "id": 10026,
- "name": "№10026 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.459572181105614",
- "latitude": "56.00926670076721",
- "address": "улица Ленина, 53",
- "city_id": 73,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-11-10-08-08-ceq.jpg",
- "trainings": 1
- },
- {
- "id": 10027,
- "name": "№10027 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.57407187670469",
- "latitude": "50.195478937801504",
- "address": "улица Белинского, 131",
- "city_id": 8089,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-11-12-08-17-ajv.jpg",
- "trainings": 0
- },
- {
- "id": 10028,
- "name": "№10028 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.498322",
- "latitude": "55.689931",
- "address": "улица Раменки 15к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-11-16-08-17-q9o.jpg",
- "trainings": 0
- },
- {
- "id": 10030,
- "name": "№10030 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.881576",
- "latitude": "56.271669",
- "address": "улица Пермякова",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-11-18-08-35-noi.jpg",
- "trainings": 0
- },
- {
- "id": 10031,
- "name": "№10031 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.884353",
- "latitude": "56.264728",
- "address": "Борская улица",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-11-18-08-03-mvc.jpg",
- "trainings": 0
- },
- {
- "id": 10032,
- "name": "№10032 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "20.966991148889065",
- "latitude": "52.21754766978543",
- "address": "Dworzec Zachodni 01",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-11-20-08-40-tqp.jpg",
- "trainings": 0
- },
- {
- "id": 10033,
- "name": "№10033 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "21.034961320547158",
- "latitude": "52.23748171943251",
- "address": "Центр науки Коперника",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-12-12-08-06-rkb.jpg",
- "trainings": 0
- },
- {
- "id": 10034,
- "name": "№10034 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.4890827013478",
- "latitude": "51.55461205252443",
- "address": "534 км трассы \"Дон\", АЗС Татнефть",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-12-20-08-50-lfg.jpg",
- "trainings": 0
- },
- {
- "id": 10035,
- "name": "№10035 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "48.054285049438484",
- "latitude": "46.37000973321923",
- "address": "Татищева 11б",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-13-08-08-06-ctm.jpg",
- "trainings": 0
- },
- {
- "id": 10036,
- "name": "№10036 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.72200775135571",
- "latitude": "46.39783007351802",
- "address": "Глушко",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-29-22-08-29-sy5.jpg",
- "trainings": 0
- },
- {
- "id": 10037,
- "name": "№10037 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "41.97917819023133",
- "latitude": "44.6208300905395",
- "address": "Улица Калинина",
- "city_id": 778,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-14-23-08-47-8xa.jpg",
- "trainings": 0
- },
- {
- "id": 10038,
- "name": "№10038 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.18964572995901",
- "latitude": "55.997646730163254",
- "address": "корпус 1106 строение 1",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-15-20-08-12-pkj.jpg",
- "trainings": 0
- },
- {
- "id": 10039,
- "name": "№10039 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "53.656497001647956",
- "latitude": "63.56108013449837",
- "address": "ул. Тиманская",
- "city_id": 596,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-16-21-08-52-q-q.jpeg",
- "trainings": 1
- },
- {
- "id": 10040,
- "name": "№10040 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.505570",
- "latitude": "55.704872",
- "address": "улица Столетова",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-17-09-08-30-9fi.jpg",
- "trainings": 1
- },
- {
- "id": 10041,
- "name": "№10041 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "20.949680171906948",
- "latitude": "52.24065810005533",
- "address": "Deotymy, 6",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-17-15-08-38-l7f.jpg",
- "trainings": 2
- },
- {
- "id": 10042,
- "name": "№10042 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.91916608810425",
- "latitude": "56.05184961211656",
- "address": "молокова 6",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-19-17-08-05-h0e.jpg",
- "trainings": 0
- },
- {
- "id": 10043,
- "name": "№10043 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.92214334011078",
- "latitude": "56.05427307240169",
- "address": "алексеева 3",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-19-17-08-22-eel.jpg",
- "trainings": 0
- },
- {
- "id": 10044,
- "name": "№10044 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.751914346411624",
- "latitude": "55.91314372656476",
- "address": "Шараповская 6к2",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-20-08-08-18-egl.jpg",
- "trainings": 0
- },
- {
- "id": 10045,
- "name": "№10045 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.460388",
- "latitude": "50.520378",
- "address": "Маршала Рокоссовского проспект",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-20-09-08-27-p8a.jpg",
- "trainings": 1
- },
- {
- "id": 10046,
- "name": "№10046 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.851963",
- "latitude": "56.332955",
- "address": "улица Черняховского",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-21-13-08-30-oax.jpg",
- "trainings": 0
- },
- {
- "id": 10047,
- "name": "№10047 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.520447",
- "latitude": "55.647520",
- "address": "улица Профсоюзная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-21-18-08-23-ns0.jpg",
- "trainings": 1
- },
- {
- "id": 10048,
- "name": "№10048 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.519487",
- "latitude": "55.649863",
- "address": "улица Профсоюзная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-21-19-08-18-2j_.jpg",
- "trainings": 2
- },
- {
- "id": 10049,
- "name": "№10049 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "107.1197376245982",
- "latitude": "52.549657820661764",
- "address": "Россия, Республика Бурятия, Кабанский район, село Сухая, Байкальская улица, 106Б",
- "city_id": 615,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-22-09-08-19-c4l.jpg",
- "trainings": 0
- },
- {
- "id": 10050,
- "name": "№10050 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.136840827763084",
- "latitude": "59.57009583256067",
- "address": "улица Урицкого, 35",
- "city_id": 29,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-22-13-08-41-7yj.jpg",
- "trainings": 1
- },
- {
- "id": 10052,
- "name": "№10052 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "57.58462503685427",
- "latitude": "59.165747371682635",
- "address": "Ул. Мехоношина, 7",
- "city_id": 730,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-23-17-08-50-gr7.jpg",
- "trainings": 0
- },
- {
- "id": 10053,
- "name": "№10053 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.37941612303257",
- "latitude": "59.963615299047994",
- "address": "Кондратьевский проспект, 18",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-23-19-08-30-7p1.jpg",
- "trainings": 1
- },
- {
- "id": 10054,
- "name": "№10054 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.73257923126221",
- "latitude": "46.39176986562812",
- "address": "ул. Вильямса, 48/3",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-23-22-08-04-scu.jpg",
- "trainings": 0
- },
- {
- "id": 10055,
- "name": "№10055 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.72127461427954",
- "latitude": "46.38986311707147",
- "address": "ул. Вильямса,77",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-24-14-08-18-y5l.jpg",
- "trainings": 0
- },
- {
- "id": 10056,
- "name": "№10056 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.727229118128893",
- "latitude": "46.39005058851824",
- "address": "ул. Вильямса, 63",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-23-22-08-14-jvd.jpg",
- "trainings": 0
- },
- {
- "id": 10057,
- "name": "№10057 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.32521992912371",
- "latitude": "48.55787239910813",
- "address": "кв. Героев Брестской крепости",
- "city_id": 514,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-24-00-08-49-z7e.png",
- "trainings": 0
- },
- {
- "id": 10058,
- "name": "№10058 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.764635205214294",
- "latitude": "46.47734700685453",
- "address": "Дельфинарий",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-27-20-09-17-ut4.jpg",
- "trainings": 0
- },
- {
- "id": 10059,
- "name": "№10059 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "42.12601773440838",
- "latitude": "57.455598163626085",
- "address": "улица 50 Лет Влксм, 22",
- "city_id": 605,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-24-09-08-28-p1c.jpg",
- "trainings": 0
- },
- {
- "id": 10060,
- "name": "№10060 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.723187923485973",
- "latitude": "46.51209302579111",
- "address": "Сквер красный",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-24-13-08-01-lfk.jpg",
- "trainings": 0
- },
- {
- "id": 10062,
- "name": "№10062 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.70198962092399",
- "latitude": "57.789286957527764",
- "address": "улица Кузнецова, 12",
- "city_id": 745,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-24-19-08-49-6ou.jpg",
- "trainings": 0
- },
- {
- "id": 10064,
- "name": "№10064 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.338816011457837",
- "latitude": "60.08171309585816",
- "address": "Ул. Заречная д. 33",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-25-15-08-43-gkt.png",
- "trainings": 1
- },
- {
- "id": 10065,
- "name": "№10065 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.08441066744672",
- "latitude": "44.42732634612498",
- "address": "г Ялта п Кореиз санаторий Мисхор",
- "city_id": 557,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-25-20-08-01-gmf.jpg",
- "trainings": 1
- },
- {
- "id": 10066,
- "name": "№10066 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.57152196764946",
- "latitude": "59.94819554458045",
- "address": "улица Шоссейная, 63 корпус 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-25-22-08-52-rp9.jpg",
- "trainings": 1
- },
- {
- "id": 10067,
- "name": "№10067 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "4.825262",
- "latitude": "52.365472",
- "address": "Sloterpark",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-26-09-08-25-w84.jpg",
- "trainings": 1
- },
- {
- "id": 10069,
- "name": "№10069 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "4.815963",
- "latitude": "52.367547",
- "address": "President Allendelaan",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-26-10-08-09-fbv.jpg",
- "trainings": 1
- },
- {
- "id": 10070,
- "name": "№10070 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "4.809481",
- "latitude": "52.357264",
- "address": "Meer en Vaart",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-26-10-08-31-ljd.jpg",
- "trainings": 0
- },
- {
- "id": 10071,
- "name": "№10071 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "4.813517",
- "latitude": "52.357925",
- "address": "Cornelis Lelylaan",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-26-10-08-37-kj_.jpg",
- "trainings": 1
- },
- {
- "id": 10072,
- "name": "№10072 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "38.03175379776804",
- "latitude": "55.74122702461",
- "address": "Калинина 18",
- "city_id": 40,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-26-10-08-36-nbd.jpg",
- "trainings": 1
- },
- {
- "id": 10073,
- "name": "№10073 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "24.093665",
- "latitude": "56.947197",
- "address": "Mārupe, Mārupes novads",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-26-15-08-00-zsc.jpg",
- "trainings": 0
- },
- {
- "id": 10074,
- "name": "№10074 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "47.388739809393876",
- "latitude": "56.125508300253614",
- "address": "Чебоксарский проспект, 4",
- "city_id": 146,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-26-21-08-03-ate.jpg",
- "trainings": 0
- },
- {
- "id": 10076,
- "name": "№10076 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "37.652152",
- "latitude": "55.627089",
- "address": "Кавказский бульвар 37",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-26-23-08-01-dwa.jpg",
- "trainings": 1
- },
- {
- "id": 10077,
- "name": "№10077 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "38.456530",
- "latitude": "55.863942",
- "address": "Ногинск, ул. Климова 15",
- "city_id": 90,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-27-10-08-09-agh.jpg",
- "trainings": 2
- },
- {
- "id": 10078,
- "name": "№10078 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.71783781051636",
- "latitude": "46.392462988811225",
- "address": "Вильямса",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-12-13-10-51-cgz.jpg",
- "trainings": 0
- },
- {
- "id": 10079,
- "name": "№10079 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "4.848520",
- "latitude": "52.361492",
- "address": "Rembrandtpark",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-27-17-08-48-zpf.jpg",
- "trainings": 0
- },
- {
- "id": 10080,
- "name": "№10080 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.07911801338196",
- "latitude": "59.811199356657355",
- "address": "Новоселье, Красносельское шоссе, 6",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-27-22-08-57-9d5.jpeg",
- "trainings": 1
- },
- {
- "id": 10081,
- "name": "№10081 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "19.462296366691593",
- "latitude": "51.75997135412601",
- "address": "lodz",
- "city_id": 7565,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-27-22-08-52-fvq.jpg",
- "trainings": 0
- },
- {
- "id": 10082,
- "name": "№10082 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "53.65681886672974",
- "latitude": "63.562675589348416",
- "address": "Набережная газовиков",
- "city_id": 596,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-29-10-08-46-gqr.jpeg",
- "trainings": 2
- },
- {
- "id": 10083,
- "name": "№10083 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.343772",
- "latitude": "62.75145",
- "address": "улица Ленина",
- "city_id": 7443,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-29-13-08-05-e1n.jpg",
- "trainings": 0
- },
- {
- "id": 10084,
- "name": "№10084 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.4256591903868",
- "latitude": "59.97125351305485",
- "address": "ул. Маршала Тухачевского, 29",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-29-13-08-00-0mz.jpg",
- "trainings": 2
- },
- {
- "id": 10085,
- "name": "№10085 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.97785878181458",
- "latitude": "55.799990465161926",
- "address": "Московская область город Балашиха проспект Ленина 56",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-31-07-10-21-ofo.jpg",
- "trainings": 0
- },
- {
- "id": 10086,
- "name": "№10086 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "69.0561606929805",
- "latitude": "61.018314749989166",
- "address": "ул. Объездная, 95, Ханты-Мансийск, Ханты-Мансийский автономный округ, 628007",
- "city_id": 640,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-30-07-08-49-qka.jpg",
- "trainings": 0
- },
- {
- "id": 10087,
- "name": "№10087 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "4.798572",
- "latitude": "52.356308",
- "address": "Wolbrantskerkweg",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-30-10-08-31-jgo.jpg",
- "trainings": 1
- },
- {
- "id": 10088,
- "name": "№10088 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.92923695",
- "latitude": "57.5680155",
- "address": " Светлая, 5",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-30-12-08-56-kbd.jpg",
- "trainings": 1
- },
- {
- "id": 10089,
- "name": "№10089 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.790806770324714",
- "latitude": "57.67792957212597",
- "address": "Урицкого, 67",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-30-12-08-28-_tz.jpg",
- "trainings": 0
- },
- {
- "id": 10090,
- "name": "№10090 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "94.57741498947144",
- "latitude": "56.104394635930525",
- "address": "строителей 12а",
- "city_id": 42,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-30-12-08-04-flx.jpg",
- "trainings": 0
- },
- {
- "id": 10091,
- "name": "№10091 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "94.58145976066591",
- "latitude": "56.104047604544284",
- "address": "строителей 18",
- "city_id": 42,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-30-12-08-42-n_e.jpg",
- "trainings": 0
- },
- {
- "id": 10092,
- "name": "№10092 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "94.58397030830385",
- "latitude": "56.10287301842209",
- "address": "строителей 19",
- "city_id": 42,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-30-12-08-39-na1.jpg",
- "trainings": 0
- },
- {
- "id": 10093,
- "name": "№10093 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.43768623009783",
- "latitude": "59.93727864476684",
- "address": "пр. Энергетиков 9, кор.3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-30-13-08-43-fwn.jpg",
- "trainings": 0
- },
- {
- "id": 10094,
- "name": "№10094 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.898525",
- "latitude": "45.078494",
- "address": "Краснодар, Красных Партизан 1/4 ( жк Светлоград)",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/08/2019-08-30-17-08-32-ild.jpg",
- "trainings": 1
- },
- {
- "id": 10095,
- "name": "№10095 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "52.38553818719084",
- "latitude": "55.751861618187974",
- "address": "Чулман",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-01-17-09-26-fjd.jpg",
- "trainings": 0
- },
- {
- "id": 10096,
- "name": "№10096 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "4.851312",
- "latitude": "52.375350",
- "address": "Amsterdam, Erasmuspark",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-01-20-09-13-0xn.jpg",
- "trainings": 0
- },
- {
- "id": 10097,
- "name": "№10097 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-28.633532538078732",
- "latitude": "38.53222136793605",
- "address": "Не знаю ",
- "city_id": 8988,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-01-22-09-25-cnn.jpg",
- "trainings": 0
- },
- {
- "id": 10098,
- "name": "№10098 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "113.51596243679523",
- "latitude": "52.02902413638125",
- "address": "Ангарская улица, 30",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-02-07-09-03-ijr.jpg",
- "trainings": 1
- },
- {
- "id": 10099,
- "name": "№10099 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.700662",
- "latitude": "47.259062",
- "address": "Ростов-на-Дону",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-02-12-09-46-w6r.jpg",
- "trainings": 2
- },
- {
- "id": 10100,
- "name": "№10100 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.617853105068203",
- "latitude": "50.40463618557944",
- "address": "вулиця Анни Ахматової, 43",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-03-09-09-32-x_-.jpg",
- "trainings": 0
- },
- {
- "id": 10101,
- "name": "№10101 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.618168599903584",
- "latitude": "50.40503151439354",
- "address": "вулиця Анни Ахматової, 41",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-03-09-09-18-r0j.jpg",
- "trainings": 0
- },
- {
- "id": 10102,
- "name": "№10102 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "4.855964",
- "latitude": "52.330396",
- "address": "Boeierspad",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-03-11-09-40-l_0.jpg",
- "trainings": 0
- },
- {
- "id": 10103,
- "name": "№10103 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "4.833602",
- "latitude": "52.321754",
- "address": "De Duizendmeterweg",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-03-11-09-34-ohm.jpg",
- "trainings": 0
- },
- {
- "id": 10104,
- "name": "№10104 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "4.82873",
- "latitude": "52.318962",
- "address": "Grote Speelweide",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-03-11-09-26-ltq.jpg",
- "trainings": 0
- },
- {
- "id": 10105,
- "name": "№10105 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "4.830053",
- "latitude": "52.318539",
- "address": "Amsterdamse Bos",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-03-12-09-21-jhv.jpg",
- "trainings": 0
- },
- {
- "id": 10106,
- "name": "№10106 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.07949813455343",
- "latitude": "55.55046387541666",
- "address": "Комсомольская улица, 4",
- "city_id": 8029,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-03-23-09-02-hne.jpg",
- "trainings": 1
- },
- {
- "id": 10107,
- "name": "№10107 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-25.441449289692173",
- "latitude": "37.71670069548108",
- "address": "Не знаю ",
- "city_id": 7764,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-04-21-09-48-vjs.jpg",
- "trainings": 0
- },
- {
- "id": 10108,
- "name": "№10108 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.490434013307095",
- "latitude": "55.796911960713125",
- "address": "Маршала Бирюзова улица, 22 корпус 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-05-14-09-35-252.jpg",
- "trainings": 0
- },
- {
- "id": 10109,
- "name": "№10109 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.491151504218585",
- "latitude": "55.79652691851574",
- "address": "Маршала Бирюзова улица, 22 корпус 3 строение 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-05-14-09-41-qc5.jpg",
- "trainings": 0
- },
- {
- "id": 10110,
- "name": "№10110 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.49162692576647",
- "latitude": "55.795824861636575",
- "address": "Маршала Бирюзова улица, 20, к. 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-05-14-09-12-yf6.jpg",
- "trainings": 0
- },
- {
- "id": 10111,
- "name": "№10111 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "4.657657",
- "latitude": "52.372474",
- "address": "Haarlem, Zwanebloemtocht",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-05-16-09-18-ybn.jpg",
- "trainings": 0
- },
- {
- "id": 10112,
- "name": "№10112 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.501362",
- "latitude": "55.687025",
- "address": "Парк 50летия",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-05-23-09-31-obq.jpg",
- "trainings": 0
- },
- {
- "id": 10113,
- "name": "№10113 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "57.81070210781764",
- "latitude": "58.090805828869016",
- "address": "Ленина 36",
- "city_id": 8088,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-06-05-09-37-gk9.jpg",
- "trainings": 1
- },
- {
- "id": 10114,
- "name": "№10114 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "26.490592",
- "latitude": "55.854183",
- "address": "Kājnieku iela",
- "city_id": 426,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-06-14-09-23-6ae.jpg",
- "trainings": 1
- },
- {
- "id": 10115,
- "name": "№10115 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "113.5219088",
- "latitude": "52.0412197",
- "address": "СибВО",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-06-15-09-27-qke.jpg",
- "trainings": 1
- },
- {
- "id": 10116,
- "name": "№10116 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "114.54831109058435",
- "latitude": "51.09997493775838",
- "address": "Агинское",
- "city_id": 634,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-07-02-09-30-jwb.jpg",
- "trainings": 0
- },
- {
- "id": 10117,
- "name": "№10117 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "114.53744896229183",
- "latitude": "51.10966573200451",
- "address": "Агинское",
- "city_id": 634,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-07-02-09-05-rlr.jpg",
- "trainings": 0
- },
- {
- "id": 10118,
- "name": "№10118 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "114.93447129776543",
- "latitude": "51.29400774555981",
- "address": "могойтуй",
- "city_id": 634,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-07-02-09-15-xa5.jpg",
- "trainings": 0
- },
- {
- "id": 10119,
- "name": "№10119 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.41997808458109",
- "latitude": "55.76789607463438",
- "address": "Проспект Чулман 110",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-07-12-09-20-i3m.jpg",
- "trainings": 0
- },
- {
- "id": 10120,
- "name": "№10120 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "53.65817070007325",
- "latitude": "63.564108556460255",
- "address": "За Комсой",
- "city_id": 596,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-07-17-09-03-hhf.jpeg",
- "trainings": 2
- },
- {
- "id": 10121,
- "name": "№10121 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.611272",
- "latitude": "55.644447",
- "address": "Черноморский бульвар",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-07-18-09-05-iaz.jpg",
- "trainings": 0
- },
- {
- "id": 10123,
- "name": "№10123 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "69.05690398853041",
- "latitude": "61.01849145071659",
- "address": "Обьездная 95",
- "city_id": 640,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-07-21-09-51-ti4.jpg",
- "trainings": 0
- },
- {
- "id": 10124,
- "name": "№10124 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.50428969413042",
- "latitude": "56.129845043989256",
- "address": "Unnamed Road",
- "city_id": 58,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-08-00-09-26-btx.jpg",
- "trainings": 0
- },
- {
- "id": 10125,
- "name": "№10125 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "4.865253",
- "latitude": "52.388653",
- "address": "Overbrakerpad",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-08-12-09-53-rs5.jpg",
- "trainings": 0
- },
- {
- "id": 10126,
- "name": "№10126 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "36.19787983596325",
- "latitude": "51.74913203048113",
- "address": "пл. Перекальского",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-08-15-09-06-8ca.jpg",
- "trainings": 1
- },
- {
- "id": 10127,
- "name": "№10127 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.99032825231553",
- "latitude": "43.38640955953399",
- "address": "Цимлянская улица",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-08-21-09-00-gxs.jpg",
- "trainings": 2
- },
- {
- "id": 10128,
- "name": "№10128 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.06650286075638",
- "latitude": "44.55036210520899",
- "address": "Полевая 45 А",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-09-12-09-27-jhk.jpg",
- "trainings": 1
- },
- {
- "id": 10129,
- "name": "№10129 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "4.898574",
- "latitude": "52.354497",
- "address": "Amsterdam, De Pijp",
- "city_id": 7406,
- "country_id": 36,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-09-12-09-39-0xy.jpg",
- "trainings": 0
- },
- {
- "id": 10130,
- "name": "№10130 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.0888799",
- "latitude": "44.551274",
- "address": "Черняховского 39",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-09-15-09-35-eof.jpg",
- "trainings": 0
- },
- {
- "id": 10131,
- "name": "№10131 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.0874396386229",
- "latitude": "44.55387925",
- "address": "Пионерская 8",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-09-15-09-32-f3b.jpg",
- "trainings": 0
- },
- {
- "id": 10132,
- "name": "№10132 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.01325003802776",
- "latitude": "48.49879354472441",
- "address": "вулиця Скрябіна, 41",
- "city_id": 491,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-09-15-09-08-ye3.jpg",
- "trainings": 1
- },
- {
- "id": 10133,
- "name": "№10133 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.0639088",
- "latitude": "44.5508571",
- "address": "Полевая 45 а",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-09-15-09-23-yoc.jpg",
- "trainings": 0
- },
- {
- "id": 10134,
- "name": "№10134 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.0667318",
- "latitude": "44.5492549",
- "address": "Леселидзе 6",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-09-15-09-13-xji.jpg",
- "trainings": 0
- },
- {
- "id": 10135,
- "name": "№10135 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.0781918",
- "latitude": "44.5477583",
- "address": "Парус 6",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-09-15-09-09-osf.jpg",
- "trainings": 0
- },
- {
- "id": 10136,
- "name": "№10136 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.08037935",
- "latitude": "44.550375",
- "address": "Калинина 1",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-09-16-09-50-j0z.jpg",
- "trainings": 0
- },
- {
- "id": 10137,
- "name": "№10137 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.07231545448304",
- "latitude": "44.54953427265663",
- "address": "Гринченко 31а",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-09-16-09-01-uoo.jpg",
- "trainings": 0
- },
- {
- "id": 10138,
- "name": "№10138 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.0701297",
- "latitude": "44.5505436",
- "address": "Гринченко 26",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-09-16-09-46-lw5.jpg",
- "trainings": 0
- },
- {
- "id": 10139,
- "name": "№10139 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.069230914115906",
- "latitude": "44.55047852660992",
- "address": "Полевая 37",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-09-16-09-43-tzb.jpg",
- "trainings": 0
- },
- {
- "id": 10140,
- "name": "№10140 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.06689165",
- "latitude": "44.54956645",
- "address": "Леселидзе 2",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-09-16-09-16-jxf.jpg",
- "trainings": 0
- },
- {
- "id": 10141,
- "name": "№10141 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.66179797053337",
- "latitude": "56.83823669001777",
- "address": "Комсомольская улица, 63",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-09-17-09-15-him.jpg",
- "trainings": 0
- },
- {
- "id": 10142,
- "name": "№10142 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.87290966510774",
- "latitude": "43.25322839156849",
- "address": "Дуйсенова, 111",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-25-11-09-19-aiw.jpg",
- "trainings": 1
- },
- {
- "id": 10143,
- "name": "№10143 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.71733355522156",
- "latitude": "46.45223324099965",
- "address": "Шота Руставели",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-01-09-31-qsf.jpg",
- "trainings": 0
- },
- {
- "id": 10144,
- "name": "№10144 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.732386112540556",
- "latitude": "46.39651054944253",
- "address": "Люстдорфская",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-02-09-13-yln.jpg",
- "trainings": 0
- },
- {
- "id": 10145,
- "name": "№10145 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.567837201058865",
- "latitude": "55.72577482789271",
- "address": "улица Усачева, 19А строение 7",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-10-09-29-btm.jpg",
- "trainings": 0
- },
- {
- "id": 10146,
- "name": "№10146 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.0839696",
- "latitude": "44.5612699",
- "address": "Кирова 66",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-11-09-28-d7d.jpg",
- "trainings": 0
- },
- {
- "id": 10147,
- "name": "№10147 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.085028",
- "latitude": "44.5485077",
- "address": "Орджоникидзе 35",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-12-09-25-f39.jpg",
- "trainings": 0
- },
- {
- "id": 10148,
- "name": "№10148 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.090208222218",
- "latitude": "44.54888265",
- "address": "Орджоникидзе 11",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-12-09-09-jcl.jpg",
- "trainings": 0
- },
- {
- "id": 10149,
- "name": "№10149 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.0904258",
- "latitude": "44.5489063",
- "address": "Орджоникидзе 13",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-12-09-49-uu9.jpg",
- "trainings": 0
- },
- {
- "id": 10150,
- "name": "№10150 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.0872895972096",
- "latitude": "44.54867985",
- "address": "Орджоникидзе 9",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-12-09-01-yr8.jpg",
- "trainings": 0
- },
- {
- "id": 10151,
- "name": "№10151 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.08852672576905",
- "latitude": "44.549171093980156",
- "address": "Свердлова 30",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-12-09-23-su7.jpg",
- "trainings": 0
- },
- {
- "id": 10152,
- "name": "№10152 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.0975539244174",
- "latitude": "44.55385425",
- "address": "Островского 142а",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-12-09-40-ne6.jpg",
- "trainings": 0
- },
- {
- "id": 10153,
- "name": "№10153 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.0990698057245",
- "latitude": "44.5534027",
- "address": "Островского 146",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-12-09-23-ju0.jpg",
- "trainings": 0
- },
- {
- "id": 10154,
- "name": "№10154 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.1024929",
- "latitude": "44.5540035",
- "address": "Маяковского 4",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-12-09-10-txt.jpg",
- "trainings": 0
- },
- {
- "id": 10155,
- "name": "№10155 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.1010395289729",
- "latitude": "44.55338325",
- "address": "Островского 121",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-12-09-07-b5c.jpg",
- "trainings": 0
- },
- {
- "id": 10156,
- "name": "№10156 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.104229",
- "latitude": "44.5552902",
- "address": "Дивноморская 37 к3",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-12-09-35-lvj.jpg",
- "trainings": 0
- },
- {
- "id": 10157,
- "name": "№10157 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.103668237723",
- "latitude": "44.5563232",
- "address": "Витебская 14/6",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-13-09-23-kjy.jpg",
- "trainings": 0
- },
- {
- "id": 10158,
- "name": "№10158 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.1038870981809",
- "latitude": "44.55588895",
- "address": "Витебская 12/5",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-13-09-41-lxk.jpg",
- "trainings": 0
- },
- {
- "id": 10159,
- "name": "№10159 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.10974299907685",
- "latitude": "44.55460706841882",
- "address": "Островского 149а к2",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-13-09-30-1on.jpg",
- "trainings": 0
- },
- {
- "id": 10160,
- "name": "№10160 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.092925548553474",
- "latitude": "44.55873531734915",
- "address": "Переулок Восточный 36",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-13-09-20-xrg.jpg",
- "trainings": 0
- },
- {
- "id": 10161,
- "name": "№10161 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.09208869934082",
- "latitude": "44.55825370339869",
- "address": "Переулок Восточный 36А",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-13-09-22-u76.jpg",
- "trainings": 0
- },
- {
- "id": 10162,
- "name": "№10162 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.08678328990937",
- "latitude": "44.548464747972375",
- "address": "Орджоникидзе 9Г",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-13-09-02-d1u.jpg",
- "trainings": 0
- },
- {
- "id": 10163,
- "name": "№10163 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.538835048675544",
- "latitude": "60.735803058033376",
- "address": "Коммунаров 46",
- "city_id": 74,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-19-09-22-8ur.jpeg",
- "trainings": 1
- },
- {
- "id": 10164,
- "name": "№10164 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.0993343033943",
- "latitude": "44.5583429",
- "address": "Прасковеевская 21",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-20-09-54-gsc.jpg",
- "trainings": 0
- },
- {
- "id": 10165,
- "name": "№10165 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.09849181353457",
- "latitude": "44.55854653274429",
- "address": "Прасковеевская 28",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-20-09-53-se9.jpg",
- "trainings": 0
- },
- {
- "id": 10166,
- "name": "№10166 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.09683084487916",
- "latitude": "44.55910608092861",
- "address": "Прасковеевская 11",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-20-09-39-hzj.jpg",
- "trainings": 0
- },
- {
- "id": 10167,
- "name": "№10167 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.096294231427244",
- "latitude": "44.55930710229263",
- "address": "Прасковеевская 7",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-20-09-06-pae.jpg",
- "trainings": 0
- },
- {
- "id": 10168,
- "name": "№10168 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.06546089229414",
- "latitude": "44.549763291897726",
- "address": "Леселидзе 10",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-22-09-02-i_k.jpg",
- "trainings": 0
- },
- {
- "id": 10170,
- "name": "№10170 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.504630",
- "latitude": "55.687130",
- "address": "Реабилитация",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-10-23-09-37-fc9.jpg",
- "trainings": 0
- },
- {
- "id": 10171,
- "name": "№10171 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.058764934539795",
- "latitude": "44.55528748653631",
- "address": "Революционная улица",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-11-10-09-53-yyd.jpg",
- "trainings": 1
- },
- {
- "id": 10172,
- "name": "№10172 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "38.05603981018067",
- "latitude": "44.54862058724445",
- "address": "Южная",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-11-10-09-51-asp.jpg",
- "trainings": 3
- },
- {
- "id": 10173,
- "name": "№10173 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.10043036937714",
- "latitude": "44.55571178595314",
- "address": "Жуковского 14",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-11-11-09-38-k1u.jpeg",
- "trainings": 0
- },
- {
- "id": 10174,
- "name": "№10174 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.12481344491244",
- "latitude": "51.698824227462275",
- "address": "Unnamed Road",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-11-13-09-42-ebw.jpg",
- "trainings": 1
- },
- {
- "id": 10175,
- "name": "№10175 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "57.8106358",
- "latitude": "58.0911565",
- "address": "Ленина 36",
- "city_id": 8088,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-11-17-09-02-7q-.jpg",
- "trainings": 1
- },
- {
- "id": 10176,
- "name": "№10176 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.13965566456318",
- "latitude": "56.12474266695262",
- "address": "проспект Испытателей, 27",
- "city_id": 7942,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-13-08-09-29-ba6.jpg",
- "trainings": 0
- },
- {
- "id": 10177,
- "name": "№10177 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.17679124325514",
- "latitude": "55.310964472067965",
- "address": "улица Вороново, 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-14-13-09-45-gtv.jpg",
- "trainings": 0
- },
- {
- "id": 10178,
- "name": "№10178 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.177230",
- "latitude": "55.311297",
- "address": "ЛМС поселок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-14-13-09-00-qnh.jpg",
- "trainings": 0
- },
- {
- "id": 10179,
- "name": "№10179 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "57.545914649963386",
- "latitude": "65.98813839296207",
- "address": "На парковой",
- "city_id": 672,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-15-12-09-39-sft.jpeg",
- "trainings": 2
- },
- {
- "id": 10180,
- "name": "№10180 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.4508436024189",
- "latitude": "55.67821808538296",
- "address": "Большая Очаковская улица, 33",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-15-12-09-20-h2-.jpg",
- "trainings": 1
- },
- {
- "id": 10181,
- "name": "№10181 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "63.013908863067634",
- "latitude": "57.68331858659221",
- "address": "пос. Пионерский ул. Лесная 13",
- "city_id": 7914,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-15-15-09-58-ygk.jpg",
- "trainings": 1
- },
- {
- "id": 10182,
- "name": "№10182 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "54.177328863143934",
- "latitude": "56.27798340309067",
- "address": "Улица Нагорная",
- "city_id": 8535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-16-17-09-09-wvw.jpg",
- "trainings": 1
- },
- {
- "id": 10183,
- "name": "№10183 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "54.190873503685005",
- "latitude": "56.28231931771545",
- "address": "улица Суворова 19",
- "city_id": 8535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-16-17-09-47-1kp.jpg",
- "trainings": 1
- },
- {
- "id": 10184,
- "name": "№10184 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "54.18817788362504",
- "latitude": "56.28381116366281",
- "address": "Улица Суворова 35",
- "city_id": 8535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-16-17-09-34-mfz.jpg",
- "trainings": 1
- },
- {
- "id": 10185,
- "name": "№10185 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "54.19736713171006",
- "latitude": "56.28417741634335",
- "address": "Дорожная 9",
- "city_id": 8535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-16-17-09-00-2tf.jpg",
- "trainings": 1
- },
- {
- "id": 10186,
- "name": "№10186 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "54.18659001588822",
- "latitude": "56.28481165049203",
- "address": "Улица Новая",
- "city_id": 8535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-16-17-09-46-a8q.jpg",
- "trainings": 1
- },
- {
- "id": 10187,
- "name": "№10187 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "54.21664148569108",
- "latitude": "56.26559236640225",
- "address": "Песчанный переулок",
- "city_id": 8535,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-16-17-09-01-wox.jpg",
- "trainings": 1
- },
- {
- "id": 10188,
- "name": "№10188 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.618518471717838",
- "latitude": "53.92846375158691",
- "address": " ул. Натуралистов 10",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-16-23-09-01-th_.jpg",
- "trainings": 1
- },
- {
- "id": 10189,
- "name": "№10189 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "60.562203",
- "latitude": "56.814388",
- "address": "Белореченская улица",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-17-18-09-18--wq.jpg",
- "trainings": 1
- },
- {
- "id": 10190,
- "name": "№10190 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-9.157527",
- "latitude": "38.729935",
- "address": "Rua Castilho",
- "city_id": 7764,
- "country_id": 41,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-18-12-09-45-8vy.jpg",
- "trainings": 0
- },
- {
- "id": 10192,
- "name": "№10192 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.9460096359253",
- "latitude": "55.99482894587614",
- "address": "Павлова, 52",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-19-08-09-31-jm-.jpg",
- "trainings": 1
- },
- {
- "id": 10193,
- "name": "№10193 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.95213580131532",
- "latitude": "55.99638299019071",
- "address": "Павлова, 42",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-19-08-09-49-bct.jpg",
- "trainings": 0
- },
- {
- "id": 10194,
- "name": "№10194 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.085116329257296",
- "latitude": "44.55515361945345",
- "address": "Первомайський 8",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-20-08-09-06-z4m.jpg",
- "trainings": 0
- },
- {
- "id": 10195,
- "name": "№10195 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "7.010467710206286",
- "latitude": "43.54799345190053",
- "address": "Boulevard du Midi Jean Hibert, Франция",
- "city_id": 7906,
- "country_id": 24,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-20-09-09-21-rlu.jpg",
- "trainings": 0
- },
- {
- "id": 10196,
- "name": "№10196 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.76432968396694",
- "latitude": "32.072913440384134",
- "address": "Набережная",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-20-10-09-31-ag3.jpg",
- "trainings": 0
- },
- {
- "id": 10197,
- "name": "№10197 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.236453",
- "latitude": "54.851797",
- "address": "клубная 13",
- "city_id": 8028,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-21-12-09-12-wis.jpg",
- "trainings": 1
- },
- {
- "id": 10198,
- "name": "№10198 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.637294769287111",
- "latitude": "45.06762563651908",
- "address": "Zlatni Rt",
- "city_id": 9218,
- "country_id": 26,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-21-14-09-47-vkh.jpeg",
- "trainings": 1
- },
- {
- "id": 10199,
- "name": "№10199 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.472087450325493",
- "latitude": "59.96311635924728",
- "address": "Ильинская слобода, 17",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-22-12-09-50-e88.jpg",
- "trainings": 1
- },
- {
- "id": 10200,
- "name": "№10200 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "55.82791149616242",
- "latitude": "54.701046386059055",
- "address": "Правды 23",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-22-13-09-52-l1k.jpg",
- "trainings": 2
- },
- {
- "id": 10201,
- "name": "№10201 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "103.88363034677211",
- "latitude": "52.52696844128447",
- "address": "94 квартал",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-23-02-09-10--li.jpg",
- "trainings": 1
- },
- {
- "id": 10202,
- "name": "№10202 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.512881755828865",
- "latitude": "55.79101604433972",
- "address": "Парк Березовая роща (ул Куусинена и 3 песчаная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-23-03-09-28-osm.png",
- "trainings": 4
- },
- {
- "id": 10203,
- "name": "№10203 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.239945411682136",
- "latitude": "55.94642431763822",
- "address": "Вольгинский, ул. Старовская, 9. Стадион Вольгарь.",
- "city_id": 8376,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-23-10-09-23-nut.jpg",
- "trainings": 2
- },
- {
- "id": 10205,
- "name": "№10205 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "53.241065740585334",
- "latitude": "56.8890400005845",
- "address": "Воткинское шоссе, 39",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-24-10-09-37-0me.jpeg",
- "trainings": 0
- },
- {
- "id": 10206,
- "name": "№10206 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "69.59960181942735",
- "latitude": "42.30774483115163",
- "address": "Парк независимости",
- "city_id": 422,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-24-22-09-21-eav.jpg",
- "trainings": 2
- },
- {
- "id": 10207,
- "name": "№10207 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.87660259674887",
- "latitude": "43.25298381516573",
- "address": "Дуйсенова, 100",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-25-11-09-21-thi.jpg",
- "trainings": 0
- },
- {
- "id": 10208,
- "name": "№10208 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.18456077575684",
- "latitude": "44.5106212492451",
- "address": "улица Винодела Егорова",
- "city_id": 557,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-25-22-09-31-4b2.jpg",
- "trainings": 0
- },
- {
- "id": 10209,
- "name": "№10209 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "34.18569803237916",
- "latitude": "44.51330847090418",
- "address": "улица Стахановская",
- "city_id": 557,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-25-22-09-43-hlp.jpg",
- "trainings": 1
- },
- {
- "id": 10210,
- "name": "№10210 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.25091115385294",
- "latitude": "60.00654211011755",
- "address": "Камышовая улица, 9 корпус 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-26-09-09-08-iym.jpg",
- "trainings": 0
- },
- {
- "id": 10211,
- "name": "№10211 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.87703690735363",
- "latitude": "43.25225086797902",
- "address": "Брусиловского, 66",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-26-21-09-58-e8i.jpg",
- "trainings": 0
- },
- {
- "id": 10212,
- "name": "№10212 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.585680812597275",
- "latitude": "50.19768703953767",
- "address": "проспект Труда, 18а",
- "city_id": 8089,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-27-19-09-56-l0p.jpg",
- "trainings": 1
- },
- {
- "id": 10213,
- "name": "№10213 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "86.13083839416505",
- "latitude": "55.34385653806105",
- "address": "Тухачевского 2",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-28-05-09-56-p4f.jpg",
- "trainings": 0
- },
- {
- "id": 10214,
- "name": "№10214 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.13272584761407",
- "latitude": "56.319558159064414",
- "address": "Зеленый переулок, 13/30",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-28-09-09-28-yqf.jpg",
- "trainings": 0
- },
- {
- "id": 10215,
- "name": "№10215 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.62933565676212",
- "latitude": "41.652810742253365",
- "address": "Bicycle Lane",
- "city_id": 381,
- "country_id": 8,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-28-16-09-03-_ku.jpg",
- "trainings": 2
- },
- {
- "id": 10216,
- "name": "№10216 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "73.39791543781757",
- "latitude": "61.252724136877426",
- "address": "проспект Ленина, 33А",
- "city_id": 565,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-08-09-50-v7p.jpg",
- "trainings": 0
- },
- {
- "id": 10217,
- "name": "№10217 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "73.40058825910091",
- "latitude": "61.255197938177645",
- "address": "улица Островского, 6",
- "city_id": 565,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-08-09-18-p7-.jpg",
- "trainings": 0
- },
- {
- "id": 10218,
- "name": "№10218 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "73.39934505522251",
- "latitude": "61.25425920010931",
- "address": "проспект Ленина, 34",
- "city_id": 565,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-08-09-09-iox.jpg",
- "trainings": 0
- },
- {
- "id": 10219,
- "name": "№10219 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "73.39522786438465",
- "latitude": "61.2515631148894",
- "address": "проспект Ленина, 29Т",
- "city_id": 565,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-08-09-08-2ok.jpg",
- "trainings": 0
- },
- {
- "id": 10220,
- "name": "№10220 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.51788449287415",
- "latitude": "59.83425502900882",
- "address": "Шлишселбургский проспект дом 34 корпус 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-09-09-55-ml3.jpg",
- "trainings": 2
- },
- {
- "id": 10221,
- "name": "№10221 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.97430485486984",
- "latitude": "55.79289832606733",
- "address": "улица Некрасова, 22С",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-11-09-30-j1v.jpg",
- "trainings": 0
- },
- {
- "id": 10222,
- "name": "№10222 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "75.17878890037537",
- "latitude": "61.25480919244102",
- "address": "улица Солнечная, 19",
- "city_id": 8131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-13-09-05-fye.jpg",
- "trainings": 0
- },
- {
- "id": 10223,
- "name": "№10223 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.528856307268143",
- "latitude": "42.47315807209534",
- "address": "ж.к Хале, 4Б",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-56-tvd.jpg",
- "trainings": 0
- },
- {
- "id": 10226,
- "name": "№10226 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.498478613793853",
- "latitude": "42.48409335737672",
- "address": "ulitsa \"Tsar Ivan Aleksandar\", 42",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-44-pg2.jpg",
- "trainings": 1
- },
- {
- "id": 10227,
- "name": "№10227 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.524567119777203",
- "latitude": "42.473558692889256",
- "address": "ulitsa \"Balaton\", 2А",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-53-cnx.jpg",
- "trainings": 0
- },
- {
- "id": 10228,
- "name": "№10228 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.52560982853174",
- "latitude": "42.47906499056034",
- "address": "ж.к. Зорница, 8А",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-48-zju.jpg",
- "trainings": 0
- },
- {
- "id": 10229,
- "name": "№10229 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.50551538914442",
- "latitude": "42.488865679088825",
- "address": "ulitsa \"Stara Planina\", 1Б",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-16-4ey.jpg",
- "trainings": 0
- },
- {
- "id": 10230,
- "name": "№10230 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.499450579285625",
- "latitude": "42.4852843703141",
- "address": "Unnamed Road",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-01-150.jpg",
- "trainings": 0
- },
- {
- "id": 10231,
- "name": "№10231 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.4885189011693",
- "latitude": "42.48187371557168",
- "address": "Златен Рог, 8А",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-19-ldd.jpg",
- "trainings": 0
- },
- {
- "id": 10232,
- "name": "№10232 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.490442045032978",
- "latitude": "42.47940449716595",
- "address": "ulitsa \"Veliko Tarnovo\", 15",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-30-jym.jpg",
- "trainings": 0
- },
- {
- "id": 10233,
- "name": "№10233 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.507670544087887",
- "latitude": "42.47510823041019",
- "address": "ulitsa \"Chumerna\", 23",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-55-j6u.jpg",
- "trainings": 0
- },
- {
- "id": 10234,
- "name": "№10234 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.5212844312191",
- "latitude": "42.47020749514627",
- "address": "улица „Граф Игнатиев“, 78",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-51-spw.jpg",
- "trainings": 0
- },
- {
- "id": 10235,
- "name": "№10235 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "26.526813805103302",
- "latitude": "42.47493933119971",
- "address": "ulitsa \"Milin Kamak\", 24А",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-15-pa1.jpg",
- "trainings": 0
- },
- {
- "id": 10236,
- "name": "№10236 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.519915498793125",
- "latitude": "42.4896995988813",
- "address": "ulitsa \"Borovets\", 15",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-19-77z.jpg",
- "trainings": 0
- },
- {
- "id": 10237,
- "name": "№10237 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.506063230335712",
- "latitude": "42.48144273443993",
- "address": "ulitsa \"Han Tervel\", 2",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-50-86j.jpg",
- "trainings": 0
- },
- {
- "id": 10238,
- "name": "№10238 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "26.50824755430222",
- "latitude": "42.477614463077146",
- "address": "zh.k. Vasil Levski, 7А",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-35-yb0.jpg",
- "trainings": 1
- },
- {
- "id": 10239,
- "name": "№10239 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "26.51389595121145",
- "latitude": "42.48321683451399",
- "address": "ulitsa \"Bogomil\", 1",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-29-22-09-40-6ld.jpg",
- "trainings": 1
- },
- {
- "id": 10240,
- "name": "№10240 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "26.50623556226492",
- "latitude": "42.47745941834482",
- "address": "zh.k. Vasil Levski, 1З",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-30-07-09-54-bdu.jpg",
- "trainings": 0
- },
- {
- "id": 10241,
- "name": "№10241 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.632408797740936",
- "latitude": "41.65423589817048",
- "address": "Bicycle Lane",
- "city_id": 381,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-30-13-09-15-pbi.jpg",
- "trainings": 2
- },
- {
- "id": 10242,
- "name": "№10242 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.6378952562809",
- "latitude": "41.65688196007874",
- "address": "Bicycle Lane",
- "city_id": 381,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-30-13-09-44-n-z.jpg",
- "trainings": 2
- },
- {
- "id": 10243,
- "name": "№10243 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "26.49815104901791",
- "latitude": "42.48675969162417",
- "address": "Unnamed Road",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/09/2019-09-30-18-09-49-dvt.jpg",
- "trainings": 0
- },
- {
- "id": 10244,
- "name": "№10244 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.620767675340176",
- "latitude": "41.647484854172674",
- "address": "Griboedov Street, 2",
- "city_id": 381,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-01-15-10-58-uxg.jpg",
- "trainings": 1
- },
- {
- "id": 10245,
- "name": "№10245 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "132.898408",
- "latitude": "42.840962",
- "address": "улица Куйбышева",
- "city_id": 679,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-02-06-10-50-owl.jpg",
- "trainings": 1
- },
- {
- "id": 10246,
- "name": "№10246 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "26.528139151632782",
- "latitude": "42.473047035384404",
- "address": "ж.к Хале, 2Е",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-02-07-10-44-jw7.jpg",
- "trainings": 0
- },
- {
- "id": 10247,
- "name": "№10247 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.57512543350458",
- "latitude": "55.72358699946743",
- "address": "Комсомольский проспект, 36",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-02-11-10-43-myy.jpg",
- "trainings": 0
- },
- {
- "id": 10248,
- "name": "№10248 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.983688",
- "latitude": "43.389113",
- "address": "улица Таврическая 1/4",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-02-14-10-46-_zl.jpg",
- "trainings": 1
- },
- {
- "id": 10249,
- "name": "№10249 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.986197",
- "latitude": "43.388283",
- "address": "Цимлянская улица 29/1б",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-02-14-10-35-tvm.jpg",
- "trainings": 1
- },
- {
- "id": 10250,
- "name": "№10250 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.17603424936532",
- "latitude": "51.72504005999029",
- "address": "улица Щепкина, 4",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-02-14-10-34-e4i.jpg",
- "trainings": 1
- },
- {
- "id": 10251,
- "name": "№10251 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.576709613204",
- "latitude": "55.724470680145366",
- "address": "Комсомольский просп., 32 строение 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-03-09-10-19-yti.jpg",
- "trainings": 0
- },
- {
- "id": 10252,
- "name": "№10252 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "69.0196466397083",
- "latitude": "61.011289697148584",
- "address": "ул. Рознина, 104, Ханты-Мансийск, Ханты-Мансийский автономный округ, 628011",
- "city_id": 640,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-03-20-10-51-v3s.jpg",
- "trainings": 0
- },
- {
- "id": 10253,
- "name": "№10253 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "52.393404483315635",
- "latitude": "55.75910240200977",
- "address": "Лесное озеро",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-04-10-10-22-sle.jpg",
- "trainings": 1
- },
- {
- "id": 10254,
- "name": "№10254 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.53056740015745",
- "latitude": "52.028362995335",
- "address": "Верхоленская улица, 11",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-04-12-10-54-1mh.jpg",
- "trainings": 0
- },
- {
- "id": 10255,
- "name": "№10255 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.475358",
- "latitude": "55.707537",
- "address": "Веерная улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-04-19-10-47-ypk.jpg",
- "trainings": 2
- },
- {
- "id": 10256,
- "name": "№10256 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "103.89009160206896",
- "latitude": "52.53406131362591",
- "address": "Парк Строителей",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-05-02-10-04-caw.jpg",
- "trainings": 0
- },
- {
- "id": 10257,
- "name": "№10257 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.519417",
- "latitude": "55.734147",
- "address": "улица Генерала Ермолова",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-05-11-10-20-zym.jpg",
- "trainings": 1
- },
- {
- "id": 10258,
- "name": "№10258 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.42445778846741",
- "latitude": "59.972529944935175",
- "address": "пр. Маршала Блюхера 57, кор.3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-05-14-10-23-8zc.jpg",
- "trainings": 2
- },
- {
- "id": 10259,
- "name": "№10259 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.81900763511658",
- "latitude": "55.92403277130247",
- "address": "улица Карла Маркса, 2",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-05-16-10-38-v0u.jpg",
- "trainings": 1
- },
- {
- "id": 10260,
- "name": "№10260 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.49708368639502",
- "latitude": "55.748856463688355",
- "address": "Большая Филёвская улица, 20",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-05-21-10-53-ny3.jpg",
- "trainings": 2
- },
- {
- "id": 10261,
- "name": "№10261 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.49563224196278",
- "latitude": "55.749744101061744",
- "address": "Новозаводская улица, 27Б",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-05-21-10-13-lqm.jpg",
- "trainings": 2
- },
- {
- "id": 10262,
- "name": "№10262 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.81823065069082",
- "latitude": "55.92634003112487",
- "address": "Грабина 16",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-05-22-10-06-yyw.jpg",
- "trainings": 1
- },
- {
- "id": 10263,
- "name": "№10263 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "20.4826846719061",
- "latitude": "54.955139611973",
- "address": "Улица Окружная ",
- "city_id": 8442,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-06-12-10-23-yx0.jpg",
- "trainings": 0
- },
- {
- "id": 10264,
- "name": "№10264 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.299488306045536",
- "latitude": "59.96030992756222",
- "address": "Ораниенбаумская улица 13",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-06-14-10-42-0mc.jpg",
- "trainings": 2
- },
- {
- "id": 10265,
- "name": "№10265 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "36.19312930852175",
- "latitude": "51.74054336213146",
- "address": "ул. Садовая",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-07-07-10-40-aho.jpg",
- "trainings": 0
- },
- {
- "id": 10266,
- "name": "№10266 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "39.965595",
- "latitude": "43.407345",
- "address": "Олимпийский парк, Трибуна Т1",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-07-15-10-39--aw.jpg",
- "trainings": 1
- },
- {
- "id": 10267,
- "name": "№10267 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.946230",
- "latitude": "43.402217",
- "address": "Олимпийская набережная, кафе Парус",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-07-20-10-24-b9o.jpg",
- "trainings": 1
- },
- {
- "id": 10268,
- "name": "№10268 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.924512",
- "latitude": "43.429150",
- "address": "улица Ульянова, кинотеатр Комсомолец",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-07-21-10-10-3ws.jpg",
- "trainings": 0
- },
- {
- "id": 10269,
- "name": "№10269 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "39.919025",
- "latitude": "43.430758",
- "address": "улица Куйбышева / Ленина, во дворе",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-07-21-10-02-100.jpg",
- "trainings": 0
- },
- {
- "id": 10270,
- "name": "№10270 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.071777",
- "latitude": "54.891328",
- "address": "Куйбышева 61б",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-08-08-10-17-mkp.jpg",
- "trainings": 1
- },
- {
- "id": 10271,
- "name": "№10271 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.72095990164599",
- "latitude": "46.4677684387045",
- "address": "Богдана Хмельницкого",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-10-11-10-58-qer.jpg",
- "trainings": 0
- },
- {
- "id": 10272,
- "name": "№10272 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.741222",
- "latitude": "43.582547",
- "address": "Лысая Гора СНТ поселок",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-10-13-10-15-sfb.jpg",
- "trainings": 0
- },
- {
- "id": 10273,
- "name": "№10273 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.740780764132346",
- "latitude": "43.5824426426183",
- "address": "жк рио",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-10-14-10-25-war.jpg",
- "trainings": 0
- },
- {
- "id": 10274,
- "name": "№10274 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.56687629967927",
- "latitude": "55.72537039003369",
- "address": "Кооперативная улица, 2 корпус 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-11-13-10-46-cz2.jpg",
- "trainings": 0
- },
- {
- "id": 10276,
- "name": "№10276 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "103.82914064424195",
- "latitude": "52.51062523793093",
- "address": "Парк ДК Современник",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-12-05-10-17-r_c.jpg",
- "trainings": 0
- },
- {
- "id": 10277,
- "name": "№10277 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "40.003678062940836",
- "latitude": "43.40459148170036",
- "address": "Худякова 7а",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-12-12-10-50-8iq.jpg",
- "trainings": 1
- },
- {
- "id": 10278,
- "name": "№10278 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.87400084733964",
- "latitude": "59.22054838345318",
- "address": "Вологда, ул. Октябрьская",
- "city_id": 19,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-12-21-10-48--4i.jpg",
- "trainings": 1
- },
- {
- "id": 10279,
- "name": "№10279 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.690653085708625",
- "latitude": "43.63095789461467",
- "address": "Сочи, Крымская улица",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-13-23-10-30-rly.jpg",
- "trainings": 1
- },
- {
- "id": 10281,
- "name": "№10281 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.606484",
- "latitude": "55.759678",
- "address": "Вознесенский пер, 18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-14-14-10-31-0cl.jpg",
- "trainings": 3
- },
- {
- "id": 10282,
- "name": "№10282 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.567542158067226",
- "latitude": "55.72298861544805",
- "address": "улица Доватора, д. 11 корп. 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-14-15-10-28-ese.jpg",
- "trainings": 0
- },
- {
- "id": 10283,
- "name": "№10283 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.56894160062075",
- "latitude": "55.72355829839218",
- "address": "улица Доватора, 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-14-15-10-55-0jt.jpg",
- "trainings": 0
- },
- {
- "id": 10284,
- "name": "№10284 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.18921422958375",
- "latitude": "55.98803601885402",
- "address": "площадь Колумба, 1 Зеленоград, Москва, Россия, 124575 55.987749, 37.189288",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-14-17-10-07-uky.jpg",
- "trainings": 0
- },
- {
- "id": 10285,
- "name": "№10285 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.077037",
- "latitude": "54.894056",
- "address": "просп. Победы, 47",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-15-10-10-51-zqp.jpg",
- "trainings": 1
- },
- {
- "id": 10286,
- "name": "№10286 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.07346343994141",
- "latitude": "44.54749576812545",
- "address": "Молодёжная 1",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-16-10-10-53-cd1.jpg",
- "trainings": 0
- },
- {
- "id": 10287,
- "name": "№10287 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.615088",
- "latitude": "55.869103",
- "address": "Северный бульвар",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-16-13-10-52-eby.jpg",
- "trainings": 0
- },
- {
- "id": 10288,
- "name": "№10288 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.613455",
- "latitude": "55.870513",
- "address": "улица Бестужевых",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-16-13-10-30-y_t.jpg",
- "trainings": 0
- },
- {
- "id": 10289,
- "name": "№10289 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.611678",
- "latitude": "55.873303",
- "address": "Юрловский проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-16-13-10-35-nu8.jpg",
- "trainings": 0
- },
- {
- "id": 10290,
- "name": "№10290 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.07024478912354",
- "latitude": "44.55077670888622",
- "address": "Гринченко 25",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-16-16-10-29-9cs.jpg",
- "trainings": 0
- },
- {
- "id": 10291,
- "name": "№10291 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.479065135121346",
- "latitude": "55.78220999516098",
- "address": "улица Маршала Тухачевского, 21 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-17-13-10-59-aoj.jpg",
- "trainings": 0
- },
- {
- "id": 10292,
- "name": "№10292 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "92.9467401365366",
- "latitude": "56.0477075090899",
- "address": "Сергея Лазо 34/1",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-18-06-10-57-81b.jpg",
- "trainings": 1
- },
- {
- "id": 10293,
- "name": "№10293 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.486632789932635",
- "latitude": "55.94352231369433",
- "address": "Гранитный тупик, 13",
- "city_id": 35,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-18-18-10-37-rgo.jpg",
- "trainings": 0
- },
- {
- "id": 10294,
- "name": "№10294 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.55335326730347",
- "latitude": "55.932227061173066",
- "address": "ул. Арсюкова, 23",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-19-14-10-33-ryw.jpg",
- "trainings": 0
- },
- {
- "id": 10295,
- "name": "№10295 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.08910854905844",
- "latitude": "52.96145358249501",
- "address": "улица 5 Августа, 19",
- "city_id": 93,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-20-01-10-57-tv9.jpg",
- "trainings": 0
- },
- {
- "id": 10296,
- "name": "№10296 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "158.62322330474854",
- "latitude": "54.69417451737897",
- "address": "Зеленый переулок, 1",
- "city_id": 8160,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-20-12-10-27-pmx.jpg",
- "trainings": 0
- },
- {
- "id": 10297,
- "name": "№10297 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.62009775638581",
- "latitude": "55.118587134972934",
- "address": "энгельса 2",
- "city_id": 796,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-20-12-10-13-l7q.jpg",
- "trainings": 1
- },
- {
- "id": 10298,
- "name": "№10298 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.97433972358704",
- "latitude": "59.11889094785321",
- "address": "Архангелькая 9",
- "city_id": 148,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-20-12-10-36-x3s.jpg",
- "trainings": 0
- },
- {
- "id": 10299,
- "name": "№10299 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.470337",
- "latitude": "55.741351",
- "address": "Большая Филёвская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-21-00-10-44-nvo.jpg",
- "trainings": 0
- },
- {
- "id": 10301,
- "name": "№10301 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "158.62788230180738",
- "latitude": "54.695043177584544",
- "address": "улица Пушкина, 3",
- "city_id": 8160,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-22-09-10-31-yvm.jpg",
- "trainings": 0
- },
- {
- "id": 10302,
- "name": "№10302 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.25970798730851",
- "latitude": "48.22245235554393",
- "address": "Юбилейная улица, 9",
- "city_id": 7388,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-22-10-10-07-exi.jpg",
- "trainings": 0
- },
- {
- "id": 10303,
- "name": "№10303 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "35.93950934708119",
- "latitude": "51.65313533351846",
- "address": "Спортивный переулок, 3",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-23-17-10-05-8zt.jpg",
- "trainings": 0
- },
- {
- "id": 10304,
- "name": "№10304 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "158.62457500417804",
- "latitude": "54.69250304929283",
- "address": "Партизанская ул., д. 50",
- "city_id": 8160,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-22-17-10-05-lu1.jpg",
- "trainings": 0
- },
- {
- "id": 10305,
- "name": "№10305 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "158.62001571018482",
- "latitude": "54.68713231823558",
- "address": "Заречная ул., д. 7",
- "city_id": 8160,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-22-17-10-45-yjz.jpg",
- "trainings": 0
- },
- {
- "id": 10306,
- "name": "№10306 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "158.64488314837217",
- "latitude": "53.048624960440584",
- "address": "улица Владивостокская, 41 корпус 3",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-23-07-10-50-uzx.jpg",
- "trainings": 0
- },
- {
- "id": 10307,
- "name": "№10307 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "158.64453814923763",
- "latitude": "53.04855542670545",
- "address": "улица Владивостокская, 41 корпус 4",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-23-07-10-55-fiz.jpg",
- "trainings": 0
- },
- {
- "id": 10308,
- "name": "№10308 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.074997",
- "latitude": "68.965850",
- "address": "улица Егорова",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-23-14-10-21-ren.jpg",
- "trainings": 1
- },
- {
- "id": 10309,
- "name": "№10309 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "33.075078",
- "latitude": "68.964103",
- "address": "улица Коммуны",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-23-14-10-36-enq.jpg",
- "trainings": 1
- },
- {
- "id": 10310,
- "name": "№10310 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.078475",
- "latitude": "68.956842",
- "address": "улица Генерала Журбы",
- "city_id": 82,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-23-15-10-03-exs.jpg",
- "trainings": 0
- },
- {
- "id": 10311,
- "name": "№10311 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "158.67605980485678",
- "latitude": "52.95511841772426",
- "address": "улица Петра Ильичева, 54/2",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-24-06-10-55-c5l.jpg",
- "trainings": 0
- },
- {
- "id": 10312,
- "name": "№10312 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "158.66179414093497",
- "latitude": "52.96429195708463",
- "address": "Unnamed Road",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-24-07-10-30-yn-.jpg",
- "trainings": 0
- },
- {
- "id": 10313,
- "name": "№10313 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.91133463382722",
- "latitude": "54.98201893488062",
- "address": "Новогодняя улица",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-24-19-10-25-xon.jpg",
- "trainings": 1
- },
- {
- "id": 10314,
- "name": "№10314 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "158.66339642554522",
- "latitude": "53.05769946012695",
- "address": "Космический проезд, 12",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-25-01-10-37-1aj.jpg",
- "trainings": 0
- },
- {
- "id": 10315,
- "name": "№10315 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.40191315114498",
- "latitude": "60.03660011345985",
- "address": "улица Брянцева, 10",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-25-10-10-27-z_x.jpg",
- "trainings": 0
- },
- {
- "id": 10316,
- "name": "№10316 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.400231070816513",
- "latitude": "60.03583300441641",
- "address": "улица Брянцева, 8",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-25-10-10-40-gak.jpg",
- "trainings": 0
- },
- {
- "id": 10317,
- "name": "№10317 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.86765742301941",
- "latitude": "54.74251641877702",
- "address": "Рязанский район, Варские, ул. Экопарковая",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-25-12-10-04-xyk.jpg",
- "trainings": 0
- },
- {
- "id": 10318,
- "name": "№10318 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.59932732219751",
- "latitude": "55.789121984291654",
- "address": "ул. Тихвинская 17",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-25-12-10-45-y97.jpg",
- "trainings": 1
- },
- {
- "id": 10319,
- "name": "№10319 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "52.4170174570255",
- "latitude": "55.73282455",
- "address": "Парк гренада",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-25-22-10-34-rec.jpg",
- "trainings": 1
- },
- {
- "id": 10320,
- "name": "№10320 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.436488",
- "latitude": "69.076050",
- "address": "Корабельная улица",
- "city_id": 8113,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-26-10-10-37-t0g.jpg",
- "trainings": 1
- },
- {
- "id": 10321,
- "name": "№10321 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.45660378536264",
- "latitude": "55.758586726731245",
- "address": "Виктора Полякова 3",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-27-10-10-31-w5g.jpg",
- "trainings": 1
- },
- {
- "id": 10322,
- "name": "№10322 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "26.5105553",
- "latitude": "42.483935",
- "address": "ул. \"Стефан Караджа\" №72",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-27-12-10-46-0ke.jpg",
- "trainings": 0
- },
- {
- "id": 10323,
- "name": "№10323 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.81180319968052",
- "latitude": "55.67326278273626",
- "address": "Головачёва 17",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-29-11-10-04-mli.jpg",
- "trainings": 0
- },
- {
- "id": 10324,
- "name": "№10324 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.88473820686342",
- "latitude": "43.256366997844594",
- "address": "Оптовка",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-29-11-10-00-4cn.jpg",
- "trainings": 0
- },
- {
- "id": 10325,
- "name": "№10325 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "33.484554218302954",
- "latitude": "52.382287685132226",
- "address": "Белая березка",
- "city_id": 7430,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-29-15-10-43-ies.jpg",
- "trainings": 0
- },
- {
- "id": 10326,
- "name": "№10326 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "28.781948089599613",
- "latitude": "47.02926245504863",
- "address": "ул. Александру Маринеску 15/2",
- "city_id": 445,
- "country_id": 15,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-30-01-10-40-mob.jpg",
- "trainings": 0
- },
- {
- "id": 10327,
- "name": "№10327 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.549755",
- "latitude": "50.419542",
- "address": "Бастионная улица, 1/36",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/10/2019-10-30-15-10-19-ecm.jpg",
- "trainings": 0
- },
- {
- "id": 10328,
- "name": "№10328 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "103.86489434581456",
- "latitude": "52.51786362919846",
- "address": "13 микрорайон, дом 7",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-02-02-11-29-0ul.jpg",
- "trainings": 0
- },
- {
- "id": 10329,
- "name": "№10329 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "103.85044783293488",
- "latitude": "52.49504346591524",
- "address": "17А микрорайон, дом 22",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-02-03-11-25-qby.jpg",
- "trainings": 0
- },
- {
- "id": 10330,
- "name": "№10330 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.423947",
- "latitude": "69.077386",
- "address": "улица Сгибнева",
- "city_id": 8113,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-02-09-11-08-xm9.jpg",
- "trainings": 2
- },
- {
- "id": 10331,
- "name": "№10331 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.05861407518387",
- "latitude": "55.79927395956403",
- "address": "улица Клары Цеткин, 16",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-03-15-11-09--do.jpg",
- "trainings": 0
- },
- {
- "id": 10332,
- "name": "№10332 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "20.99114115223345",
- "latitude": "52.21354757112171",
- "address": "Żwirki i Wigury 34",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-03-18-11-29-3u8.jpg",
- "trainings": 1
- },
- {
- "id": 10333,
- "name": "№10333 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "89.179250483213",
- "latitude": "55.53264664295609",
- "address": "3-й микрорайон, Школа №8",
- "city_id": 8175,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-04-16-11-10-zxi.jpg",
- "trainings": 2
- },
- {
- "id": 10334,
- "name": "№10334 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "89.15941069412354",
- "latitude": "55.542381027284485",
- "address": "6-й микрорайон, Школа №3",
- "city_id": 8175,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-04-16-11-12-ijb.jpg",
- "trainings": 0
- },
- {
- "id": 10335,
- "name": "№10335 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "89.18024733840942",
- "latitude": "55.528569797918806",
- "address": "2-й микрорайон, 1/11, 1/12, 1/13",
- "city_id": 8175,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-04-16-11-31-zcv.jpg",
- "trainings": 0
- },
- {
- "id": 10336,
- "name": "№10336 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "89.18155711659375",
- "latitude": "55.53955692014905",
- "address": "Стадион Энергия",
- "city_id": 8175,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-04-16-11-19-6ty.jpg",
- "trainings": 1
- },
- {
- "id": 10337,
- "name": "№10337 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "89.17582017749123",
- "latitude": "55.53834890232824",
- "address": "4-й микрорайон, ФОК \"Сибирь\"",
- "city_id": 8175,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-04-16-11-21-8ur.jpg",
- "trainings": 2
- },
- {
- "id": 10338,
- "name": "№10338 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "129.73912560745993",
- "latitude": "62.085387659478556",
- "address": "Можайского, 23",
- "city_id": 622,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-06-13-11-39-nel.jpg",
- "trainings": 0
- },
- {
- "id": 10339,
- "name": "№10339 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "12.728420197963715",
- "latitude": "56.03591958520771",
- "address": "Jordbogatan",
- "city_id": 9060,
- "country_id": 28,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-06-13-11-06-phc.jpg",
- "trainings": 1
- },
- {
- "id": 10340,
- "name": "№10340 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.095714",
- "latitude": "59.565987",
- "address": "Красноармейский проспект",
- "city_id": 29,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-06-18-11-08-0de.jpg",
- "trainings": 0
- },
- {
- "id": 10341,
- "name": "№10341 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.86926893389683",
- "latitude": "43.25182454409532",
- "address": "Будан",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-07-13-11-01-fjr.jpg",
- "trainings": 0
- },
- {
- "id": 10342,
- "name": "№10342 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.86902278995831",
- "latitude": "43.25062447493129",
- "address": "Даргомыжского, 32",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-07-13-11-40-m1c.jpg",
- "trainings": 0
- },
- {
- "id": 10343,
- "name": "№10343 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "98.33037324249746",
- "latitude": "7.9278771658752065",
- "address": "ถนนซอยน้ำตก, 315",
- "city_id": 8739,
- "country_id": 72,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-08-10-11-07-wgf.jpg",
- "trainings": 0
- },
- {
- "id": 10344,
- "name": "№10344 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.18857574462891",
- "latitude": "51.67021636872797",
- "address": "плехановская 35",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-08-14-11-22-bly.jpg",
- "trainings": 0
- },
- {
- "id": 10345,
- "name": "№10345 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.530809",
- "latitude": "50.435765",
- "address": "Бульвар леси украинки 5а",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-09-11-11-47-y7d.jpg",
- "trainings": 0
- },
- {
- "id": 10346,
- "name": "№10346 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.530838",
- "latitude": "50.435050",
- "address": "Леси Украинки бульвар 7",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-09-11-11-45-foc.jpg",
- "trainings": 1
- },
- {
- "id": 10347,
- "name": "№10347 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "36.74021941930193",
- "latitude": "55.39334654571488",
- "address": "Ул. Найдова-Железова",
- "city_id": 85,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-09-16-11-12-di9.jpg",
- "trainings": 0
- },
- {
- "id": 10348,
- "name": "№10348 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "121.05589382400923",
- "latitude": "14.55106821956823",
- "address": "Market Market, 26th, Taguig",
- "city_id": 8767,
- "country_id": 55,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-10-20-11-13-6fe.jpg",
- "trainings": 0
- },
- {
- "id": 10349,
- "name": "№10349 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.60046124458314",
- "latitude": "55.88384760961209",
- "address": "Костромская улица, 20",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-10-20-11-56-gjh.jpg",
- "trainings": 0
- },
- {
- "id": 10350,
- "name": "№10350 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "158.61843301336194",
- "latitude": "54.69796408187549",
- "address": "с. Мильково, пер. Торговый д.2",
- "city_id": 8160,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-11-09-11-32-_7r.jpg",
- "trainings": 0
- },
- {
- "id": 10351,
- "name": "№10351 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "38.247701",
- "latitude": "54.840389",
- "address": "Садовая, 33",
- "city_id": 8028,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-11-09-11-11-juf.jpg",
- "trainings": 1
- },
- {
- "id": 10352,
- "name": "№10352 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.07826459407807",
- "latitude": "44.54707225913536",
- "address": "Парус 20",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-12-08-11-26-wyo.jpg",
- "trainings": 0
- },
- {
- "id": 10353,
- "name": "№10353 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.07924628257752",
- "latitude": "44.54763807270117",
- "address": "Парус 18",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-12-08-11-58-51z.jpg",
- "trainings": 0
- },
- {
- "id": 10354,
- "name": "№10354 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.07248711585999",
- "latitude": "44.54791715439398",
- "address": "Леселидзе 21",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-12-11-11-25-hwa.jpg",
- "trainings": 0
- },
- {
- "id": 10355,
- "name": "№10355 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.63041615486146",
- "latitude": "55.89699063046819",
- "address": "улица Корнейчука, 42",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-12-22-11-37-pjy.jpg",
- "trainings": 0
- },
- {
- "id": 10356,
- "name": "№10356 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.6364707924131",
- "latitude": "55.72689074938902",
- "address": "ул. Малая Пионерская, 23/31",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-13-08-11-06-4sd.jpg",
- "trainings": 0
- },
- {
- "id": 10357,
- "name": "№10357 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.72270007483295",
- "latitude": "55.90552783110905",
- "address": "Новомытищинский проспект 80к3",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-13-14-11-58-cuj.jpg",
- "trainings": 0
- },
- {
- "id": 10358,
- "name": "№10358 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.511358000983726",
- "latitude": "55.536230576847515",
- "address": "м.Бунинская аллея",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-13-18-11-03-4ys.jpg",
- "trainings": 1
- },
- {
- "id": 10359,
- "name": "№10359 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.510187259404475",
- "latitude": "55.529651979645216",
- "address": "ул.Южнобутовская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-13-18-11-23-jui.jpg",
- "trainings": 2
- },
- {
- "id": 10360,
- "name": "№10360 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.50443514436484",
- "latitude": "55.79537327688554",
- "address": "ул. Сальвадора Альенде",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-14-21-11-36-7ct.jpg",
- "trainings": 0
- },
- {
- "id": 10361,
- "name": "№10361 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.3946418762207",
- "latitude": "55.84018109250029",
- "address": "Магистральная 2а",
- "city_id": 90,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-14-22-11-36-s7m.jpeg",
- "trainings": 1
- },
- {
- "id": 10362,
- "name": "№10362 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "103.87169117245307",
- "latitude": "52.54275224021399",
- "address": "Парк им. 10-летия Ангарска",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-16-02-11-14-dbo.jpg",
- "trainings": 0
- },
- {
- "id": 10363,
- "name": "№10363 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.43474297225475",
- "latitude": "55.82500410967917",
- "address": "Волоколамское шоссе, 92",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-16-14-11-59-wgo.jpg",
- "trainings": 0
- },
- {
- "id": 10364,
- "name": "№10364 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "36.701438570451145",
- "latitude": "55.415846251083366",
- "address": "Академия",
- "city_id": 85,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-17-20-11-43-rxj.jpg",
- "trainings": 0
- },
- {
- "id": 10366,
- "name": "№10366 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "42.67907314002514",
- "latitude": "56.20074678612398",
- "address": "Комсомольская улица, 19",
- "city_id": 8474,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-19-13-11-44-w18.jpg",
- "trainings": 3
- },
- {
- "id": 10367,
- "name": "№10367 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.64123422675766",
- "latitude": "54.22229984711717",
- "address": "Улица Токарева ",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-20-20-11-40-yjk.jpg",
- "trainings": 2
- },
- {
- "id": 10368,
- "name": "№10368 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.300330519676212",
- "latitude": "60.02677638868048",
- "address": "Новоколомяжский проспект",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-21-19-11-28-rga.jpg",
- "trainings": 2
- },
- {
- "id": 10369,
- "name": "№10369 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "55.86475624071868",
- "latitude": "54.82900389744429",
- "address": "Сливовая 2",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-22-14-11-00-ifr.jpg",
- "trainings": 1
- },
- {
- "id": 10370,
- "name": "№10370 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.85637315362692",
- "latitude": "55.67162166091969",
- "address": "yлица Сосновая, 1Kорпус5",
- "city_id": 65,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-23-16-11-17-bll.jpg",
- "trainings": 0
- },
- {
- "id": 10371,
- "name": "№10371 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.39135885238648",
- "latitude": "55.84008470396584",
- "address": "2-й Кардолентный проезд",
- "city_id": 90,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-23-22-11-17-xbo.jpeg",
- "trainings": 2
- },
- {
- "id": 10372,
- "name": "№10372 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "33.78479763865471",
- "latitude": "44.38865283582509",
- "address": "улица Космонавтов",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-24-14-11-49-lym.jpg",
- "trainings": 0
- },
- {
- "id": 10374,
- "name": "№10374 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.9043071269989",
- "latitude": "59.219572465380814",
- "address": "Г. Вологда, Пречистенская набережная, 44а",
- "city_id": 19,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-26-16-11-13-jpb.jpg",
- "trainings": 0
- },
- {
- "id": 10375,
- "name": "№10375 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.582536472086",
- "latitude": "54.19144505",
- "address": "Демонстрации 134",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-27-11-11-46-abe.jpg",
- "trainings": 0
- },
- {
- "id": 10376,
- "name": "№10376 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.59560775756837",
- "latitude": "56.90965831539028",
- "address": "Новаторов, 19",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-27-11-11-02-imp.jpg",
- "trainings": 0
- },
- {
- "id": 10377,
- "name": "№10377 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.9534131",
- "latitude": "52.40933095",
- "address": "Волгоградская,33",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-28-14-11-38-lzi.jpg",
- "trainings": 1
- },
- {
- "id": 10378,
- "name": "№10378 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "30.9686045750063",
- "latitude": "52.4526627",
- "address": "Богданова 10А",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/11/2019-11-28-14-11-50-the.jpg",
- "trainings": 1
- },
- {
- "id": 10379,
- "name": "№10379 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "69.0603794530034",
- "latitude": "60.994036506003376",
- "address": "улица Парковая, 92б",
- "city_id": 640,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-01-09-12-11-kfi.jpg",
- "trainings": 1
- },
- {
- "id": 10380,
- "name": "№10380 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "55.87373701063198",
- "latitude": "54.83176817990562",
- "address": "Брусничная 20",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-01-10-12-21-icm.jpg",
- "trainings": 1
- },
- {
- "id": 10381,
- "name": "№10381 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "69.04910042881966",
- "latitude": "61.00903739130655",
- "address": "улица Мира, 100",
- "city_id": 640,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-01-14-12-57-ipr.jpg",
- "trainings": 0
- },
- {
- "id": 10382,
- "name": "№10382 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.85435143858194",
- "latitude": "55.75648249270695",
- "address": "Новая улица, дом 6а",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-01-16-12-58-gsd.jpg",
- "trainings": 2
- },
- {
- "id": 10383,
- "name": "№10383 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.824901789426804",
- "latitude": "54.08828713149555",
- "address": "улица Мира, 29",
- "city_id": 8578,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-03-11-12-52-2md.jpg",
- "trainings": 1
- },
- {
- "id": 10384,
- "name": "№10384 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.765003321087306",
- "latitude": "32.05616115312122",
- "address": "Elifelet st., 12",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-05-20-12-39-e63.jpg",
- "trainings": 0
- },
- {
- "id": 10385,
- "name": "№10385 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.85621725022793",
- "latitude": "55.67051404980684",
- "address": "Сосновая улица, 1 Kорпус 2",
- "city_id": 65,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-05-21-12-27-wie.jpg",
- "trainings": 0
- },
- {
- "id": 10386,
- "name": "№10386 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.366922",
- "latitude": "59.927280",
- "address": "Полтавский проезд",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-06-02-12-47-lyr.jpg",
- "trainings": 1
- },
- {
- "id": 10387,
- "name": "№10387 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.60284841060639",
- "latitude": "55.74241696499854",
- "address": "2-й Обыденский переулок 8/8 с2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-06-23-12-10-qn9.jpg",
- "trainings": 1
- },
- {
- "id": 10388,
- "name": "№10388 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "57.54778832848133",
- "latitude": "65.98608345517088",
- "address": "Воркутинская 1",
- "city_id": 672,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-07-22-12-14-qwd.jpg",
- "trainings": 1
- },
- {
- "id": 10389,
- "name": "№10389 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "158.60541325828308",
- "latitude": "54.68797604695717",
- "address": "с. Мильково, пер. Томская д.18",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-08-06-12-17-_7t.jpg",
- "trainings": 0
- },
- {
- "id": 10390,
- "name": "№10390 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "27.63142014413257",
- "latitude": "53.95231081831209",
- "address": "Зелёный луг",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-08-18-12-16-h0p.jpg",
- "trainings": 1
- },
- {
- "id": 10391,
- "name": "№10391 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.031786465335244",
- "latitude": "55.74024920582449",
- "address": "Калинина 14",
- "city_id": 40,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-08-18-12-18-yfy.jpg",
- "trainings": 1
- },
- {
- "id": 10392,
- "name": "№10392 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.544469460844994",
- "latitude": "55.71699293965148",
- "address": "Лужнецкая набережная",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-09-18-12-41-m-g.jpg",
- "trainings": 1
- },
- {
- "id": 10393,
- "name": "№10393 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.02458179742098",
- "latitude": "55.38994870557974",
- "address": "улица Советская, 8",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-10-10-12-37-yx4.jpg",
- "trainings": 0
- },
- {
- "id": 10395,
- "name": "№10395 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.57026191800832",
- "latitude": "55.7589871115598",
- "address": "Большой Предтеченский переулок, 3 строение 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-11-17-12-59-plk.jpg",
- "trainings": 1
- },
- {
- "id": 10396,
- "name": "№10396 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "121.0630695827331",
- "latitude": "14.48860818590493",
- "address": "Lakeshore",
- "city_id": 8767,
- "country_id": 55,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-11-20-12-29-6z9.jpg",
- "trainings": 1
- },
- {
- "id": 10397,
- "name": "№10397 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.28281502425671",
- "latitude": "60.00304216682839",
- "address": "Серебристый бульвар, 15",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-12-11-12-21-i6x.jpg",
- "trainings": 2
- },
- {
- "id": 10400,
- "name": "№10400 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.980495",
- "latitude": "56.301120",
- "address": "проспект Гагарина",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-12-19-12-37-vo-.jpg",
- "trainings": 1
- },
- {
- "id": 10401,
- "name": "№10401 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.4763822555542",
- "latitude": "55.77691375685115",
- "address": "улица Народного Ополчения, 21 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-14-11-12-33-ejt.jpg",
- "trainings": 0
- },
- {
- "id": 10402,
- "name": "№10402 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.12921418118095",
- "latitude": "56.30545104200985",
- "address": "Ул. Левонадпрудная, детская площадка",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-15-20-12-16-j3x.jpg",
- "trainings": 2
- },
- {
- "id": 10405,
- "name": "№10405 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.1246829032898",
- "latitude": "56.29751793712287",
- "address": "Ул.Воробьевская",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-18-00-12-25-bou.jpg",
- "trainings": 1
- },
- {
- "id": 10406,
- "name": "№10406 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "26.714436672627933",
- "latitude": "58.35102664424498",
- "address": "Aianduse",
- "city_id": 577,
- "country_id": 29,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-18-10-12-38-bcz.jpg",
- "trainings": 0
- },
- {
- "id": 10407,
- "name": "№10407 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.53097319602966",
- "latitude": "44.37135508631362",
- "address": "Вишневая улица, 35А",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-19-09-12-30-dnf.jpg",
- "trainings": 0
- },
- {
- "id": 10408,
- "name": "№10408 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.98260345309973",
- "latitude": "57.07276321784257",
- "address": "Ленинградское шоссе, 87Б",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-19-22-12-45-zc7.jpg",
- "trainings": 0
- },
- {
- "id": 10409,
- "name": "№10409 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.0791170596159",
- "latitude": "44.5736134",
- "address": "шмидта 8А",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-20-11-12-27-qke.jpg",
- "trainings": 0
- },
- {
- "id": 10410,
- "name": "№10410 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.769042186439037",
- "latitude": "46.5535382823398",
- "address": "Пляж Лузанівка",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-20-23-12-19-tt4.jpg",
- "trainings": 1
- },
- {
- "id": 10411,
- "name": "№10411 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.75743246989926",
- "latitude": "32.03584722166314",
- "address": "Ha-Rav Khayim Heler 26",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-24-09-12-39-ykr.jpg",
- "trainings": 0
- },
- {
- "id": 10412,
- "name": "№10412 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "33.541114926338196",
- "latitude": "44.598465480395596",
- "address": "Брянская улица, 4",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-24-17-12-55-jyf.jpg",
- "trainings": 1
- },
- {
- "id": 10413,
- "name": "№10413 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.58971564471721",
- "latitude": "55.502970565964226",
- "address": "улица Маршала Савицкого, 18 корпус 2 строение 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-29-14-12-29-wun.jpg",
- "trainings": 1
- },
- {
- "id": 10414,
- "name": "№10414 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "109.19851334247217",
- "latitude": "12.258188253553449",
- "address": "Bo ke nam",
- "city_id": 7625,
- "country_id": 33,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-30-06-12-58-sdr.jpg",
- "trainings": 0
- },
- {
- "id": 10415,
- "name": "№10415 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "109.19663958892482",
- "latitude": "12.245006578449122",
- "address": "Intercontinental",
- "city_id": 7625,
- "country_id": 33,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-30-06-12-45-if3.jpg",
- "trainings": 0
- },
- {
- "id": 10416,
- "name": "№10416 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.598697",
- "latitude": "55.827992",
- "address": "улица Кашёнкин Луг",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2019/12/2019-12-31-11-12-47-1m0.jpg",
- "trainings": 0
- },
- {
- "id": 10418,
- "name": "№10418 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.633197508752346",
- "latitude": "49.00151706706482",
- "address": "вулиця Конституції, 22",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-01-21-01-43-tqz.jpg",
- "trainings": 1
- },
- {
- "id": 10419,
- "name": "№10419 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "60.61628846888677",
- "latitude": "56.797328044064265",
- "address": "Фучика 3",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-02-10-01-38-b6r.jpg",
- "trainings": 4
- },
- {
- "id": 10420,
- "name": "№10420 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.61800544286612",
- "latitude": "56.7972672824137",
- "address": "Фучика 3",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-02-11-01-24-so3.jpg",
- "trainings": 1
- },
- {
- "id": 10421,
- "name": "№10421 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.701257697164365",
- "latitude": "56.76230269809501",
- "address": "Дагестанская",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-02-12-01-55-8fx.jpg",
- "trainings": 1
- },
- {
- "id": 10422,
- "name": "№10422 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "32.02616035938264",
- "latitude": "54.76211018703997",
- "address": "Энергетический проезд",
- "city_id": 124,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-02-16-01-26-mge.jpg",
- "trainings": 2
- },
- {
- "id": 10423,
- "name": "№10423 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "108.20375708447688",
- "latitude": "10.949584856384185",
- "address": "Trampoline club impulse",
- "city_id": 7932,
- "country_id": 33,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-03-09-01-48-sa3.jpg",
- "trainings": 0
- },
- {
- "id": 10424,
- "name": "№10424 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "37.866259253100615",
- "latitude": "55.90499351878918",
- "address": "улица Академика Легостаева, 8",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-04-22-01-02-wq1.jpg",
- "trainings": 2
- },
- {
- "id": 10425,
- "name": "№10425 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.827849985530854",
- "latitude": "55.91351494944853",
- "address": "улица Лермонтова 10 к3",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-04-22-01-43-cd-.jpg",
- "trainings": 1
- },
- {
- "id": 10426,
- "name": "№10426 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.62449709326028",
- "latitude": "49.007689699979984",
- "address": "вулиця Конституції, 42",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-05-14-01-08-ejo.jpg",
- "trainings": 0
- },
- {
- "id": 10427,
- "name": "№10427 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "64.07378911972047",
- "latitude": "67.51501118460389",
- "address": "ул. Пирогова, дом 9",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-06-23-01-03-hgz.jpg",
- "trainings": 1
- },
- {
- "id": 10428,
- "name": "№10428 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "64.1036425598577",
- "latitude": "67.60279518758601",
- "address": "пгт. Северный, ул. Юго-Западная, д. 5",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-06-23-01-46-hi3.jpg",
- "trainings": 0
- },
- {
- "id": 10429,
- "name": "№10429 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "64.1161218630805",
- "latitude": "67.60376883237508",
- "address": "пгт. Северный, ул. Цементнозаводская, д. 3-Б",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-06-23-01-51-5oq.jpg",
- "trainings": 0
- },
- {
- "id": 10430,
- "name": "№10430 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "64.08993258075498",
- "latitude": "67.62557917886863",
- "address": "пгт. Цементнозаводский, ул. Спортивная, д. 3",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-06-23-01-31-dyw.jpg",
- "trainings": 1
- },
- {
- "id": 10431,
- "name": "№10431 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "64.10573968289101",
- "latitude": "67.60107015003042",
- "address": "пгт. Северный, ул. Юго-Западная ",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-06-23-01-36-t78.jpg",
- "trainings": 0
- },
- {
- "id": 10432,
- "name": "№10432 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "63.78801596145423",
- "latitude": "67.58186551515945",
- "address": "пгт. Воргашор, ул. Воргашорская, д. 10",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-24-17-07-06-v2z.jpg",
- "trainings": 0
- },
- {
- "id": 10433,
- "name": "№10433 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "63.724717644072385",
- "latitude": "67.49536947595506",
- "address": "пгт. Заполярный, ул. Фрунзе, д. 31",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-07-00-01-59-xzu.jpg",
- "trainings": 0
- },
- {
- "id": 10434,
- "name": "№10434 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.59858638048172",
- "latitude": "55.901209501666486",
- "address": "Лианозовский Питомник",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-07-14-01-12-aur.jpg",
- "trainings": 0
- },
- {
- "id": 10435,
- "name": "№10435 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.642815910279744",
- "latitude": "49.00198820679766",
- "address": "вулиця Конституції, 14",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-07-15-01-59-ym7.jpg",
- "trainings": 0
- },
- {
- "id": 10436,
- "name": "№10436 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.63890491425991",
- "latitude": "48.999736505742604",
- "address": "вулиця Конституції, 18",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-07-16-01-09-eoc.jpg",
- "trainings": 0
- },
- {
- "id": 10437,
- "name": "№10437 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "33.63966565579177",
- "latitude": "49.00276111265362",
- "address": "вулиця Конституції, 18",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-07-16-01-53-wwt.jpg",
- "trainings": 0
- },
- {
- "id": 10438,
- "name": "№10438 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.64012934267521",
- "latitude": "49.00307189924793",
- "address": "проспект Героїв Дніпра, 27",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-07-16-01-01-2jb.jpg",
- "trainings": 0
- },
- {
- "id": 10439,
- "name": "№10439 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.0311833",
- "latitude": "44.6020418",
- "address": "северный 6",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-08-14-01-53-rbu.jpg",
- "trainings": 0
- },
- {
- "id": 10440,
- "name": "№10440 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "38.02984973452113",
- "latitude": "44.601939916895574",
- "address": "северный10",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-08-14-01-36-ipj.jpg",
- "trainings": 0
- },
- {
- "id": 10441,
- "name": "№10441 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.02699787005623",
- "latitude": "44.60328885913074",
- "address": "северный 18",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-08-14-01-33-zw3.jpg",
- "trainings": 0
- },
- {
- "id": 10442,
- "name": "№10442 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.63687381148338",
- "latitude": "49.01066698225897",
- "address": "вулиця Добровольського, 28",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-14-01-15-ai-.jpg",
- "trainings": 0
- },
- {
- "id": 10443,
- "name": "№10443 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.63824039697647",
- "latitude": "49.010013174186156",
- "address": "вулиця Добровольського, 26",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-14-01-48-tap.jpg",
- "trainings": 0
- },
- {
- "id": 10444,
- "name": "№10444 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.63841440528631",
- "latitude": "49.01158687326013",
- "address": "Горішні Плавні",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-14-01-22-je4.jpg",
- "trainings": 0
- },
- {
- "id": 10445,
- "name": "№10445 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.63790210336447",
- "latitude": "49.01202691073418",
- "address": "вулиця Гірняків, 33",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-14-01-41-mlt.jpg",
- "trainings": 0
- },
- {
- "id": 10446,
- "name": "№10446 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "24.1440098264766",
- "latitude": "56.9770434",
- "address": "Invalidu iela, 6",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-14-01-44-kgg.jpg",
- "trainings": 0
- },
- {
- "id": 10447,
- "name": "№10447 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.356442332267765",
- "latitude": "60.01665769781433",
- "address": "парк Сосновка",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-15-01-25-y_k.jpg",
- "trainings": 1
- },
- {
- "id": 10448,
- "name": "№10448 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.6245983466506",
- "latitude": "49.018177572129034",
- "address": "вулиця Добровольського, 91",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-15-01-58-hv5.jpg",
- "trainings": 0
- },
- {
- "id": 10449,
- "name": "№10449 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.62357575446367",
- "latitude": "49.01768063939909",
- "address": "вулиця Добровольського, 87",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-15-01-11-khc.jpg",
- "trainings": 0
- },
- {
- "id": 10450,
- "name": "№10450 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.6221618950367",
- "latitude": "49.014691902161545",
- "address": "проспект Героїв Дніпра, 86",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-15-01-49-dq5.jpg",
- "trainings": 0
- },
- {
- "id": 10451,
- "name": "№10451 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.62725339829922",
- "latitude": "49.01648468228391",
- "address": "вулиця Добровольського, 71",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-15-01-51-l8b.jpg",
- "trainings": 0
- },
- {
- "id": 10452,
- "name": "№10452 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "33.62846475094557",
- "latitude": "49.014734781870665",
- "address": "вулиця Добровольського, 65",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-15-01-36-3cv.jpg",
- "trainings": 0
- },
- {
- "id": 10453,
- "name": "№10453 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.62960636615753",
- "latitude": "49.01205945707953",
- "address": "вулиця Добровольського, 49",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-15-01-04-wma.jpg",
- "trainings": 0
- },
- {
- "id": 10454,
- "name": "№10454 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.629886992275715",
- "latitude": "49.01304485358333",
- "address": "вулиця Добровольського, 55",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-15-01-34-ztx.jpg",
- "trainings": 0
- },
- {
- "id": 10455,
- "name": "№10455 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.63029703497887",
- "latitude": "49.01309323228898",
- "address": "вулиця Добровольського, 55",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-16-01-25-ort.jpg",
- "trainings": 0
- },
- {
- "id": 10456,
- "name": "№10456 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.63123212009668",
- "latitude": "49.011020602421986",
- "address": "вулиця Добровольського, 39",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-16-01-25-7ir.jpg",
- "trainings": 0
- },
- {
- "id": 10457,
- "name": "№10457 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.63594945520163",
- "latitude": "49.00846471658409",
- "address": "вулиця Миру, 23",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-16-01-10-cyl.jpg",
- "trainings": 0
- },
- {
- "id": 10458,
- "name": "№10458 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.6396824195981",
- "latitude": "49.00735804900755",
- "address": "вулиця Добровольського, 25",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-16-01-09-wuu.jpg",
- "trainings": 0
- },
- {
- "id": 10459,
- "name": "№10459 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.64007335156202",
- "latitude": "49.00684627291406",
- "address": "вулиця Добровольського, 12",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-16-01-33-2dp.jpg",
- "trainings": 0
- },
- {
- "id": 10460,
- "name": "№10460 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.64732336252928",
- "latitude": "49.0081746365833",
- "address": "вулиця Гірняків, 1",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-09-17-01-25-eom.jpg",
- "trainings": 0
- },
- {
- "id": 10461,
- "name": "№10461 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "42.017297",
- "latitude": "55.580945",
- "address": "бульвар Тихомирова",
- "city_id": 792,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-10-00-01-38-qzk.jpg",
- "trainings": 0
- },
- {
- "id": 10462,
- "name": "№10462 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.56401337683201",
- "latitude": "55.72334511671897",
- "address": "Хамовнический Вал улица, 36А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-10-14-01-02-zeu.jpg",
- "trainings": 0
- },
- {
- "id": 10464,
- "name": "№10464 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.19887828826905",
- "latitude": "50.037875606084604",
- "address": "Klochkivska Street, 270",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-12-10-01-53-lpb.jpg",
- "trainings": 1
- },
- {
- "id": 10466,
- "name": "№10466 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.20018720626832",
- "latitude": "50.038385188302165",
- "address": "Klochkivska Street, 276",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-12-11-01-33-iin.jpg",
- "trainings": 1
- },
- {
- "id": 10467,
- "name": "№10467 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.469317",
- "latitude": "55.573571",
- "address": "улица Сосенский Стан",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-12-20-01-32-px6.jpg",
- "trainings": 2
- },
- {
- "id": 10468,
- "name": "№10468 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.59272038936615",
- "latitude": "55.74849459712204",
- "address": "Калошин переулок, 6 корпус 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-13-10-01-12-hbg.jpg",
- "trainings": 0
- },
- {
- "id": 10469,
- "name": "№10469 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.07626216526842",
- "latitude": "44.57720894585951",
- "address": "маячная 22",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-13-13-01-53-uso.jpg",
- "trainings": 0
- },
- {
- "id": 10472,
- "name": "№10472 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.074681162834175",
- "latitude": "44.58185191973076",
- "address": "Савицкого 2",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-15-13-01-17-okt.jpg",
- "trainings": 0
- },
- {
- "id": 10473,
- "name": "№10473 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.073887228965766",
- "latitude": "44.58104954656621",
- "address": "Больничный переулок 13",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-15-13-01-45-fhh.jpg",
- "trainings": 0
- },
- {
- "id": 10474,
- "name": "№10474 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.07113528251649",
- "latitude": "44.58150804687332",
- "address": "Больничный переулок 15",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-15-13-01-23-vob.jpg",
- "trainings": 0
- },
- {
- "id": 10475,
- "name": "№10475 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "64.03909396947712",
- "latitude": "67.49424092719008",
- "address": "ул. Парковая, Городской парк",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-15-13-01-39-0v4.jpg",
- "trainings": 1
- },
- {
- "id": 10476,
- "name": "№10476 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.642448112368584",
- "latitude": "49.00449515829867",
- "address": "проспект Героїв Дніпра, 21",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-15-15-01-40-ouq.jpg",
- "trainings": 0
- },
- {
- "id": 10477,
- "name": "№10477 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.63809019327164",
- "latitude": "49.00388063913648",
- "address": "проспект Героїв Дніпра, 37А",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-15-15-01-10-wcs.jpg",
- "trainings": 0
- },
- {
- "id": 10478,
- "name": "№10478 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "33.63541167229414",
- "latitude": "49.00344668814496",
- "address": "вулиця Конституції, 22",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-15-15-01-50-elo.jpg",
- "trainings": 0
- },
- {
- "id": 10479,
- "name": "№10479 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.417671799659733",
- "latitude": "50.46769576167978",
- "address": "Януша Корчака ",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-15-19-01-53-_1v.jpg",
- "trainings": 0
- },
- {
- "id": 10480,
- "name": "№10480 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.402646064758304",
- "latitude": "50.456107159010756",
- "address": " улица Галаганивская 6",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-15-19-01-43-fb9.jpg",
- "trainings": 0
- },
- {
- "id": 10481,
- "name": "№10481 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.415134429931644",
- "latitude": "50.461043803549885",
- "address": "Парк Нивки, между метро Нивки и Берестейская",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-15-19-01-26-5nv.jpg",
- "trainings": 0
- },
- {
- "id": 10482,
- "name": "№10482 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.54169639199972",
- "latitude": "55.89746791751798",
- "address": "Дмитровское шоссе, 155 корпус 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-16-12-01-41-muw.jpg",
- "trainings": 0
- },
- {
- "id": 10483,
- "name": "№10483 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "50.84056377410889",
- "latitude": "61.67407219981725",
- "address": "Парк культуры и отдыха им. С.М. Кирова",
- "city_id": 132,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-16-16-01-47-wv_.jpg",
- "trainings": 1
- },
- {
- "id": 10484,
- "name": "№10484 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "39.99237477779389",
- "latitude": "43.38717561474295",
- "address": "Бульвар Надежд, 6",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-16-18-01-10-kqx.jpg",
- "trainings": 0
- },
- {
- "id": 10485,
- "name": "№10485 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.962092638015754",
- "latitude": "43.40012496572205",
- "address": "Олимпийский проспект, 40/1 Красная Дорожка",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-16-18-01-32-qyh.jpg",
- "trainings": 0
- },
- {
- "id": 10486,
- "name": "№10486 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.098289",
- "latitude": "44.558567",
- "address": "Прасковеевская улица 19",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-17-00-01-57-ru0.jpg",
- "trainings": 1
- },
- {
- "id": 10487,
- "name": "№10487 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-73.931825",
- "latitude": "40.870542",
- "address": "Tubby Hook Park",
- "city_id": 655,
- "country_id": 18,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-17-01-01-52-5xe.jpg",
- "trainings": 1
- },
- {
- "id": 10488,
- "name": "№10488 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "33.515247367322445",
- "latitude": "44.597724452660344",
- "address": "улица Пирогова, 2",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-17-13-01-00-ilu.jpg",
- "trainings": 1
- },
- {
- "id": 10490,
- "name": "№10490 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "64.05785859880781",
- "latitude": "67.49403914718589",
- "address": "ул. Ленина, д. 34-А",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-18-12-01-05-37k.jpg",
- "trainings": 0
- },
- {
- "id": 10491,
- "name": "№10491 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.61902615427971",
- "latitude": "55.89428959020512",
- "address": "улица Лескова, 21 строение 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-18-12-01-46-u_t.jpg",
- "trainings": 0
- },
- {
- "id": 10492,
- "name": "№10492 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.31508558923452",
- "latitude": "55.813709435906134",
- "address": "Железнодорожная 26а ",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-18-17-01-01-zhb.jpg",
- "trainings": 1
- },
- {
- "id": 10496,
- "name": "№10496 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "87.21254244446754",
- "latitude": "53.77938082805695",
- "address": "улица Бугарева, 17 корпус 1",
- "city_id": 568,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-18-21-01-49-kui.jpg",
- "trainings": 2
- },
- {
- "id": 10497,
- "name": "№10497 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "45.34646523147786",
- "latitude": "54.41255559792736",
- "address": "пос. Ромоданово, железнодорожная станция Красный Узел, ж/д вокзал",
- "city_id": 115,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-19-12-01-18-ppn.jpg",
- "trainings": 0
- },
- {
- "id": 10498,
- "name": "№10498 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "57.15059471749556",
- "latitude": "65.10940429879938",
- "address": "Печорский пр-т, д. 5",
- "city_id": 8143,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-19-18-01-45-c1t.jpg",
- "trainings": 0
- },
- {
- "id": 10499,
- "name": "№10499 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "43.7972634907419",
- "latitude": "52.25630442683835",
- "address": "ул. Железнодорожная, д. 72-А",
- "city_id": 8149,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-20-11-01-39-azc.jpg",
- "trainings": 0
- },
- {
- "id": 10500,
- "name": "№10500 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "113.94843",
- "latitude": "22.293686",
- "address": "健東路",
- "city_id": 9063,
- "country_id": 34,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-22-02-01-44-rws.jpg",
- "trainings": 0
- },
- {
- "id": 10501,
- "name": "№10501 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "113.946683",
- "latitude": "22.292595",
- "address": "怡東路",
- "city_id": 9063,
- "country_id": 34,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-22-02-01-56-n0q.jpg",
- "trainings": 0
- },
- {
- "id": 10502,
- "name": "№10502 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "121.0765427940938",
- "latitude": "14.710569117936213",
- "address": "La Mesa Eco Park, Quezon city, Metro Manila, Phillipines",
- "city_id": 8767,
- "country_id": 55,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-22-11-01-29-4ze.jpg",
- "trainings": 0
- },
- {
- "id": 10505,
- "name": "№10505 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.649916388094425",
- "latitude": "49.01205395938756",
- "address": "вулиця Строна, 21",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-22-17-01-53-mog.jpg",
- "trainings": 1
- },
- {
- "id": 10506,
- "name": "№10506 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.93960634552437",
- "latitude": "45.019804449999995",
- "address": "Шпаковская 66",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-23-14-01-28-7v4.png",
- "trainings": 2
- },
- {
- "id": 10507,
- "name": "№10507 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.76779990643263",
- "latitude": "55.6611052760989",
- "address": "Перервинский бульвар, 5 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-24-16-01-19-pmu.jpg",
- "trainings": 1
- },
- {
- "id": 10508,
- "name": "№10508 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.430884160101414",
- "latitude": "47.11694101989947",
- "address": "Пляжный проезд, 2",
- "city_id": 8069,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-25-17-01-59-y6c.jpg",
- "trainings": 1
- },
- {
- "id": 10509,
- "name": "№10509 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.424992352724075",
- "latitude": "47.11190969586103",
- "address": "улица Спуск Молокова, 11",
- "city_id": 8069,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-25-17-01-49-fmv.jpg",
- "trainings": 0
- },
- {
- "id": 10510,
- "name": "№10510 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "63.78387550846128",
- "latitude": "67.58184254670519",
- "address": "пгт. Воргашор, ул. Воргашорская, д. 13",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-24-16-07-28-bpd.jpg",
- "trainings": 0
- },
- {
- "id": 10511,
- "name": "№10511 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.541582913901486",
- "latitude": "55.60580913800714",
- "address": "Литовский бульвар, 46к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-26-21-01-02-t7q.jpg",
- "trainings": 0
- },
- {
- "id": 10512,
- "name": "№10512 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "113.43690319165947",
- "latitude": "52.04006549679414",
- "address": "Ползунова",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-27-01-01-18-jfg.jpg",
- "trainings": 0
- },
- {
- "id": 10513,
- "name": "№10513 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "113.43642352014287",
- "latitude": "52.04162739118137",
- "address": "Кенонская, 27",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-27-02-01-25-1mb.jpg",
- "trainings": 0
- },
- {
- "id": 10514,
- "name": "№10514 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.99799358841483",
- "latitude": "54.99835390361913",
- "address": "ул. Выбрная, 87а",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-27-06-01-21-i3e.jpg",
- "trainings": 2
- },
- {
- "id": 10515,
- "name": "№10515 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.53630582243204",
- "latitude": "55.89707071133627",
- "address": "МФЦ Дмитровского района",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-27-12-01-34-crw.jpg",
- "trainings": 1
- },
- {
- "id": 10516,
- "name": "№10516 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.47599601745606",
- "latitude": "55.89946892514493",
- "address": "Совхозная 12",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-28-08-01-27-g_s.jpeg",
- "trainings": 2
- },
- {
- "id": 10517,
- "name": "№10517 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.48269617557526",
- "latitude": "55.89987794885074",
- "address": "Совхозная 8",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-28-09-01-14-yj9.jpeg",
- "trainings": 1
- },
- {
- "id": 10518,
- "name": "№10518 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.47983694076539",
- "latitude": "55.898741092886084",
- "address": "Совхозная 6",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-28-09-01-36-vr-.jpeg",
- "trainings": 1
- },
- {
- "id": 10519,
- "name": "№10519 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.30367432464846",
- "latitude": "55.94595395683019",
- "address": "2 мичуринский тупик 8",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-28-22-01-09-k1v.jpg",
- "trainings": 1
- },
- {
- "id": 10520,
- "name": "№10520 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.47936487197877",
- "latitude": "55.90293346008337",
- "address": "Совхозная, 25",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-29-11-01-31-xi0.jpeg",
- "trainings": 1
- },
- {
- "id": 10521,
- "name": "№10521 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.48157501220704",
- "latitude": "55.900882444650435",
- "address": "Совхозная ",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-29-12-01-42-mll.jpeg",
- "trainings": 1
- },
- {
- "id": 10522,
- "name": "№10522 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.478410005569465",
- "latitude": "55.90145986758776",
- "address": "Совхозная ",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-29-12-01-54-ay1.jpeg",
- "trainings": 1
- },
- {
- "id": 10523,
- "name": "№10523 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.47333526611329",
- "latitude": "55.9014478380309",
- "address": "Совхозная",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-29-12-01-47-y-1.jpeg",
- "trainings": 1
- },
- {
- "id": 10524,
- "name": "№10524 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "103.86448055505755",
- "latitude": "1.3034371719489009",
- "address": "Beach road, 1",
- "city_id": 7840,
- "country_id": 63,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-31-17-01-51-t5l.jpg",
- "trainings": 0
- },
- {
- "id": 10525,
- "name": "№10525 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "34.3457068875432",
- "latitude": "53.2624992377413",
- "address": "улица Крахмалева, 53",
- "city_id": 13,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-31-21-01-48-ene.jpg",
- "trainings": 1
- },
- {
- "id": 10526,
- "name": "№10526 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "39.248955259805314",
- "latitude": "51.66966935",
- "address": "Ул. Ленинский проспект 115а",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/01/2020-01-31-23-01-53-z8r.jpg",
- "trainings": 0
- },
- {
- "id": 10527,
- "name": "№10527 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.098885297775276",
- "latitude": "47.408421073777795",
- "address": "Александровская",
- "city_id": 789,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-01-10-02-09-iys.jpeg",
- "trainings": 2
- },
- {
- "id": 10528,
- "name": "№10528 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "28.632452152669433",
- "latitude": "50.27172758809521",
- "address": "Польський бульвар, 13",
- "city_id": 494,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-01-13-02-17-bxi.jpg",
- "trainings": 1
- },
- {
- "id": 10529,
- "name": "№10529 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "16.925329049190626",
- "latitude": "52.38903517698481",
- "address": "Dolna Wilda, 83",
- "city_id": 9066,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-02-15-02-54-prd.jpg",
- "trainings": 2
- },
- {
- "id": 10530,
- "name": "№10530 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "16.93721048533917",
- "latitude": "52.38386011615334",
- "address": "Osiedle Piastowskie, 106A",
- "city_id": 9066,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-03-17-02-18-4b4.jpg",
- "trainings": 0
- },
- {
- "id": 10531,
- "name": "№10531 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "16.952728740870953",
- "latitude": "52.387504638440625",
- "address": "Osiedle Rzeczypospolitej, 111",
- "city_id": 9066,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-03-18-02-59-p_-.jpg",
- "trainings": 0
- },
- {
- "id": 10532,
- "name": "№10532 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "16.975582838058468",
- "latitude": "52.40025768803626",
- "address": "Unnamed Road",
- "city_id": 9066,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-03-18-02-30-5sb.jpg",
- "trainings": 0
- },
- {
- "id": 10533,
- "name": "№10533 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.40052175521851",
- "latitude": "50.455909067745175",
- "address": "улица Стрыйская 5",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-07-19-02-57-jjd.jpg",
- "trainings": 0
- },
- {
- "id": 10534,
- "name": "№10534 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "16.907600238919258",
- "latitude": "52.37131460254617",
- "address": "Łozowa, 34",
- "city_id": 9066,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-08-04-02-48-6-2.jpg",
- "trainings": 0
- },
- {
- "id": 10535,
- "name": "№10535 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.391630567610264",
- "latitude": "60.02060033494214",
- "address": "улица Вавиловых, 11 корпус 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-08-19-02-46-ukc.jpg",
- "trainings": 0
- },
- {
- "id": 10536,
- "name": "№10536 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.539092",
- "latitude": "50.428887",
- "address": "Генерала Алмазова улица",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-09-15-02-05-t0i.jpg",
- "trainings": 0
- },
- {
- "id": 10537,
- "name": "№10537 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-3.108630",
- "latitude": "55.953972",
- "address": "Promenade",
- "city_id": 9047,
- "country_id": 6,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-09-15-02-34-ye_.jpg",
- "trainings": 0
- },
- {
- "id": 10538,
- "name": "№10538 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-118.472892",
- "latitude": "33.98517",
- "address": "Ocean Front Walk",
- "city_id": 741,
- "country_id": 18,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-09-15-02-42-a4i.jpg",
- "trainings": 1
- },
- {
- "id": 10539,
- "name": "№10539 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "52.34610177576542",
- "latitude": "55.7016707993138",
- "address": "Горбольница",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-09-16-02-03-kyx.jpg",
- "trainings": 2
- },
- {
- "id": 10540,
- "name": "№10540 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.53134071826935",
- "latitude": "55.8864074107848",
- "address": "Софьи Ковалевской улица, 14а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-10-14-02-26--xh.jpg",
- "trainings": 0
- },
- {
- "id": 10541,
- "name": "№10541 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.667662650346756",
- "latitude": "55.64535784747565",
- "address": "Каширское шоссе, 54 корпус 2А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-10-16-02-24-rhr.jpg",
- "trainings": 0
- },
- {
- "id": 10542,
- "name": "№10542 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "63.07863593101502",
- "latitude": "57.664343062156995",
- "address": "Горького 6",
- "city_id": 7914,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-11-07-02-28-sye.jpg",
- "trainings": 0
- },
- {
- "id": 10543,
- "name": "№10543 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.426583",
- "latitude": "55.770080",
- "address": "Krylatskaya street 15",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-11-15-02-41-oyr.jpg",
- "trainings": 1
- },
- {
- "id": 10544,
- "name": "№10544 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.02007136493921",
- "latitude": "56.26484572292335",
- "address": "улица Первоцветная, 4",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-11-21-02-43-13x.jpg",
- "trainings": 1
- },
- {
- "id": 10546,
- "name": "№10546 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "158.67428183555606",
- "latitude": "53.05480555742618",
- "address": "Петропавловск Камчатский, ул. Циолковского",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-12-11-02-42-tj4.jpg",
- "trainings": 1
- },
- {
- "id": 10547,
- "name": "№10547 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.44995298329741",
- "latitude": "55.8884992995265",
- "address": "ул. Чапаева, д. 7",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-13-11-02-42-u-f.jpg",
- "trainings": 0
- },
- {
- "id": 10548,
- "name": "№10548 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.56734635680914",
- "latitude": "55.82294087675774",
- "address": "Ивановский проезд, 18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-13-19-02-29-lok.jpg",
- "trainings": 0
- },
- {
- "id": 10549,
- "name": "№10549 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "90.48203587532045",
- "latitude": "56.256064027893636",
- "address": "Кравченко 30",
- "city_id": 8,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-14-06-02-46-itj.jpeg",
- "trainings": 1
- },
- {
- "id": 10550,
- "name": "№10550 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "22.190875411033634",
- "latitude": "54.59075872980248",
- "address": "Гусев, Калининградская обл. г. Гусев, ул. Красноармейская 11",
- "city_id": 8240,
- "country_id": 17,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-14-15-02-08-jox.jpg",
- "trainings": 0
- },
- {
- "id": 10551,
- "name": "№10551 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.72258210182191",
- "latitude": "43.58475859091314",
- "address": "Ул. Советская 26",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-16-12-02-36-9es.jpeg",
- "trainings": 6
- },
- {
- "id": 10552,
- "name": "№10552 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.95634227991105",
- "latitude": "57.05816945377765",
- "address": "ул. Луначарского, 134Б",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-16-16-02-23-oq-.jpg",
- "trainings": 1
- },
- {
- "id": 10553,
- "name": "№10553 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.146073795855045",
- "latitude": "51.70336240675669",
- "address": "улица Владимира Невского, 11",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-16-16-02-30-ecg.jpg",
- "trainings": 0
- },
- {
- "id": 10554,
- "name": "№10554 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.918530",
- "latitude": "56.865688",
- "address": "улица Горького",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-18-14-02-42-91m.jpg",
- "trainings": 1
- },
- {
- "id": 10555,
- "name": "№10555 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "90.49386978149415",
- "latitude": "56.25877558522637",
- "address": "3 микрорайон 2а",
- "city_id": 8,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-19-06-02-29-xdm.jpeg",
- "trainings": 0
- },
- {
- "id": 10559,
- "name": "№10559 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.590773858129978",
- "latitude": "50.43975500769279",
- "address": "Русанівська набережна, 1-10",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-14-02-11-jzn.jpg",
- "trainings": 0
- },
- {
- "id": 10560,
- "name": "№10560 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.589620172977448",
- "latitude": "50.445344777581",
- "address": "Unnamed Road",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-14-02-44-ekn.jpg",
- "trainings": 0
- },
- {
- "id": 10561,
- "name": "№10561 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.592592731118202",
- "latitude": "50.443862364643216",
- "address": "Русанівська набережна, 18/1",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-14-02-50-f4v.jpg",
- "trainings": 0
- },
- {
- "id": 10562,
- "name": "№10562 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.596684440970417",
- "latitude": "50.44329547834526",
- "address": "вулиця Ентузіастів, 39",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-14-02-44-mkb.jpg",
- "trainings": 0
- },
- {
- "id": 10563,
- "name": "№10563 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.60084119439125",
- "latitude": "50.441254631448075",
- "address": "вулиця Ентузіастів, 31/1",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-14-02-40--8n.jpg",
- "trainings": 0
- },
- {
- "id": 10564,
- "name": "№10564 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.602676495909687",
- "latitude": "50.440669777429385",
- "address": "вулиця Ентузіастів, 29/1",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-14-02-26-sr-.jpg",
- "trainings": 0
- },
- {
- "id": 10565,
- "name": "№10565 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.603485517203808",
- "latitude": "50.44084209551993",
- "address": "вулиця Ентузіастів, 29/1",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-15-02-55-vxf.jpg",
- "trainings": 0
- },
- {
- "id": 10566,
- "name": "№10566 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.606276690959934",
- "latitude": "50.43814792542337",
- "address": "вулиця Ентузіастів, 15",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-15-02-19-ed2.jpg",
- "trainings": 0
- },
- {
- "id": 10567,
- "name": "№10567 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.60383889824152",
- "latitude": "50.437357390047275",
- "address": "вулиця Ентузіастів, 11",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-15-02-13-bgj.jpg",
- "trainings": 0
- },
- {
- "id": 10568,
- "name": "№10568 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.600097887218",
- "latitude": "50.435772649308625",
- "address": "вулиця Ентузіастів, 7",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-15-02-34-kr6.jpg",
- "trainings": 0
- },
- {
- "id": 10569,
- "name": "№10569 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.597022064030167",
- "latitude": "50.43475997625234",
- "address": "вулиця Ентузіастів, 5/1",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-15-02-03-7wb.jpg",
- "trainings": 0
- },
- {
- "id": 10570,
- "name": "№10570 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.595006048679352",
- "latitude": "50.43389292980889",
- "address": "Русанівська набережна, 2/1",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-16-02-53-zlf.jpg",
- "trainings": 0
- },
- {
- "id": 10571,
- "name": "№10571 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.594805888831612",
- "latitude": "50.43461027306217",
- "address": "вулиця Ентузіастів, 5А",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-16-02-51-0wk.jpg",
- "trainings": 0
- },
- {
- "id": 10572,
- "name": "№10572 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.59370685368776",
- "latitude": "50.43514864708941",
- "address": "Русанівська набережна, 4",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-16-02-52-elq.jpg",
- "trainings": 0
- },
- {
- "id": 10573,
- "name": "№10573 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.593327991664413",
- "latitude": "50.43703771275498",
- "address": "Русанівська набережна, 8/1",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-16-02-24-fky.jpg",
- "trainings": 0
- },
- {
- "id": 10574,
- "name": "№10574 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.59469625353813",
- "latitude": "50.436835270707945",
- "address": "бульвар Ігоря Шамо, 9/1",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-20-16-02-51-dal.jpg",
- "trainings": 0
- },
- {
- "id": 10575,
- "name": "№10575 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.75255632433255",
- "latitude": "46.42365918046989",
- "address": "8 станция фонтана",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-22-12-02-14-b5i.jpg",
- "trainings": 0
- },
- {
- "id": 10577,
- "name": "№10577 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "33.72915890067816",
- "latitude": "49.787370431209055",
- "address": "вулиця Шевченка, 77",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-23-17-02-32-psl.jpg",
- "trainings": 1
- },
- {
- "id": 10578,
- "name": "№10578 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.670876175165176",
- "latitude": "49.75582821964575",
- "address": "Unnamed Road",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-24-15-02-34-rbc.jpg",
- "trainings": 0
- },
- {
- "id": 10579,
- "name": "№10579 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "48.05444061756135",
- "latitude": "46.365709723732444",
- "address": "Татищева, 24",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-24-21-02-19-cqy.jpg",
- "trainings": 0
- },
- {
- "id": 10580,
- "name": "№10580 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "48.0558729171753",
- "latitude": "46.366039176868846",
- "address": "Татищева, 23",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-24-21-02-20-xma.jpg",
- "trainings": 0
- },
- {
- "id": 10581,
- "name": "№10581 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.85551238059998",
- "latitude": "57.63346762410029",
- "address": "Свердлова, 86",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-24-21-02-24-wxp.jpg",
- "trainings": 0
- },
- {
- "id": 10582,
- "name": "№10582 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "76.87423184141154",
- "latitude": "43.253719946489035",
- "address": "Гимназия 34",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-25-14-02-42-y6o.jpg",
- "trainings": 0
- },
- {
- "id": 10583,
- "name": "№10583 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.82637834548951",
- "latitude": "55.71890145839811",
- "address": "Молдагуловой д28 к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-25-15-02-27--xx.jpg",
- "trainings": 1
- },
- {
- "id": 10584,
- "name": "№10584 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.101136495221986",
- "latitude": "55.73868607497281",
- "address": "Жилой массив кукушкино, школа №17",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-25-15-02-20-qhu.jpg",
- "trainings": 1
- },
- {
- "id": 10586,
- "name": "№10586 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.193579249083996",
- "latitude": "50.05155344208921",
- "address": "Vul. Askharova",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-25-18-02-02-4y-.jpg",
- "trainings": 0
- },
- {
- "id": 10588,
- "name": "№10588 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "25.28230190255272",
- "latitude": "57.31661948431888",
- "address": "Valmieras iela 6",
- "city_id": 431,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-26-01-02-21-c26.jpg",
- "trainings": 0
- },
- {
- "id": 10589,
- "name": "№10589 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.589352875947945",
- "latitude": "55.747332362112104",
- "address": "Кривоарбатский переулок, 15с2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-26-17-02-30-wo4.jpg",
- "trainings": 0
- },
- {
- "id": 10590,
- "name": "№10590 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "25.35323023790625",
- "latitude": "57.30939037809643",
- "address": "Izmēģinātaju iela 4",
- "city_id": 431,
- "country_id": 13,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-26-23-02-12-fut.jpg",
- "trainings": 0
- },
- {
- "id": 10591,
- "name": "№10591 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.59782060980797",
- "latitude": "55.7489971082113",
- "address": "Филипповский переулок, 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-27-08-02-36-6s0.jpg",
- "trainings": 0
- },
- {
- "id": 10592,
- "name": "№10592 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "89.53391790390016",
- "latitude": "56.20536130089428",
- "address": "Школа 4",
- "city_id": 8331,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-28-08-02-38-irx.jpeg",
- "trainings": 1
- },
- {
- "id": 10593,
- "name": "№10593 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.88185656062402",
- "latitude": "56.015440878919634",
- "address": "Парижской коммуны 42",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-28-13-02-26-l9y.jpg",
- "trainings": 1
- },
- {
- "id": 10594,
- "name": "№10594 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "140.291363",
- "latitude": "35.781038",
- "address": "赤坂 1-Chōme",
- "city_id": 7532,
- "country_id": 46,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-28-19-02-17-uhk.jpg",
- "trainings": 0
- },
- {
- "id": 10595,
- "name": "№10595 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "23.85597330025648",
- "latitude": "53.68464815",
- "address": "Пролетарская 69",
- "city_id": 375,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-28-23-02-36-m_7.jpg",
- "trainings": 1
- },
- {
- "id": 10596,
- "name": "№10596 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "23.861824023275613",
- "latitude": "53.6366927",
- "address": "Кремко 29",
- "city_id": 375,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-28-23-02-45-pxw.jpg",
- "trainings": 1
- },
- {
- "id": 10597,
- "name": "№10597 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "23.866488933563232",
- "latitude": "53.644109944520864",
- "address": "южный переулок",
- "city_id": 375,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-28-23-02-48-ime.jpg",
- "trainings": 1
- },
- {
- "id": 10598,
- "name": "№10598 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "23.853112757101467",
- "latitude": "53.64232915",
- "address": "Вишневецкая 14",
- "city_id": 375,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-28-23-02-57-dqc.jpg",
- "trainings": 1
- },
- {
- "id": 10599,
- "name": "№10599 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.664995193481445",
- "latitude": "55.792249169682975",
- "address": "Улица Шумкина",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-29-10-02-35-ara.jpg",
- "trainings": 3
- },
- {
- "id": 10600,
- "name": "№10600 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.120739",
- "latitude": "55.858139",
- "address": "Больничная улица",
- "city_id": 794,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/02/2020-02-29-10-02-59-ifp.jpg",
- "trainings": 1
- },
- {
- "id": 10601,
- "name": "№10601 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.157921113073826",
- "latitude": "51.70404205550062",
- "address": "улица Генерала Лизюкова, 69А",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-01-15-03-03-3yc.jpg",
- "trainings": 0
- },
- {
- "id": 10602,
- "name": "№10602 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "42.90920249919902",
- "latitude": "45.7061114",
- "address": "Ленинградская, 11",
- "city_id": 8271,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-02-20-03-04-cpv.jpg",
- "trainings": 0
- },
- {
- "id": 10603,
- "name": "№10603 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "34.131954",
- "latitude": "44.930899",
- "address": "Лескова 43",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-03-05-03-58-83w.jpg",
- "trainings": 0
- },
- {
- "id": 10604,
- "name": "№10604 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.321536",
- "latitude": "59.877293",
- "address": "Московский проспект",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-03-12-03-13-kjq.jpg",
- "trainings": 0
- },
- {
- "id": 10605,
- "name": "№10605 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.27645128617587",
- "latitude": "54.507520909314565",
- "address": "Степана Разина",
- "city_id": 50,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-03-23-03-04-imj.jpeg",
- "trainings": 1
- },
- {
- "id": 10606,
- "name": "№10606 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.12058901775891",
- "latitude": "56.07560633019404",
- "address": "ДЭУ-119 рядом с Дурыкинской амбулаторией",
- "city_id": 126,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-06-17-03-42-bz7.jpg",
- "trainings": 1
- },
- {
- "id": 10607,
- "name": "№10607 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.883554390987",
- "latitude": "56.017046980452164",
- "address": "Конституции СССР 23",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-05-14-03-37-ee7.jpg",
- "trainings": 0
- },
- {
- "id": 10608,
- "name": "№10608 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "92.88351127651492",
- "latitude": "56.01653984663175",
- "address": "Конституции СССР 21",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-05-17-03-21-v1a.jpg",
- "trainings": 0
- },
- {
- "id": 10609,
- "name": "№10609 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.20336025953293",
- "latitude": "50.06403612984769",
- "address": "Peremohy Avenue, 65Б",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-06-17-03-56-yx3.jpg",
- "trainings": 0
- },
- {
- "id": 10610,
- "name": "№10610 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.337508",
- "latitude": "55.82047",
- "address": "Школьная улица дом 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-07-16-03-30-0m3.jpg",
- "trainings": 1
- },
- {
- "id": 10611,
- "name": "№10611 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.39112824201584",
- "latitude": "55.84281549441361",
- "address": "Московская Кольцевая Автомобильная дорога",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-08-15-03-42-gik.jpg",
- "trainings": 1
- },
- {
- "id": 10612,
- "name": "№10612 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.72279613873677",
- "latitude": "56.01849288855733",
- "address": "Ул. Елены Стасовой. Лыжный стадион",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-08-16-03-26-_rl.jpg",
- "trainings": 1
- },
- {
- "id": 10613,
- "name": "№10613 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.413804054260257",
- "latitude": "59.85819984501773",
- "address": "Южное шоссе, 51 к3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-09-19-03-59-ksw.jpg",
- "trainings": 1
- },
- {
- "id": 10614,
- "name": "№10614 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.45890140555276",
- "latitude": "55.89956717167334",
- "address": "Ленинский проспект, 4",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-09-21-03-06-m6w.jpg",
- "trainings": 0
- },
- {
- "id": 10615,
- "name": "№10615 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "104.32669490575793",
- "latitude": "52.25578752972028",
- "address": "Байкальская 226",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-11-19-03-17-vgh.jpg",
- "trainings": 1
- },
- {
- "id": 10616,
- "name": "№10616 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.656306847929955",
- "latitude": "55.76884649463516",
- "address": "Новая Басманная улица, 10 строение 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-13-13-03-02-iqr.jpg",
- "trainings": 0
- },
- {
- "id": 10617,
- "name": "№10617 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.59324409067631",
- "latitude": "55.7488595457364",
- "address": "Калошин переулок, 10 строение 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-13-14-03-13-zew.jpg",
- "trainings": 1
- },
- {
- "id": 10618,
- "name": "№10618 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.8738875631017",
- "latitude": "56.01610945643683",
- "address": "Ады Лебедевой 31",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-14-07-03-13-gud.jpg",
- "trainings": 0
- },
- {
- "id": 10619,
- "name": "№10619 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "48.32420915495934",
- "latitude": "54.299117198336006",
- "address": "ул. Октябрьская 17",
- "city_id": 575,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-15-05-03-17-rb8.jpg",
- "trainings": 0
- },
- {
- "id": 10620,
- "name": "№10620 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.536083",
- "latitude": "55.804088",
- "address": "Красноармейская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-15-13-03-09-x33.jpg",
- "trainings": 1
- },
- {
- "id": 10621,
- "name": "№10621 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "48.404078942512655",
- "latitude": "54.31442327476599",
- "address": "Плеханова 4",
- "city_id": 575,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-15-18-03-01-yzh.jpg",
- "trainings": 0
- },
- {
- "id": 10622,
- "name": "№10622 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "48.352197544766206",
- "latitude": "54.34685638205008",
- "address": "Репина 53",
- "city_id": 575,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-16-14-03-23-tt5.jpg",
- "trainings": 0
- },
- {
- "id": 10623,
- "name": "№10623 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "48.33722329976472",
- "latitude": "54.345599959935704",
- "address": "Защитников Отечества 15",
- "city_id": 575,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-16-15-03-15-cfd.jpg",
- "trainings": 1
- },
- {
- "id": 10624,
- "name": "№10624 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "38.897647",
- "latitude": "45.080130",
- "address": "Краснодар, красных партизан, 1/4, корпус 4",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-16-20-03-22-l1t.jpg",
- "trainings": 0
- },
- {
- "id": 10625,
- "name": "№10625 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.402384884655476",
- "latitude": "60.001144791674896",
- "address": "улица Бутлерова, 9",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-17-11-03-55-od-.jpg",
- "trainings": 0
- },
- {
- "id": 10626,
- "name": "№10626 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "20.22937059402466",
- "latitude": "54.60839711842028",
- "address": "пос. Ушаково, Калининград",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-17-21-03-01-whr.jpg",
- "trainings": 1
- },
- {
- "id": 10627,
- "name": "№10627 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.400827862322334",
- "latitude": "59.87398605325284",
- "address": "Софийская улица, 37",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-20-16-03-43-kfh.jpg",
- "trainings": 0
- },
- {
- "id": 10628,
- "name": "№10628 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "55.81914265094384",
- "latitude": "54.69517834831229",
- "address": "Левитана 38/1",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-21-20-03-27-bpo.jpg",
- "trainings": 0
- },
- {
- "id": 10629,
- "name": "№10629 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "108.24601566419007",
- "latitude": "16.07242873439065",
- "address": "Belle Maison Parosand Da Nang, Quận Sơn Trà, Đà Nẵng 553400, Vietnam",
- "city_id": 659,
- "country_id": 24,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-23-06-03-09-dac.png",
- "trainings": 1
- },
- {
- "id": 10630,
- "name": "№10630 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.59995309235092",
- "latitude": "56.90319839617299",
- "address": "Восстания, 89",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-23-19-03-42-eyd.jpg",
- "trainings": 0
- },
- {
- "id": 10631,
- "name": "№10631 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "48.09380404651165",
- "latitude": "46.402755422535414",
- "address": "Астрахань",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-23-22-03-08--cs.jpg",
- "trainings": 0
- },
- {
- "id": 10632,
- "name": "№10632 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "49.12826735526323",
- "latitude": "55.83297200156897",
- "address": "улица Маршала Чуйкова, 44",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-24-14-03-44-h1k.jpg",
- "trainings": 1
- },
- {
- "id": 10634,
- "name": "№10634 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.597829117439694",
- "latitude": "55.68579701817325",
- "address": "ул. Винокурова, 19, Москва",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-30-11-03-08-jx-.jpg",
- "trainings": 1
- },
- {
- "id": 10635,
- "name": "№10635 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.465480163693424",
- "latitude": "50.4255588640753",
- "address": "вулиця Освіти, 8/1",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-26-00-03-23-yxx.jpg",
- "trainings": 2
- },
- {
- "id": 10636,
- "name": "№10636 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "49.687376154652156",
- "latitude": "58.59372062042314",
- "address": "Парк им. Гагарина",
- "city_id": 55,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-26-17-03-20-m03.jpg",
- "trainings": 0
- },
- {
- "id": 10637,
- "name": "№10637 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "56.29038337562144",
- "latitude": "58.01701697787524",
- "address": "дружбы 4",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-26-17-03-26-puf.jpg",
- "trainings": 1
- },
- {
- "id": 10638,
- "name": "№10638 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.53479301530052",
- "latitude": "55.679707159020005",
- "address": "Ленинский пр-т., 87",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-26-21-03-29-tpa.jpg",
- "trainings": 1
- },
- {
- "id": 10639,
- "name": "№10639 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.72084213793278",
- "latitude": "55.90719453397641",
- "address": "улица Летная, 25",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-27-19-03-44--ur.jpg",
- "trainings": 1
- },
- {
- "id": 10640,
- "name": "№10640 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.5089979171753",
- "latitude": "55.83778335674684",
- "address": "Михалковская",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-28-02-03-34-iyc.jpeg",
- "trainings": 0
- },
- {
- "id": 10642,
- "name": "№10642 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.69486227573192",
- "latitude": "55.58413115256091",
- "address": "Школа 508",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-28-14-03-35-hyq.jpg",
- "trainings": 1
- },
- {
- "id": 10644,
- "name": "№10644 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.727634",
- "latitude": "43.585444",
- "address": "сочи, переулок Горького 18",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-28-16-03-47-u_q.jpg",
- "trainings": 1
- },
- {
- "id": 10645,
- "name": "№10645 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "49.015649556840806",
- "latitude": "55.83846815280055",
- "address": "Рахимова 1",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-28-18-03-45-mnb.jpg",
- "trainings": 2
- },
- {
- "id": 10647,
- "name": "№10647 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "40.29473290778697",
- "latitude": "48.302556894012554",
- "address": "улица Героев Пионеров, 79а",
- "city_id": 8066,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-28-18-03-13-tkf.jpg",
- "trainings": 1
- },
- {
- "id": 10648,
- "name": "№10648 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.302941",
- "latitude": "55.493136",
- "address": "Парковая улица",
- "city_id": 138,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-30-22-03-51-ajn.jpg",
- "trainings": 1
- },
- {
- "id": 10649,
- "name": "№10649 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "42.89094418287278",
- "latitude": "45.714950271662815",
- "address": "Бакинская 15",
- "city_id": 8271,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-31-09-03-33-kpb.jpg",
- "trainings": 0
- },
- {
- "id": 10650,
- "name": "№10650 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.772983081638817",
- "latitude": "59.90489109542437",
- "address": "Скуридина 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/03/2020-03-31-19-03-45-oad.png",
- "trainings": 0
- },
- {
- "id": 10652,
- "name": "№10652 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.77868033291581",
- "latitude": "44.670701793919314",
- "address": "улица Дзержинского 240",
- "city_id": 88,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-01-11-04-06-yo-.jpg",
- "trainings": 1
- },
- {
- "id": 10653,
- "name": "№10653 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.4856550693512",
- "latitude": "59.91850819314355",
- "address": "Товарищеский пр., 12 к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-01-22-04-26-iya.jpg",
- "trainings": 1
- },
- {
- "id": 10654,
- "name": "№10654 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.448377057909966",
- "latitude": "50.51547342679395",
- "address": "вулиця Вишгородська, 49",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-02-18-04-23-nsi.jpg",
- "trainings": 0
- },
- {
- "id": 10655,
- "name": "№10655 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.892628908157356",
- "latitude": "47.96300612203724",
- "address": "ул. Пролетарская, д. 21, в посадке рядом со школой №139",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-02-20-04-01-g9r.jpg",
- "trainings": 0
- },
- {
- "id": 10656,
- "name": "№10656 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.7289858981967",
- "latitude": "49.78784361700713",
- "address": "вулиця Шевченка, 77",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-03-16-04-26-zu2.jpg",
- "trainings": 0
- },
- {
- "id": 10658,
- "name": "№10658 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.72739132493735",
- "latitude": "49.79033956312413",
- "address": "вулиця Леніна, 8",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-03-17-04-33-rcq.jpg",
- "trainings": 0
- },
- {
- "id": 10659,
- "name": "№10659 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "33.7247657775879",
- "latitude": "49.79271417487453",
- "address": "вулиця Шевченка",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-03-17-04-05-ukt.jpg",
- "trainings": 0
- },
- {
- "id": 10661,
- "name": "№10661 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "27.55150886963279",
- "latitude": "53.91120133610483",
- "address": "Проспект Победителей, 4А",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-06-19-04-07-9ae.jpg",
- "trainings": 0
- },
- {
- "id": 10662,
- "name": "№10662 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "55.83080150309719",
- "latitude": "54.712807392142814",
- "address": "Дагестанская 31",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-09-08-04-56-x38.jpg",
- "trainings": 0
- },
- {
- "id": 10663,
- "name": "№10663 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.762418270111084",
- "latitude": "47.139807457638256",
- "address": "улица Коммунистическая, 140/18",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-09-18-04-03-2bg.jpg",
- "trainings": 1
- },
- {
- "id": 10664,
- "name": "№10664 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.82140541076661",
- "latitude": "57.639118793756914",
- "address": "Добрынина 12 а",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-09-20-04-45-wpj.jpg",
- "trainings": 1
- },
- {
- "id": 10665,
- "name": "№10665 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.574778240242996",
- "latitude": "53.95377494526237",
- "address": "Цнянское водохранилище",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-10-13-04-41-2se.jpg",
- "trainings": 0
- },
- {
- "id": 10666,
- "name": "№10666 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.59175509474923",
- "latitude": "53.95949206354927",
- "address": "Цнянское водохранилище",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-10-14-04-38-vvl.jpg",
- "trainings": 0
- },
- {
- "id": 10667,
- "name": "№10667 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.585775272695347",
- "latitude": "53.95634407213019",
- "address": "Цнянское водохранилище",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-10-14-04-18-ljx.jpg",
- "trainings": 0
- },
- {
- "id": 10668,
- "name": "№10668 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.424184203147888",
- "latitude": "60.0576257935585",
- "address": "Петровский бульвар, 11",
- "city_id": 9073,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-11-18-04-38-zed.jpg",
- "trainings": 1
- },
- {
- "id": 10669,
- "name": "№10669 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.948951415717598",
- "latitude": "60.161326071309205",
- "address": "улица Танкистов, 89",
- "city_id": 121,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-12-09-04-15-kur.jpg",
- "trainings": 1
- },
- {
- "id": 10670,
- "name": "№10670 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "30.325831031768985",
- "latitude": "59.82964137352482",
- "address": "Пулковское шоссе, д.18",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 7,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-15-18-05-18-aji.jpg",
- "trainings": 4
- },
- {
- "id": 10671,
- "name": "№10671 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "61.42652928829194",
- "latitude": "55.13829371069983",
- "address": "Школа №68",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-15-12-04-41-_je.jpg",
- "trainings": 0
- },
- {
- "id": 10673,
- "name": "№10673 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.392216381025506",
- "latitude": "55.16407593119431",
- "address": "Алое Поле, д.1 (площадка находится ближе к ул. Красная)",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-15-13-04-34-amc.jpg",
- "trainings": 1
- },
- {
- "id": 10674,
- "name": "№10674 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.44219255447388",
- "latitude": "50.479240560677454",
- "address": "берлинского,31",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-17-09-04-10-qjf.jpg",
- "trainings": 0
- },
- {
- "id": 10675,
- "name": "№10675 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.4097347855568",
- "latitude": "49.91025005220422",
- "address": "Улица зубарева 34",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-21-12-04-35-dsa.jpg",
- "trainings": 1
- },
- {
- "id": 10676,
- "name": "№10676 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.997147",
- "latitude": "57.038180",
- "address": "Иваново, 14-е п/о, стадион",
- "city_id": 44,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-21-13-04-11-sgg.jpg",
- "trainings": 1
- },
- {
- "id": 10677,
- "name": "№10677 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.007720",
- "latitude": "57.025570",
- "address": "Лесной проезд",
- "city_id": 44,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-21-23-04-19-dbo.jpg",
- "trainings": 0
- },
- {
- "id": 10678,
- "name": "№10678 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "134.31329678982368",
- "latitude": "47.15324667189579",
- "address": "улица Южная дом 8",
- "city_id": 8407,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-22-10-04-11-wmo.jpg",
- "trainings": 0
- },
- {
- "id": 10679,
- "name": "№10679 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.159538",
- "latitude": "51.734305",
- "address": "улица Павлуновского",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-23-16-04-39-gt0.jpg",
- "trainings": 1
- },
- {
- "id": 10680,
- "name": "№10680 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.98740339279175",
- "latitude": "55.79221034059",
- "address": "Челябинская область, Поселок Метлино, ул. Центральная, д. 59",
- "city_id": 7427,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-23-17-04-22-7jp.jpeg",
- "trainings": 0
- },
- {
- "id": 10681,
- "name": "№10681 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "27.47949134892843",
- "latitude": "53.943605925545185",
- "address": "ул. Сёмковская, 22",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-24-08-04-28-vgh.jpg",
- "trainings": 0
- },
- {
- "id": 10682,
- "name": "№10682 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.48664428518674",
- "latitude": "53.94523912789584",
- "address": "Водохранилище Дрозды (пляж №2)",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-24-10-04-44-dcx.jpg",
- "trainings": 0
- },
- {
- "id": 10683,
- "name": "№10683 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "30.799055099487305",
- "latitude": "59.78720452840268",
- "address": "Набережная улица 25",
- "city_id": 96,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-25-13-04-23-5le.jpg",
- "trainings": 3
- },
- {
- "id": 10684,
- "name": "№10684 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.589693156066954",
- "latitude": "53.92976964538272",
- "address": "ул. Восточная, 26",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-25-17-04-48-lmp.jpg",
- "trainings": 0
- },
- {
- "id": 10685,
- "name": "№10685 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.924255",
- "latitude": "43.457980",
- "address": "Петрозаводская улица",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-26-05-04-53-wcg.jpg",
- "trainings": 0
- },
- {
- "id": 10686,
- "name": "№10686 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.57390919258069",
- "latitude": "59.59850158561577",
- "address": "Кирова, 4",
- "city_id": 7417,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-27-09-04-23-ax7.jpg",
- "trainings": 0
- },
- {
- "id": 10687,
- "name": "№10687 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.91897296905519",
- "latitude": "56.05131037898244",
- "address": "алексеева 25",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-27-12-04-40-lyr.jpg",
- "trainings": 0
- },
- {
- "id": 10688,
- "name": "№10688 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "47.81425952911377",
- "latitude": "56.142704403112",
- "address": "Зелёная 7,5",
- "city_id": 8501,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-27-16-04-32-6rg.jpeg",
- "trainings": 1
- },
- {
- "id": 10689,
- "name": "№10689 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.74666507233634",
- "latitude": "56.02301403420863",
- "address": "Елены стасовой д.37",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-29-04-04-50-yct.jpg",
- "trainings": 1
- },
- {
- "id": 10691,
- "name": "№10691 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "61.4232623577118",
- "latitude": "55.169937520558186",
- "address": "ул. Пермская, д. 56",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-29-12-04-39--_t.jpeg",
- "trainings": 2
- },
- {
- "id": 10692,
- "name": "№10692 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.23967063426973",
- "latitude": "52.25793998279206",
- "address": " Микрорайон первомайский 31",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-29-12-04-46-qvt.jpg",
- "trainings": 0
- },
- {
- "id": 10693,
- "name": "№10693 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "27.547042781579535",
- "latitude": "53.8558081238583",
- "address": "Асаналиева, 24 ",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/04/2020-04-30-15-04-29-att.jpg",
- "trainings": 3
- },
- {
- "id": 10694,
- "name": "№10694 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "104.22616124164053",
- "latitude": "52.25273626349039",
- "address": "Квартал стрижи 3",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-01-13-05-06-1-9.jpg",
- "trainings": 0
- },
- {
- "id": 10695,
- "name": "№10695 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.4897012821573",
- "latitude": "53.952652318956765",
- "address": "Лесопарк Дрозды",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-01-21-05-01-ymb.jpg",
- "trainings": 0
- },
- {
- "id": 10696,
- "name": "№10696 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.64981151372194",
- "latitude": "56.8517737539774",
- "address": "Академическая улица, 11A",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-02-18-05-40-qtc.jpg",
- "trainings": 1
- },
- {
- "id": 10697,
- "name": "№10697 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "35.900908410285496",
- "latitude": "51.639928961326",
- "address": "улица Симоненко",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-03-20-05-33-ucj.jpg",
- "trainings": 1
- },
- {
- "id": 10698,
- "name": "№10698 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.3384040594101",
- "latitude": "55.58702393451463",
- "address": "Московский",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-05-22-05-18-fsv.jpg",
- "trainings": 0
- },
- {
- "id": 10699,
- "name": "№10699 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.448105953633785",
- "latitude": "47.08913079335317",
- "address": "улица Ленина, 270",
- "city_id": 8069,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-06-19-05-41-vzi.jpg",
- "trainings": 0
- },
- {
- "id": 10700,
- "name": "№10700 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.446638114750385",
- "latitude": "47.09031416322057",
- "address": "переулок Степана Разина, 12",
- "city_id": 8069,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-06-19-05-06-qlx.jpg",
- "trainings": 0
- },
- {
- "id": 10701,
- "name": "№10701 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "104.24165546894073",
- "latitude": "52.25941429540003",
- "address": "Первомайский микрорайон 2а",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-07-08-05-11-0cs.jpg",
- "trainings": 0
- },
- {
- "id": 10702,
- "name": "№10702 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.79536128044129",
- "latitude": "55.78833779234541",
- "address": "Измайловский проспект 77",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-08-10-05-21-a16.jpg",
- "trainings": 2
- },
- {
- "id": 10703,
- "name": "№10703 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.76467680931092",
- "latitude": "55.80267696107259",
- "address": "Сиреневый бульвар 1к5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-08-10-05-20-hy6.jpg",
- "trainings": 0
- },
- {
- "id": 10704,
- "name": "№10704 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "27.596862563266548",
- "latitude": "53.932519983720745",
- "address": "ул. Ломоносова, 10",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-03-08-08-52-zyf.jpg",
- "trainings": 0
- },
- {
- "id": 10705,
- "name": "№10705 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "52.41591056320023",
- "latitude": "55.73298959312203",
- "address": "Проспект Московский ",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-10-15-05-25-vye.jpg",
- "trainings": 0
- },
- {
- "id": 10706,
- "name": "№10706 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.24710571765901",
- "latitude": "52.25605406091663",
- "address": " Микрорайон университетский 17",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-11-14-05-15-g_c.jpg",
- "trainings": 0
- },
- {
- "id": 10707,
- "name": "№10707 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.24673020839693",
- "latitude": "52.25514336063639",
- "address": " Микрорайон университетский 40",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-11-14-05-01-dzj.jpg",
- "trainings": 0
- },
- {
- "id": 10708,
- "name": "№10708 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.595076",
- "latitude": "55.690816",
- "address": "улица Шверника",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-11-19-05-24-d4h.jpg",
- "trainings": 0
- },
- {
- "id": 10709,
- "name": "№10709 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "49.175267033278935",
- "latitude": "55.76243192597856",
- "address": "улица Карбышева, ",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-11-20-05-20-enm.jpg",
- "trainings": 1
- },
- {
- "id": 10710,
- "name": "№10710 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "49.18072331696749",
- "latitude": "55.76689797918537",
- "address": "Гвардейская улица, ",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-12-19-05-31-prn.jpg",
- "trainings": 1
- },
- {
- "id": 10711,
- "name": "№10711 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "89.52138662338258",
- "latitude": "56.208577686333584",
- "address": "Боготол, ул. Деповская 3",
- "city_id": 8331,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-13-13-05-42--t_.jpeg",
- "trainings": 0
- },
- {
- "id": 10712,
- "name": "№10712 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.85277217487237",
- "latitude": "64.57019632720011",
- "address": "Торцева д.1",
- "city_id": 7383,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-13-23-05-48-bbn.png",
- "trainings": 0
- },
- {
- "id": 10713,
- "name": "№10713 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.6174283653085",
- "latitude": "53.847183794232606",
- "address": "Парк Грековой",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-14-13-05-15-kyv.jpg",
- "trainings": 0
- },
- {
- "id": 10714,
- "name": "№10714 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.617088524990614",
- "latitude": "53.849671742135264",
- "address": "Парк Грековой",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-14-13-05-34-wei.jpg",
- "trainings": 0
- },
- {
- "id": 10715,
- "name": "№10715 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.626542957364244",
- "latitude": "53.848642115769835",
- "address": "Парк 900-летия Минска",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-14-13-05-17-ux-.jpg",
- "trainings": 1
- },
- {
- "id": 10716,
- "name": "№10716 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.62585047825007",
- "latitude": "53.84590150012424",
- "address": "Парк 900-летия Минска",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-14-14-05-31-t4e.jpg",
- "trainings": 1
- },
- {
- "id": 10717,
- "name": "№10717 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.625643630434393",
- "latitude": "53.841764344000005",
- "address": "Парк 900-летия Минска",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-14-14-05-51--nz.jpg",
- "trainings": 1
- },
- {
- "id": 10718,
- "name": "№10718 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.626291123909507",
- "latitude": "53.84398388310104",
- "address": "Парк 900-летия Минска",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-14-14-05-19-xxa.jpg",
- "trainings": 0
- },
- {
- "id": 10719,
- "name": "№10719 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.24316287040712",
- "latitude": "52.26058977011246",
- "address": " Микрорайон первомайский 7а",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-14-19-05-23-yja.jpg",
- "trainings": 0
- },
- {
- "id": 10720,
- "name": "№10720 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.3947389125824",
- "latitude": "59.834416766829925",
- "address": "ул. Ярослава Гашека 8, корпус 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-15-20-05-03-5g9.jpg",
- "trainings": 2
- },
- {
- "id": 10721,
- "name": "№10721 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "45.162681",
- "latitude": "53.18667",
- "address": "Зона отдыха “Лесная»",
- "city_id": 788,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-17-07-05-15-vhv.jpg",
- "trainings": 1
- },
- {
- "id": 10722,
- "name": "№10722 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.2843713760376",
- "latitude": "59.912755258220905",
- "address": "ул Циолковского 40",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-17-09-05-48-ijk.jpg",
- "trainings": 0
- },
- {
- "id": 10723,
- "name": "№10723 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.23173666000366",
- "latitude": "52.25451614875149",
- "address": "Микрорайон первомайский 5",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-17-09-05-06-n4i.jpg",
- "trainings": 0
- },
- {
- "id": 10724,
- "name": "№10724 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.453512",
- "latitude": "59.925063",
- "address": "проспект Пятилеток",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-17-11-05-48-mq7.jpg",
- "trainings": 0
- },
- {
- "id": 10725,
- "name": "№10725 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "24.376852151365455",
- "latitude": "52.23271355768192",
- "address": "Штабная",
- "city_id": 759,
- "country_id": 5,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-18-18-05-18-sg2.jpg",
- "trainings": 1
- },
- {
- "id": 10726,
- "name": "№10726 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "83.09953463627234",
- "latitude": "54.87211687226124",
- "address": "Иванова 43",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-18-19-05-05-zac.jpg",
- "trainings": 0
- },
- {
- "id": 10727,
- "name": "№10727 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "83.08546370935386",
- "latitude": "54.86662188404774",
- "address": "Иванова 9",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-18-19-05-38-1et.jpg",
- "trainings": 2
- },
- {
- "id": 10728,
- "name": "№10728 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.23360705370216",
- "latitude": "52.2572766902109",
- "address": " Микрорайон университетский 19",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-19-07-05-10-vqd.jpg",
- "trainings": 1
- },
- {
- "id": 10729,
- "name": "№10729 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.88825001135076",
- "latitude": "54.98925268775239",
- "address": "Ватутина 9/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-20-03-05-11-qne.jpg",
- "trainings": 1
- },
- {
- "id": 10730,
- "name": "№10730 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "73.44661831855775",
- "latitude": "61.24294747583363",
- "address": "Геологическая, 21",
- "city_id": 565,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-20-13-05-06-6df.jpeg",
- "trainings": 0
- },
- {
- "id": 10731,
- "name": "№10731 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.311427406966686",
- "latitude": "55.62387557645396",
- "address": "улица Летчика Грицевца (пос. Внуковское), 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-20-17-05-08-z3r.jpg",
- "trainings": 1
- },
- {
- "id": 10733,
- "name": "№10733 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.31950554996729",
- "latitude": "55.62964515762152",
- "address": "202, 202",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-20-17-05-18-0pz.jpg",
- "trainings": 1
- },
- {
- "id": 10735,
- "name": "№10735 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "18.144607543945316",
- "latitude": "59.316889346508546",
- "address": "Nacka , Kvarnholmen \"Kvarnholmen utegym\"",
- "city_id": 712,
- "country_id": 28,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-20-22-05-23-0xq.jpg",
- "trainings": 0
- },
- {
- "id": 10736,
- "name": "№10736 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.86833545312766",
- "latitude": "43.23680108135516",
- "address": "Сайран",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-21-02-05-22-ohy.jpg",
- "trainings": 0
- },
- {
- "id": 10737,
- "name": "№10737 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.49437686055899",
- "latitude": "54.02414434967119",
- "address": "улица Мира, 16",
- "city_id": 4428,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-22-06-05-14-gah.jpg",
- "trainings": 1
- },
- {
- "id": 10738,
- "name": "№10738 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.6640069853389",
- "latitude": "47.499815515258156",
- "address": "Набережная 4",
- "city_id": 7452,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-22-11-05-35-dln.jpg",
- "trainings": 1
- },
- {
- "id": 10739,
- "name": "№10739 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.73293018341065",
- "latitude": "55.804766329743146",
- "address": "Черкизовский пруд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-22-22-05-48-q1n.jpg",
- "trainings": 0
- },
- {
- "id": 10740,
- "name": "№10740 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.467461645603183",
- "latitude": "50.46506650607413",
- "address": "Деревлянская 16",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-23-11-05-11-oub.jpg",
- "trainings": 0
- },
- {
- "id": 10741,
- "name": "№10741 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.5241361",
- "latitude": "50.4500336",
- "address": "Деревлянская 16",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-23-11-05-31--fe.jpg",
- "trainings": 0
- },
- {
- "id": 10742,
- "name": "№10742 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "82.91432874508199",
- "latitude": "55.03663840482133",
- "address": "Советская 75",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-24-10-05-01-hwt.jpg",
- "trainings": 1
- },
- {
- "id": 10743,
- "name": "№10743 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "34.66418867713594",
- "latitude": "47.49509545",
- "address": "Школа 4",
- "city_id": 7452,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-25-07-05-05-bbd.jpg",
- "trainings": 1
- },
- {
- "id": 10744,
- "name": "№10744 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.053680",
- "latitude": "54.793055",
- "address": "улица Шота Руставели",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-25-15-05-29-mce.jpg",
- "trainings": 0
- },
- {
- "id": 10747,
- "name": "№10747 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "28.861924",
- "latitude": "47.049782",
- "address": "улица Мирона Костина",
- "city_id": 445,
- "country_id": 15,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-25-17-05-31-nls.jpg",
- "trainings": 1
- },
- {
- "id": 10749,
- "name": "№10749 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.24832701685776",
- "latitude": "52.279105403811926",
- "address": "Железнодорожная 4-а 57",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-25-18-05-29-r_n.jpg",
- "trainings": 0
- },
- {
- "id": 10750,
- "name": "№10750 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "34.30949270725251",
- "latitude": "53.31208938649974",
- "address": "улица Ульянова, 47А",
- "city_id": 13,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-26-07-05-38-ey2.jpg",
- "trainings": 1
- },
- {
- "id": 10751,
- "name": "№10751 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "83.775795",
- "latitude": "53.340103",
- "address": "улица Чкалова",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-26-14-05-09-a-k.jpg",
- "trainings": 1
- },
- {
- "id": 10752,
- "name": "№10752 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.37128973007203",
- "latitude": "55.725388138561705",
- "address": "улица Академика Королёва 20",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-27-14-05-03-muf.jpg",
- "trainings": 1
- },
- {
- "id": 10753,
- "name": "№10753 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "37.300901412963874",
- "latitude": "55.60878616566798",
- "address": "2я рейсовая улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-27-21-05-04-tru.jpg",
- "trainings": 2
- },
- {
- "id": 10754,
- "name": "№10754 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.586400",
- "latitude": "55.770245",
- "address": "Васильевская 2к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-29-15-05-45-ak8.jpg",
- "trainings": 0
- },
- {
- "id": 10755,
- "name": "№10755 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.881487",
- "latitude": "56.042520",
- "address": "Линейная улица",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-29-19-05-10-zni.jpg",
- "trainings": 1
- },
- {
- "id": 10756,
- "name": "№10756 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "44.4372832775116",
- "latitude": "48.67505806922645",
- "address": "пр.Университетский, 26 Стадион ВолГАУ",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-30-13-05-10-4_3.jpg",
- "trainings": 1
- },
- {
- "id": 10757,
- "name": "№10757 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "83.765067",
- "latitude": "53.347622",
- "address": "Красноармейский проспект",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-30-14-05-43-1dy.jpg",
- "trainings": 0
- },
- {
- "id": 10758,
- "name": "№10758 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.65659055805428",
- "latitude": "47.488155620383885",
- "address": "Курчатова/Комсомольская",
- "city_id": 7452,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-30-16-05-46-iey.jpg",
- "trainings": 0
- },
- {
- "id": 10759,
- "name": "№10759 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "34.66588871505008",
- "latitude": "47.49615564013346",
- "address": "Набережная 16",
- "city_id": 7452,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-30-16-05-27-9aw.jpg",
- "trainings": 0
- },
- {
- "id": 10760,
- "name": "№10760 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.654051",
- "latitude": "43.664097",
- "address": "Armavirskaya Street, 110, ЖК Quatro",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-31-15-05-09-dkx.jpg",
- "trainings": 0
- },
- {
- "id": 10761,
- "name": "№10761 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.13719970514831",
- "latitude": "55.975699731961754",
- "address": "Андреевка дом 43",
- "city_id": 769,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/05/2020-05-31-19-05-28-lrp.jpg",
- "trainings": 1
- },
- {
- "id": 10762,
- "name": "№10762 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.766303",
- "latitude": "53.344025",
- "address": "Красноармейский проспект",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-02-13-06-50-g54.jpg",
- "trainings": 0
- },
- {
- "id": 10763,
- "name": "№10763 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "53.229306936264045",
- "latitude": "56.8550262764157",
- "address": "ул.Кооперативная, 9",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-02-13-06-39-u8b.jpg",
- "trainings": 0
- },
- {
- "id": 10764,
- "name": "№10764 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.98411866277456",
- "latitude": "45.0577873353388",
- "address": "улица Красная, 204/2",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-03-19-06-36-h6c.jpg",
- "trainings": 0
- },
- {
- "id": 10765,
- "name": "№10765 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.23455297946931",
- "latitude": "52.25808993354418",
- "address": " Микрорайон первомайский 21",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-04-10-06-08-zeq.jpg",
- "trainings": 0
- },
- {
- "id": 10766,
- "name": "№10766 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.030353911221034",
- "latitude": "45.047880053046754",
- "address": "Восточно-Кругликовская 22/3",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-05-12-06-25-hpd.jpeg",
- "trainings": 0
- },
- {
- "id": 10767,
- "name": "№10767 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.40698183327913",
- "latitude": "49.911949692480356",
- "address": "вулиця Сергія Грицевця, 51",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-06-09-06-01-pzp.jpg",
- "trainings": 1
- },
- {
- "id": 10768,
- "name": "№10768 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.99463124573231",
- "latitude": "45.02629026633098",
- "address": "улица Карасуно - Набережная, 83",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-06-19-06-14-na4.jpg",
- "trainings": 2
- },
- {
- "id": 10769,
- "name": "№10769 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.995486870408065",
- "latitude": "45.0266492705362",
- "address": "улица Карасуно - Набережная, 83",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-06-19-06-23-2xg.jpg",
- "trainings": 1
- },
- {
- "id": 10770,
- "name": "№10770 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.99152591824531",
- "latitude": "45.03101472368925",
- "address": "улица Садовая, 23",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-06-20-06-43-a5w.jpg",
- "trainings": 1
- },
- {
- "id": 10771,
- "name": "№10771 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.28775",
- "latitude": "55.832463",
- "address": "Вилора Трифонова 6",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-07-12-06-38-rry.jpg",
- "trainings": 0
- },
- {
- "id": 10772,
- "name": "№10772 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.075556",
- "latitude": "45.017922",
- "address": "улица Евдокии Бершанской",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-07-14-06-47-s4y.jpg",
- "trainings": 1
- },
- {
- "id": 10773,
- "name": "№10773 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "35.52263936320804",
- "latitude": "55.800560069302136",
- "address": "Шаховской район, д.Дор",
- "city_id": 20,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-07-14-06-49-dvv.jpg",
- "trainings": 0
- },
- {
- "id": 10774,
- "name": "№10774 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.23931658267976",
- "latitude": "52.2623124300865",
- "address": "Алмазная 6",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-07-16-06-02-pnc.jpg",
- "trainings": 0
- },
- {
- "id": 10776,
- "name": "№10776 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.40485310554505",
- "latitude": "55.74209083520054",
- "address": "ул.Оршанская д.9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-10-12-06-58-c1-.jpg",
- "trainings": 1
- },
- {
- "id": 10777,
- "name": "№10777 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "83.780105",
- "latitude": "53.343517",
- "address": "Песчаная улица",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-10-17-06-24-opg.jpg",
- "trainings": 0
- },
- {
- "id": 10778,
- "name": "№10778 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.429989233613018",
- "latitude": "60.27115443316905",
- "address": "Горьковское",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-10-17-06-02-e_t.jpg",
- "trainings": 0
- },
- {
- "id": 10779,
- "name": "№10779 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.996541546144734",
- "latitude": "55.93032005889624",
- "address": "Космодемьянская, 17/4",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-11-10-06-16-cjb.jpg",
- "trainings": 1
- },
- {
- "id": 10780,
- "name": "№10780 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.984685810065464",
- "latitude": "55.92789861184032",
- "address": "Талсинская, 24а",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-11-10-06-16-b3e.jpg",
- "trainings": 1
- },
- {
- "id": 10781,
- "name": "№10781 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.9846610122786",
- "latitude": "55.929802743597996",
- "address": "Талсинская, 10",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-11-10-06-37-_8v.jpg",
- "trainings": 0
- },
- {
- "id": 10782,
- "name": "№10782 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.988550873993965",
- "latitude": "55.928681850000004",
- "address": "Сиреневая, 4",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-11-10-06-57-cfz.jpg",
- "trainings": 0
- },
- {
- "id": 10783,
- "name": "№10783 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.997916588969936",
- "latitude": "55.92606869426761",
- "address": "Космодемьянская, 7",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-11-10-06-55-bzp.jpg",
- "trainings": 0
- },
- {
- "id": 10784,
- "name": "№10784 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.99957931041718",
- "latitude": "55.92686698471462",
- "address": "Пролетарский проспект, 11",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-11-10-06-45-c7i.jpg",
- "trainings": 0
- },
- {
- "id": 10785,
- "name": "№10785 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.993666376878544",
- "latitude": "55.93275341085095",
- "address": "Полевая, 6А",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-11-11-06-41-sig.jpg",
- "trainings": 0
- },
- {
- "id": 10786,
- "name": "№10786 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.769042",
- "latitude": "53.347488",
- "address": "Социалистический проспект",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-11-14-06-45-iad.jpg",
- "trainings": 0
- },
- {
- "id": 10787,
- "name": "№10787 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "44.74458798766136",
- "latitude": "48.789258072002504",
- "address": "Набережная улица, 63",
- "city_id": 7980,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-11-15-06-19-g0h.jpg",
- "trainings": 0
- },
- {
- "id": 10788,
- "name": "№10788 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "83.770212",
- "latitude": "53.345512",
- "address": "Молодёжная улица",
- "city_id": 157,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-11-15-06-54-d3b.jpg",
- "trainings": 0
- },
- {
- "id": 10789,
- "name": "№10789 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.472817",
- "latitude": "55.670734",
- "address": "улица Академика Анохина д2 к6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-11-20-06-49-5rb.jpg",
- "trainings": 0
- },
- {
- "id": 10790,
- "name": "№10790 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.327021181583408",
- "latitude": "59.96797352831505",
- "address": "улица Литераторов, 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-12-19-06-58-bwz.jpg",
- "trainings": 0
- },
- {
- "id": 10791,
- "name": "№10791 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.697497",
- "latitude": "55.874870",
- "address": "улица Коминтерна",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-13-12-06-42-592.jpg",
- "trainings": 1
- },
- {
- "id": 10792,
- "name": "№10792 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.60728911310434",
- "latitude": "56.85358374005877",
- "address": "улица Марии Авейде, 27",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-14-04-06-48-kef.jpg",
- "trainings": 1
- },
- {
- "id": 10793,
- "name": "№10793 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.294404",
- "latitude": "55.827554",
- "address": "Успенская 8",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-14-12-06-40-fdg.jpg",
- "trainings": 2
- },
- {
- "id": 10794,
- "name": "№10794 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.09151539680898",
- "latitude": "54.891273939844176",
- "address": "Ул. Тимирязева",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-14-13-06-10-c-l.jpg",
- "trainings": 0
- },
- {
- "id": 10795,
- "name": "№10795 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "36.03894319385291",
- "latitude": "52.97162421850561",
- "address": "улица Весёлая, 8А",
- "city_id": 93,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-14-15-06-37-yit.jpg",
- "trainings": 0
- },
- {
- "id": 10796,
- "name": "№10796 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.306086122989655",
- "latitude": "55.95596071891155",
- "address": "Горная улица, 2А",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-14-17-06-36-hdc.jpg",
- "trainings": 1
- },
- {
- "id": 10797,
- "name": "№10797 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.2938594520092",
- "latitude": "53.33339753988783",
- "address": "Северный переулок, 58",
- "city_id": 13,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-15-00-06-08-npm.jpg",
- "trainings": 2
- },
- {
- "id": 10798,
- "name": "№10798 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "29.919484667479992",
- "latitude": "59.87678908099302",
- "address": "Константиновская улица, 6Б",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-15-21-06-22-kzp.jpg",
- "trainings": 1
- },
- {
- "id": 10799,
- "name": "№10799 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.7367389202118",
- "latitude": "55.80472110650027",
- "address": "Школа №1505, ул. Большая Черкизовская, 23",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-16-10-06-29-onq.jpg",
- "trainings": 3
- },
- {
- "id": 10800,
- "name": "№10800 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.9153208732605",
- "latitude": "59.88137642982019",
- "address": "Лихардовская улица",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-16-18-06-23-ov3.jpg",
- "trainings": 1
- },
- {
- "id": 10801,
- "name": "№10801 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.566327713429928",
- "latitude": "53.842660579041045",
- "address": "улица Гашкевича, 12",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-16-22-06-19-cfm.jpg",
- "trainings": 0
- },
- {
- "id": 10802,
- "name": "№10802 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.87323391437531",
- "latitude": "55.74252265462606",
- "address": "мкр-н \"Супонево\"",
- "city_id": 670,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-16-22-06-16-sxo.jpg",
- "trainings": 1
- },
- {
- "id": 10803,
- "name": "№10803 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.551531307399273",
- "latitude": "53.84616728727558",
- "address": "Zhlobinskaya, 15",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-16-22-06-25-u1p.jpg",
- "trainings": 0
- },
- {
- "id": 10804,
- "name": "№10804 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.079006587527154",
- "latitude": "47.667517692521855",
- "address": "Улица Садовая",
- "city_id": 7381,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-16-23-06-13-fm7.jpg",
- "trainings": 1
- },
- {
- "id": 10805,
- "name": "№10805 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.579269111156464",
- "latitude": "55.84111955040935",
- "address": "Гостиничный проезд, 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-17-01-06-15-prl.jpg",
- "trainings": 1
- },
- {
- "id": 10807,
- "name": "№10807 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.567100524902347",
- "latitude": "53.843070646449405",
- "address": "улица Гашкевича, 10",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-23-22-06-28-5ss.jpg",
- "trainings": 2
- },
- {
- "id": 10809,
- "name": "№10809 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.568902969360355",
- "latitude": "53.84366566234858",
- "address": "Igumenskii, 18",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-17-13-06-48-ftk.jpg",
- "trainings": 0
- },
- {
- "id": 10814,
- "name": "№10814 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.63382013479714",
- "latitude": "55.89422204816687",
- "address": "Корнейчука, 41",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-18-21-06-30-yhs.jpg",
- "trainings": 1
- },
- {
- "id": 10815,
- "name": "№10815 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.91309356689455",
- "latitude": "56.05345323382424",
- "address": "Алексеева 22Д",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-20-10-06-02-rqd.jpg",
- "trainings": 1
- },
- {
- "id": 10816,
- "name": "№10816 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.489564053714275",
- "latitude": "59.961550683351014",
- "address": "улица Коммуны, 58",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-20-22-06-26-qwd.jpg",
- "trainings": 0
- },
- {
- "id": 10817,
- "name": "№10817 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.562862634658817",
- "latitude": "53.84814383514213",
- "address": "улица Дроздовича, 3",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-21-16-06-42--1d.jpg",
- "trainings": 0
- },
- {
- "id": 10818,
- "name": "№10818 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.559964172542095",
- "latitude": "53.848885337932664",
- "address": "улица Каруся Каганца, 2",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-21-16-06-28-lon.jpg",
- "trainings": 0
- },
- {
- "id": 10819,
- "name": "№10819 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "64.03552064699389",
- "latitude": "67.50091426258884",
- "address": "Стадион \"Юбилейный\", ул. Дорожная, д. 1-А",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-24-12-09-24-_is.jpg",
- "trainings": 1
- },
- {
- "id": 10820,
- "name": "№10820 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "64.05733451796904",
- "latitude": "67.49951699224985",
- "address": "Аллея Пионеров, ул. Дончука, д. 2",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-23-20-06-17-ga8.jpg",
- "trainings": 0
- },
- {
- "id": 10821,
- "name": "№10821 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.570136785507206",
- "latitude": "53.84231420445425",
- "address": "улица Гашкевича, 2",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-23-22-06-29-knk.jpg",
- "trainings": 0
- },
- {
- "id": 10822,
- "name": "№10822 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "25.361863374710087",
- "latitude": "50.76867861153305",
- "address": "Федорова 7",
- "city_id": 515,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-24-22-06-27-i31.jpg",
- "trainings": 0
- },
- {
- "id": 10823,
- "name": "№10823 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "83.010521",
- "latitude": "55.018718",
- "address": "школа 216",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-25-06-06-02-qgz.jpg",
- "trainings": 1
- },
- {
- "id": 10824,
- "name": "№10824 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "137.0273852348328",
- "latitude": "50.53365069482977",
- "address": "проспект Мира 2, парковая зона возле Дома Молодёжи",
- "city_id": 751,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-25-08-06-56-xqm.jpeg",
- "trainings": 0
- },
- {
- "id": 10825,
- "name": "№10825 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.408592",
- "latitude": "60.046439",
- "address": "Суздальский проспект",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-25-18-06-48-odx.jpg",
- "trainings": 1
- },
- {
- "id": 10826,
- "name": "№10826 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "53.22615802288056",
- "latitude": "56.83527726920597",
- "address": "Удмуртская, 155",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-26-15-06-16-uft.jpg",
- "trainings": 1
- },
- {
- "id": 10827,
- "name": "№10827 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "26.49164509222829",
- "latitude": "42.48169323012428",
- "address": "Жк златен рог 30",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-27-11-06-10-fnn.jpg",
- "trainings": 0
- },
- {
- "id": 10828,
- "name": "№10828 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.06506260863353",
- "latitude": "55.364388363758934",
- "address": "4 мкр., д. 15",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-27-12-06-52-iod.jpg",
- "trainings": 0
- },
- {
- "id": 10829,
- "name": "№10829 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "49.26729981865828",
- "latitude": "53.52752348393445",
- "address": "Бульвар Баумана 1",
- "city_id": 136,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-27-12-06-34-auq.jpg",
- "trainings": 0
- },
- {
- "id": 10830,
- "name": "№10830 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "49.268030422136725",
- "latitude": "53.525737714802",
- "address": "Бульвар Баумана 3",
- "city_id": 136,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-27-13-06-47-cvg.jpg",
- "trainings": 0
- },
- {
- "id": 10831,
- "name": "№10831 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "49.26826279655999",
- "latitude": "53.52520451994237",
- "address": "Бульвар Баумана 3",
- "city_id": 136,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-27-13-06-57-mvb.jpg",
- "trainings": 0
- },
- {
- "id": 10832,
- "name": "№10832 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "49.355408771298244",
- "latitude": "53.54368840965998",
- "address": "Бульвар рябиновый 5",
- "city_id": 136,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-27-17-06-29-cxn.jpg",
- "trainings": 0
- },
- {
- "id": 10833,
- "name": "№10833 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.58733175694942",
- "latitude": "53.85381760915028",
- "address": "Чырвоны млын",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-27-17-06-37-nsr.jpg",
- "trainings": 0
- },
- {
- "id": 10834,
- "name": "№10834 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.588906548917294",
- "latitude": "53.85409585902593",
- "address": "Чырвоны млын",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-27-17-06-30-dnb.jpg",
- "trainings": 0
- },
- {
- "id": 10835,
- "name": "№10835 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.590181939303875",
- "latitude": "53.85424358582005",
- "address": "Yakubova Gulyama, 7",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-27-17-06-54-6tp.jpg",
- "trainings": 0
- },
- {
- "id": 10836,
- "name": "№10836 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.58749604225159",
- "latitude": "53.85595148327641",
- "address": "Чырвоны млын",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-27-17-06-50-k2z.jpg",
- "trainings": 0
- },
- {
- "id": 10837,
- "name": "№10837 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.58510183542967",
- "latitude": "53.8555293999627",
- "address": "Чырвоны млын",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-27-20-06-43-9yp.jpg",
- "trainings": 0
- },
- {
- "id": 10839,
- "name": "№10839 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.841747",
- "latitude": "48.021203",
- "address": "ул. Н.Амосова 33",
- "city_id": 9092,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/06/2020-06-28-10-06-33-mut.jpg",
- "trainings": 2
- },
- {
- "id": 10840,
- "name": "№10840 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "85.1752880215645",
- "latitude": "52.5127915276779",
- "address": "Советская 199/7",
- "city_id": 569,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-03-11-07-20-gca.jpg",
- "trainings": 1
- },
- {
- "id": 10841,
- "name": "№10841 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.30206046253443",
- "latitude": "44.89207144977366",
- "address": "улица Калинина, 10",
- "city_id": 4,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-04-21-07-53-p4m.jpg",
- "trainings": 0
- },
- {
- "id": 10843,
- "name": "№10843 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.72171527892351",
- "latitude": "46.43202112071252",
- "address": "Akademika Filatova Street, 13В",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-05-13-07-42-ggs.jpg",
- "trainings": 2
- },
- {
- "id": 10844,
- "name": "№10844 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.718037970364097",
- "latitude": "46.4310186984256",
- "address": "Heroiv Krut Street, 14",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-05-13-07-13-wul.jpg",
- "trainings": 2
- },
- {
- "id": 10845,
- "name": "№10845 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.715553909540176",
- "latitude": "46.43064064779617",
- "address": "Kosmonavtiv Street, 17a",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-05-13-07-17-tyu.jpg",
- "trainings": 0
- },
- {
- "id": 10846,
- "name": "№10846 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.188826",
- "latitude": "59.861891",
- "address": "проспект Кузнецова 11, корпус 3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-05-18-07-03-c72.jpg",
- "trainings": 2
- },
- {
- "id": 10847,
- "name": "№10847 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "30.171779",
- "latitude": "59.858323",
- "address": "Маршала Захарова 18, корпус 2, напротив детского сада номер 83",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-05-19-07-51-79d.jpg",
- "trainings": 4
- },
- {
- "id": 10848,
- "name": "№10848 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "5.974178016185761",
- "latitude": "49.48614952823343",
- "address": "Rue Barbourg, Grenz, Esch-sur-Alzette, 4244, Luxembourg",
- "city_id": 9090,
- "country_id": 77,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-06-02-07-27-27b.jpg",
- "trainings": 1
- },
- {
- "id": 10849,
- "name": "№10849 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "30.77021062374115",
- "latitude": "46.44933529802337",
- "address": "Trasa Zdorovya",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-06-12-07-37-497.jpg",
- "trainings": 0
- },
- {
- "id": 10850,
- "name": "№10850 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.154994",
- "latitude": "59.989811",
- "address": "Журавлиная 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-06-21-07-19-ukp.jpg",
- "trainings": 1
- },
- {
- "id": 10851,
- "name": "№10851 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.128353",
- "latitude": "60.005447",
- "address": "рядовая 43",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-07-16-07-05-urm.jpg",
- "trainings": 0
- },
- {
- "id": 10852,
- "name": "№10852 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.134408",
- "latitude": "60.005231",
- "address": "Тупиковая 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-07-17-07-09-aym.jpg",
- "trainings": 0
- },
- {
- "id": 10853,
- "name": "№10853 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.075011",
- "latitude": "45.011304",
- "address": "улица Игнатова",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-07-22-07-56-v-4.jpg",
- "trainings": 1
- },
- {
- "id": 10854,
- "name": "№10854 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.395323634147648",
- "latitude": "59.84787868588305",
- "address": "Загребский бульвар дом 5 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-09-23-07-32-3cu.jpg",
- "trainings": 0
- },
- {
- "id": 10855,
- "name": "№10855 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.55139221996069",
- "latitude": "56.51168515515819",
- "address": "Олимпийская улица, 1",
- "city_id": 8115,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-10-22-07-57-jri.jpg",
- "trainings": 1
- },
- {
- "id": 10856,
- "name": "№10856 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.000262",
- "latitude": "56.972305",
- "address": "улица Генерала Хлебникова",
- "city_id": 44,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-11-01-07-15-iza.jpg",
- "trainings": 0
- },
- {
- "id": 10857,
- "name": "№10857 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.076072",
- "latitude": "45.018062",
- "address": "улица Евдокии Бершанской",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-11-10-07-04-as0.jpg",
- "trainings": 2
- },
- {
- "id": 10858,
- "name": "№10858 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.072700",
- "latitude": "45.015530",
- "address": "улица Евдокии Бершанской",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-11-10-07-10-_hr.jpg",
- "trainings": 0
- },
- {
- "id": 10859,
- "name": "№10859 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "26.53026580810547",
- "latitude": "42.47117891828767",
- "address": "Ж.к. Хале 9",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-11-13-07-33-pt1.jpg",
- "trainings": 0
- },
- {
- "id": 10860,
- "name": "№10860 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.13545063138008",
- "latitude": "53.772833464172436",
- "address": "Пролетарская улица, 64",
- "city_id": 8216,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-11-14-07-21-yuh.jpg",
- "trainings": 0
- },
- {
- "id": 10861,
- "name": "№10861 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.0728412270546",
- "latitude": "55.2116637802815",
- "address": "посёлок Рогово, 19",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-12-20-07-53-zdm.jpg",
- "trainings": 0
- },
- {
- "id": 10862,
- "name": "№10862 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.74494602531195",
- "latitude": "43.568371876496506",
- "address": "Курортный проспект, 76В",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-13-07-07-43-kg7.jpg",
- "trainings": 1
- },
- {
- "id": 10863,
- "name": "№10863 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.482157468795776",
- "latitude": "59.74530530410701",
- "address": "Ростовская улица (славянка), 27",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-13-11-07-53-0sk.jpg",
- "trainings": 1
- },
- {
- "id": 10864,
- "name": "№10864 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "76.5779906",
- "latitude": "60.9466564",
- "address": "Комсомольское озеро",
- "city_id": 567,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-13-18-07-46-va6.jpg",
- "trainings": 0
- },
- {
- "id": 10865,
- "name": "№10865 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.0978242084384",
- "latitude": "44.0979825308895",
- "address": "улица Сочинская, дом 48",
- "city_id": 139,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-14-15-07-13-sy_.jpg",
- "trainings": 0
- },
- {
- "id": 10866,
- "name": "№10866 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.083797596395016",
- "latitude": "44.08604592022026",
- "address": "улица Гагарина, 7",
- "city_id": 139,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-14-15-07-20-hqx.jpg",
- "trainings": 0
- },
- {
- "id": 10867,
- "name": "№10867 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.52215955773864",
- "latitude": "55.60761002317135",
- "address": "Новоясеневский проспект д16 к 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-14-18-07-17-ohh.jpg",
- "trainings": 0
- },
- {
- "id": 10868,
- "name": "№10868 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.51968383789063",
- "latitude": "55.60837511016545",
- "address": "Новоясеневский проспект д16 к 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-14-18-07-56-smk.jpg",
- "trainings": 0
- },
- {
- "id": 10869,
- "name": "№10869 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.804962",
- "latitude": "52.256608",
- "address": "Ртищевский район",
- "city_id": 8149,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-14-19-07-51-edd.jpg",
- "trainings": 1
- },
- {
- "id": 10870,
- "name": "№10870 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.556065",
- "latitude": "55.867968",
- "address": "Бескудниковский бульвар, 23 ст3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-15-13-07-00-uj_.jpg",
- "trainings": 1
- },
- {
- "id": 10871,
- "name": "№10871 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.86091900743486",
- "latitude": "55.67185803020544",
- "address": "Мкр. Опытное поле, д. 7",
- "city_id": 65,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-16-20-07-28-w0a.jpg",
- "trainings": 0
- },
- {
- "id": 10872,
- "name": "№10872 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "18.933000",
- "latitude": "53.719525",
- "address": "Rodzinna",
- "city_id": 7561,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-16-20-07-11-nst.jpg",
- "trainings": 1
- },
- {
- "id": 10873,
- "name": "№10873 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "23.695830951060117",
- "latitude": "52.08234715234664",
- "address": "Набережная",
- "city_id": 371,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-16-20-07-01-duw.jpg",
- "trainings": 1
- },
- {
- "id": 10874,
- "name": "№10874 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.160626",
- "latitude": "59.990582",
- "address": "Морская, 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-17-22-07-05-p-f.jpg",
- "trainings": 1
- },
- {
- "id": 10875,
- "name": "№10875 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.583662986755375",
- "latitude": "50.492231275400215",
- "address": "вулиця Райдужна, 30",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-19-08-07-23-sso.jpg",
- "trainings": 1
- },
- {
- "id": 10876,
- "name": "№10876 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.33769924938679",
- "latitude": "44.38817173293993",
- "address": "Заречная улица",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-19-13-07-19-42j.jpg",
- "trainings": 0
- },
- {
- "id": 10877,
- "name": "№10877 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.477328",
- "latitude": "55.675825",
- "address": "Парк Олимпийской деревне-80",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-19-17-07-00-g6g.jpg",
- "trainings": 3
- },
- {
- "id": 10878,
- "name": "№10878 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.464999",
- "latitude": "55.673519",
- "address": "улица Мичуринский Проспект, Олимпийская Деревня",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-19-23-07-01-zdv.jpg",
- "trainings": 2
- },
- {
- "id": 10879,
- "name": "№10879 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.237603671116627",
- "latitude": "55.17409373107159",
- "address": "г. Витебск ул. Петруся Бровки 7 СШ №12",
- "city_id": 373,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-21-17-07-28-z-p.jpg",
- "trainings": 0
- },
- {
- "id": 10880,
- "name": "№10880 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.550438",
- "latitude": "55.866122",
- "address": "Селигерская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-22-16-07-25-het.jpg",
- "trainings": 0
- },
- {
- "id": 10881,
- "name": "№10881 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.027531422674652",
- "latitude": "59.851085363699",
- "address": "Львовская улица, 21",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-23-17-07-30-h68.jpg",
- "trainings": 0
- },
- {
- "id": 10882,
- "name": "№10882 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.02547618001699",
- "latitude": "59.8520817251383",
- "address": "улица Гоголя, 8",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-23-17-07-22--uf.jpg",
- "trainings": 0
- },
- {
- "id": 10883,
- "name": "№10883 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "30.263310670852665",
- "latitude": "60.10965425691196",
- "address": "Осиновая роща",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-24-10-07-36-shc.jpeg",
- "trainings": 1
- },
- {
- "id": 10884,
- "name": "№10884 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.251369476318363",
- "latitude": "60.11048297351385",
- "address": "Осиновая Роща ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-24-14-07-07-k05.jpeg",
- "trainings": 1
- },
- {
- "id": 10885,
- "name": "№10885 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.305560827255253",
- "latitude": "60.115043214956025",
- "address": "Озеро тохколодское",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-24-14-07-59-ddq.jpeg",
- "trainings": 0
- },
- {
- "id": 10886,
- "name": "№10886 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.297063589096073",
- "latitude": "60.1133539142764",
- "address": "Юкки",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-24-14-07-53-yla.jpeg",
- "trainings": 2
- },
- {
- "id": 10887,
- "name": "№10887 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "54.13129460066556",
- "latitude": "56.77866638007659",
- "address": "Вокзальная улица, 5 корпус 2",
- "city_id": 7442,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-25-12-07-20-adq.jpg",
- "trainings": 0
- },
- {
- "id": 10888,
- "name": "№10888 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "25.108576508483935",
- "latitude": "60.20913446828213",
- "address": "Meripellontie 11, 00910 Helsinki",
- "city_id": 697,
- "country_id": 23,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-26-01-07-19-fxc.jpg",
- "trainings": 1
- },
- {
- "id": 10889,
- "name": "№10889 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.78535630553961",
- "latitude": "44.717617443318616",
- "address": "улица набережная Адмирала Серебрякова, 19",
- "city_id": 88,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-26-22-07-06-2ye.jpg",
- "trainings": 0
- },
- {
- "id": 10890,
- "name": "№10890 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.544994761838105",
- "latitude": "55.59995730803169",
- "address": "Ул.Паустовского д40 к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-28-00-07-44-ief.jpg",
- "trainings": 0
- },
- {
- "id": 10891,
- "name": "№10891 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.961445",
- "latitude": "45.136203",
- "address": "Краснодар",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-28-11-07-55-fs4.jpg",
- "trainings": 0
- },
- {
- "id": 10892,
- "name": "№10892 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.91961669921876",
- "latitude": "55.99784097495826",
- "address": "побежимова 11",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-28-15-07-44-fnq.jpg",
- "trainings": 0
- },
- {
- "id": 10893,
- "name": "№10893 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "92.9219126701355",
- "latitude": "55.99781097582585",
- "address": "затонская 4",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-28-15-07-57-rlx.jpg",
- "trainings": 0
- },
- {
- "id": 10894,
- "name": "№10894 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.572568655068608",
- "latitude": "53.91896388236429",
- "address": "Куйбышева 57",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-30-09-07-48-bxl.jpg",
- "trainings": 0
- },
- {
- "id": 10895,
- "name": "№10895 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "83.00788868937478",
- "latitude": "55.01862197269052",
- "address": "Плющихинский ж/м, Октябрьский район, Новосибирск 55.018609° 83.008177°",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-30-19-07-21-x5p.png",
- "trainings": 1
- },
- {
- "id": 10896,
- "name": "№10896 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "28.262589598388697",
- "latitude": "57.7140742557441",
- "address": "Раздолье ",
- "city_id": 107,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-31-00-07-07-l5v.jpeg",
- "trainings": 1
- },
- {
- "id": 10897,
- "name": "№10897 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.703376638381553",
- "latitude": "60.18879307554894",
- "address": "60.188798, 29.703406",
- "city_id": 8714,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-31-07-07-46-jrq.jpg",
- "trainings": 0
- },
- {
- "id": 10898,
- "name": "№10898 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.688380",
- "latitude": "55.856945",
- "address": "улица Вешних Вод",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-31-10-07-23-vgb.jpg",
- "trainings": 1
- },
- {
- "id": 10899,
- "name": "№10899 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "20.49508798867464",
- "latitude": "54.9622840257888",
- "address": "Ул Мосина, 6",
- "city_id": 8442,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-31-12-07-09-mq3.jpg",
- "trainings": 1
- },
- {
- "id": 10900,
- "name": "№10900 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "20.48848908394575",
- "latitude": "54.961728311305315",
- "address": "улица Московская, 50",
- "city_id": 8442,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-31-12-07-32-f39.jpg",
- "trainings": 1
- },
- {
- "id": 10902,
- "name": "№10902 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "55.966289341449745",
- "latitude": "54.72730451287984",
- "address": "Мингажева 107/1",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-02-20-08-02-se5.jpg",
- "trainings": 1
- },
- {
- "id": 10903,
- "name": "№10903 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.355228",
- "latitude": "55.888492",
- "address": "4-й квартал",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/07/2020-07-31-20-07-45-4oh.jpg",
- "trainings": 1
- },
- {
- "id": 10904,
- "name": "№10904 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "103.85686756485138",
- "latitude": "52.50854978637698",
- "address": "22 микрорайон, 16",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-01-05-08-54-m2q.jpg",
- "trainings": 0
- },
- {
- "id": 10905,
- "name": "№10905 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.92425136268138",
- "latitude": "43.420585349521964",
- "address": "Интернациональная улица, 2",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-01-12-08-06-wf1.jpg",
- "trainings": 0
- },
- {
- "id": 10906,
- "name": "№10906 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.647678",
- "latitude": "43.662005",
- "address": "Soyuznaya Street",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-01-15-08-00-r40.jpg",
- "trainings": 0
- },
- {
- "id": 10907,
- "name": "№10907 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.48762735558103",
- "latitude": "55.6548319429828",
- "address": "26-ти Бакинских Комиссаров 3к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-01-16-08-43-ryr.jpg",
- "trainings": 0
- },
- {
- "id": 10908,
- "name": "№10908 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.055124163547596",
- "latitude": "54.88158654317435",
- "address": "Приокский переулок д. 7",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-01-16-08-40-ws4.jpg",
- "trainings": 0
- },
- {
- "id": 10909,
- "name": "№10909 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.456695",
- "latitude": "55.593575",
- "address": "Бульвар Веласкеса",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-01-19-08-44-dle.jpg",
- "trainings": 0
- },
- {
- "id": 10911,
- "name": "№10911 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "103.89499285306421",
- "latitude": "52.52798322475293",
- "address": "93 квартал, 22 дом",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-02-11-08-10-lkq.jpg",
- "trainings": 0
- },
- {
- "id": 10912,
- "name": "№10912 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.727065950632095",
- "latitude": "46.43272613281269",
- "address": "Lyustdorfs'ka Road, 60",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-02-19-08-07-ral.jpg",
- "trainings": 1
- },
- {
- "id": 10913,
- "name": "№10913 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.75404305282356",
- "latitude": "55.70904528829391",
- "address": "Окская 97 корпус 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-03-19-08-36-nwk.jpg",
- "trainings": 1
- },
- {
- "id": 10914,
- "name": "№10914 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.180323257845888",
- "latitude": "59.86364920395853",
- "address": "Улица Доблести д.7.к.1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-04-07-08-04-fmd.jpg",
- "trainings": 2
- },
- {
- "id": 10915,
- "name": "№10915 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.83267591265141",
- "latitude": "56.4269264484582",
- "address": "Гагарина 2/1",
- "city_id": 593,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-04-10-08-54-s5o.jpg",
- "trainings": 1
- },
- {
- "id": 10916,
- "name": "№10916 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.396039783954624",
- "latitude": "59.83598693067803",
- "address": "ул. Ярослава Гашека 10, корпус 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-04-12-08-54-xky.jpg",
- "trainings": 0
- },
- {
- "id": 10917,
- "name": "№10917 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.398791730403904",
- "latitude": "59.84172245364171",
- "address": "Дунайский пр. 48 корпус 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-04-12-08-19-5u_.jpg",
- "trainings": 0
- },
- {
- "id": 10918,
- "name": "№10918 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.423732280826705",
- "latitude": "55.83311799162079",
- "address": "2-ой Тушинский проезд ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-05-11-08-04-tz_.jpg",
- "trainings": 0
- },
- {
- "id": 10919,
- "name": "№10919 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.40806309878826",
- "latitude": "49.91348130378682",
- "address": "вулиця Сергія Грицевця, 41",
- "city_id": 548,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-05-14-08-24-tdz.jpg",
- "trainings": 0
- },
- {
- "id": 10920,
- "name": "№10920 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.289734",
- "latitude": "45.329735",
- "address": "Темрюкский район",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-08-12-08-24-mze.jpg",
- "trainings": 0
- },
- {
- "id": 10921,
- "name": "№10921 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.43282534580812",
- "latitude": "55.85241036570595",
- "address": "55.852540, 37.432512",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-08-14-08-43-10u.jpg",
- "trainings": 0
- },
- {
- "id": 10922,
- "name": "№10922 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.03561210632325",
- "latitude": "51.51537781694233",
- "address": "Курская Область, ПГТ Горшечное, ул Первомайская ",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-08-16-08-15-cb-.jpg",
- "trainings": 2
- },
- {
- "id": 10923,
- "name": "№10923 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.330937206745148",
- "latitude": "59.88873690567168",
- "address": "Заставская улица, 11",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-08-20-08-42-sis.jpg",
- "trainings": 0
- },
- {
- "id": 10925,
- "name": "№10925 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "28.082806",
- "latitude": "59.115876",
- "address": "Ленинградская обл., г. Сланцы, Спортивная ул. 8 Сланцевская ДЮСШ",
- "city_id": 123,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-09-19-08-33-7sd.jpg",
- "trainings": 2
- },
- {
- "id": 10926,
- "name": "№10926 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "39.74149636924267",
- "latitude": "47.13898689587831",
- "address": "Рабочая улица, 89",
- "city_id": 8051,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-10-16-08-52-ipw.jpg",
- "trainings": 1
- },
- {
- "id": 10927,
- "name": "№10927 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.93243258883967",
- "latitude": "54.96412790420264",
- "address": "Ватутина, 107",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-10-20-08-24-07g.jpg",
- "trainings": 0
- },
- {
- "id": 10929,
- "name": "№10929 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.517068095505238",
- "latitude": "60.14853600783016",
- "address": "Привокзальная улица, 24",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-11-14-08-13-lek.jpg",
- "trainings": 1
- },
- {
- "id": 10930,
- "name": "№10930 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.461306899785995",
- "latitude": "55.78319755112711",
- "address": "улица Генерала Глаголева, 15, к.1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-11-19-08-27-nye.jpg",
- "trainings": 1
- },
- {
- "id": 10931,
- "name": "№10931 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "58.98508071899415",
- "latitude": "53.36174444293704",
- "address": "Сиреневая 34",
- "city_id": 563,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-11-21-08-54-kny.jpg",
- "trainings": 1
- },
- {
- "id": 10932,
- "name": "№10932 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "69.29540902376176",
- "latitude": "41.308919949359975",
- "address": "ул. Хамида Олимжана",
- "city_id": 470,
- "country_id": 21,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-12-08-08-44-eoj.jpg",
- "trainings": 0
- },
- {
- "id": 10933,
- "name": "№10933 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "58.972892761230476",
- "latitude": "53.36078404984157",
- "address": "Жуково 7/2",
- "city_id": 563,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-12-16-08-27-b7w.jpg",
- "trainings": 0
- },
- {
- "id": 10934,
- "name": "№10934 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.595028",
- "latitude": "55.861903",
- "address": "Санникова 9к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-12-20-08-51-8tr.jpg",
- "trainings": 1
- },
- {
- "id": 10935,
- "name": "№10935 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.10486143827438",
- "latitude": "55.74245301274293",
- "address": "Unnamed Road",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-12-20-08-16-n_m.jpg",
- "trainings": 1
- },
- {
- "id": 10936,
- "name": "№10936 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "99.03059677406142",
- "latitude": "54.89431527348639",
- "address": "Масловского, 34. Школа N°9",
- "city_id": 8197,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-13-01-08-40-5yn.jpg",
- "trainings": 0
- },
- {
- "id": 10937,
- "name": "№10937 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.485945",
- "latitude": "59.918480",
- "address": "Товарищеский проспект",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-13-10-08-57-7ro.jpg",
- "trainings": 0
- },
- {
- "id": 10938,
- "name": "№10938 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.09258966147899",
- "latitude": "45.04941430494137",
- "address": "Побережье, Ст. Благовещенская",
- "city_id": 4,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-15-20-08-18-yfz.jpg",
- "trainings": 2
- },
- {
- "id": 10939,
- "name": "№10939 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.86049493601787",
- "latitude": "43.24852194974086",
- "address": "Тастак 1",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-17-03-08-45-b5f.jpg",
- "trainings": 0
- },
- {
- "id": 10940,
- "name": "№10940 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.11867430173078",
- "latitude": "55.777959406763465",
- "address": "С.Бисерово бисерово озеро ",
- "city_id": 7989,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-17-06-08-57-r83.jpg",
- "trainings": 1
- },
- {
- "id": 10941,
- "name": "№10941 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.061386",
- "latitude": "54.885415",
- "address": "Чайковского, 46/10",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-17-09-08-57-pl1.jpg",
- "trainings": 1
- },
- {
- "id": 10942,
- "name": "№10942 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.69861673794097",
- "latitude": "55.89189573916487",
- "address": "Кострово, центральная улица ",
- "city_id": 47,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-17-21-08-54-crz.jpg",
- "trainings": 0
- },
- {
- "id": 10943,
- "name": "№10943 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.65093203634024",
- "latitude": "55.62821514539869",
- "address": "Кавказский бульвар, 44",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-18-08-08-24-8si.jpg",
- "trainings": 1
- },
- {
- "id": 10944,
- "name": "№10944 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.439695",
- "latitude": "59.915287",
- "address": "Союзный проспект",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-18-14-08-49-7db.jpg",
- "trainings": 0
- },
- {
- "id": 10945,
- "name": "№10945 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "27.69921360909942",
- "latitude": "53.83652008983646",
- "address": "Шабаны, 17",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-18-16-08-00-zvc.jpg",
- "trainings": 0
- },
- {
- "id": 10946,
- "name": "№10946 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.467287",
- "latitude": "59.931192",
- "address": "улица Кржижановского",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-18-19-08-23--bb.jpg",
- "trainings": 0
- },
- {
- "id": 10947,
- "name": "№10947 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "28.6679220199585",
- "latitude": "55.52408805977325",
- "address": "улица Дружбы, 7",
- "city_id": 8715,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-18-20-08-09-qmo.jpg",
- "trainings": 0
- },
- {
- "id": 10948,
- "name": "№10948 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.58027625083924",
- "latitude": "59.60067745654197",
- "address": "Льва Толстого, 11",
- "city_id": 7417,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-19-14-08-14-qa8.jpg",
- "trainings": 0
- },
- {
- "id": 10949,
- "name": "№10949 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.72379077225923",
- "latitude": "47.29073973118892",
- "address": "улица Южная, 1",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-19-21-08-20-d8g.jpg",
- "trainings": 0
- },
- {
- "id": 10950,
- "name": "№10950 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "76.87355909447433",
- "latitude": "43.25444531721",
- "address": "Ул. Прокофьева",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-20-19-08-52-zn-.jpg",
- "trainings": 1
- },
- {
- "id": 10951,
- "name": "№10951 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "64.06144747008229",
- "latitude": "67.51165620786499",
- "address": "ул. Тиманская, д. 6-А, школа #39",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-21-15-08-52-3v0.jpg",
- "trainings": 0
- },
- {
- "id": 10952,
- "name": "№10952 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.472637",
- "latitude": "59.909125",
- "address": "улица Антонова-Овсеенко",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-21-19-08-16-dai.jpg",
- "trainings": 0
- },
- {
- "id": 10953,
- "name": "№10953 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "104.26025532912966",
- "latitude": "52.273553050000004",
- "address": "Роща звёздочка",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-22-02-08-06-bs9.jpg",
- "trainings": 1
- },
- {
- "id": 10954,
- "name": "№10954 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.88901901245119",
- "latitude": "43.25059300959493",
- "address": "Толе би Розыбакиева",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-22-12-08-11-ymc.jpg",
- "trainings": 0
- },
- {
- "id": 10955,
- "name": "№10955 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "102.15834886058678",
- "latitude": "54.107985329680204",
- "address": "Микрорайон Юбилейный, Гимназия N 1",
- "city_id": 8155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-25-02-08-05-bo-.jpg",
- "trainings": 0
- },
- {
- "id": 10956,
- "name": "№10956 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.055205583572395",
- "latitude": "55.37543315353667",
- "address": "Ул. Гражданская, д. 100",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-27-08-08-52-k_k.jpg",
- "trainings": 0
- },
- {
- "id": 10957,
- "name": "№10957 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.494000",
- "latitude": "50.505495",
- "address": "Киев",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-27-16-08-49-v2z.jpg",
- "trainings": 0
- },
- {
- "id": 10958,
- "name": "№10958 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "77.01624155044557",
- "latitude": "64.5738793028772",
- "address": "Старт",
- "city_id": 7911,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-27-22-08-53-f9d.jpeg",
- "trainings": 1
- },
- {
- "id": 10959,
- "name": "№10959 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.85215377807617",
- "latitude": "55.99301231487184",
- "address": "Ярыгинский проезд",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-28-06-08-02-itz.jpg",
- "trainings": 1
- },
- {
- "id": 10960,
- "name": "№10960 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.86666337685439",
- "latitude": "43.24623821505632",
- "address": "Сайран, янтарный берег",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-29-16-08-07-thk.jpg",
- "trainings": 0
- },
- {
- "id": 10961,
- "name": "№10961 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.86998069286348",
- "latitude": "43.2419515169861",
- "address": "Сайран",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-29-16-08-49-qwb.jpg",
- "trainings": 0
- },
- {
- "id": 10962,
- "name": "№10962 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.495803",
- "latitude": "50.502588",
- "address": "Маршала Малиновского улица",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-30-14-08-18-pxh.jpg",
- "trainings": 0
- },
- {
- "id": 10963,
- "name": "№10963 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.503645",
- "latitude": "50.507195",
- "address": "Оболонский проспект",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-30-15-08-06-tws.jpg",
- "trainings": 0
- },
- {
- "id": 10964,
- "name": "№10964 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.503512",
- "latitude": "50.509422",
- "address": "Оболонский проспект",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-30-15-08-58-b8_.jpg",
- "trainings": 0
- },
- {
- "id": 10965,
- "name": "№10965 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.501375",
- "latitude": "50.510005",
- "address": "Оболонский проспект",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-30-15-08-18-09h.jpg",
- "trainings": 0
- },
- {
- "id": 10966,
- "name": "№10966 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.505280",
- "latitude": "50.517063",
- "address": "Киев",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-30-16-08-45-jfj.jpg",
- "trainings": 0
- },
- {
- "id": 10967,
- "name": "№10967 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.504837",
- "latitude": "50.518453",
- "address": "Киев",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-30-16-08-12-5l0.jpg",
- "trainings": 0
- },
- {
- "id": 10968,
- "name": "№10968 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.509767",
- "latitude": "50.525537",
- "address": "Киев",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-30-16-08-27-yxa.jpg",
- "trainings": 0
- },
- {
- "id": 10969,
- "name": "№10969 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.508858",
- "latitude": "50.524733",
- "address": "Киев",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-30-16-08-08-eu9.jpg",
- "trainings": 0
- },
- {
- "id": 10970,
- "name": "№10970 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.511892",
- "latitude": "50.527442",
- "address": "Северная улица",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-30-16-08-10--wn.jpg",
- "trainings": 0
- },
- {
- "id": 10971,
- "name": "№10971 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "64.06190432119172",
- "latitude": "67.5131679052351",
- "address": "б-р Шерстнёва, д. 5",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-31-07-08-59-jyk.jpg",
- "trainings": 0
- },
- {
- "id": 10972,
- "name": "№10972 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "85.88929469946842",
- "latitude": "51.539482662590494",
- "address": "с. Аскат",
- "city_id": 614,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2020/08/2020-08-31-16-08-26-adm.jpg",
- "trainings": 0
- },
- {
- "id": 10973,
- "name": "№10973 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "102.14939484566472",
- "latitude": "54.10457535747836",
- "address": "Микрорайон Октябрьский, д.3",
- "city_id": 8155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-02-02-09-39-6od.jpg",
- "trainings": 0
- },
- {
- "id": 10974,
- "name": "№10974 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.483580",
- "latitude": "59.919842",
- "address": "Товарищеский проспект",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-02-10-09-52-9xh.jpg",
- "trainings": 0
- },
- {
- "id": 10975,
- "name": "№10975 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.470517",
- "latitude": "59.928600",
- "address": "улица Латышских Стрелков",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-02-19-09-59-jxd.jpg",
- "trainings": 0
- },
- {
- "id": 10976,
- "name": "№10976 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.114747",
- "latitude": "59.838760",
- "address": "Ветеранов проспект",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-02-23-09-43-8t1.jpg",
- "trainings": 1
- },
- {
- "id": 10977,
- "name": "№10977 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "30.243421",
- "latitude": "59.861706",
- "address": "улица Морской Пехоты 10 корпус 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-02-23-09-09-bcv.jpg",
- "trainings": 0
- },
- {
- "id": 10978,
- "name": "№10978 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.261915",
- "latitude": "59.867319",
- "address": "проспект Стачек",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-02-23-09-41-1kx.jpg",
- "trainings": 0
- },
- {
- "id": 10979,
- "name": "№10979 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "142.75619208812716",
- "latitude": "46.95345901044715",
- "address": "Ул. Горького, д. 20а",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-03-03-09-50-2h6.jpg",
- "trainings": 0
- },
- {
- "id": 10980,
- "name": "№10980 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "142.75658369064334",
- "latitude": "46.954244441468134",
- "address": "Ул. Горького, д. 18",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-03-03-09-57-lhf.jpg",
- "trainings": 0
- },
- {
- "id": 10981,
- "name": "№10981 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.837388955056667",
- "latitude": "59.87937870165889",
- "address": "Университетский проспект, 26",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-03-11-09-07-4cl.jpg",
- "trainings": 0
- },
- {
- "id": 10982,
- "name": "№10982 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "142.75584340095523",
- "latitude": "46.9385189798646",
- "address": "Ул. Горького, д. 56А",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-03-11-09-08-nbb.jpg",
- "trainings": 0
- },
- {
- "id": 10983,
- "name": "№10983 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "142.7564710378647",
- "latitude": "46.9382790703772",
- "address": "Ул. Горького, д. 62А",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-03-11-09-57-hqu.jpg",
- "trainings": 0
- },
- {
- "id": 10984,
- "name": "№10984 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "104.22622919088099",
- "latitude": "52.25045930757418",
- "address": "Квартал Стрижи 11",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-03-16-09-25-luq.jpg",
- "trainings": 0
- },
- {
- "id": 10985,
- "name": "№10985 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "104.19436454729296",
- "latitude": "52.26791225372521",
- "address": "Синюшина гора",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-03-16-09-04-lrt.jpg",
- "trainings": 0
- },
- {
- "id": 10986,
- "name": "№10986 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.92025566101075",
- "latitude": "55.703600469969274",
- "address": "Рождественская 16",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-04-10-09-59-rxt.jpeg",
- "trainings": 0
- },
- {
- "id": 10987,
- "name": "№10987 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "34.534760706128516",
- "latitude": "49.595494772421816",
- "address": "Клубний провулок",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-04-11-09-45-jhj.jpg",
- "trainings": 1
- },
- {
- "id": 10988,
- "name": "№10988 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.53516286611558",
- "latitude": "55.63510787275745",
- "address": "улица Введенского,26",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-05-19-09-38-ged.jpg",
- "trainings": 0
- },
- {
- "id": 10989,
- "name": "№10989 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.533231675624855",
- "latitude": "55.635658966052375",
- "address": "улица Введенского,26 с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-05-19-09-15-rsd.jpg",
- "trainings": 0
- },
- {
- "id": 10990,
- "name": "№10990 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.965910",
- "latitude": "56.233743",
- "address": "Вятская 3",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-06-17-09-28-2bm.jpg",
- "trainings": 1
- },
- {
- "id": 10991,
- "name": "№10991 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "69.5863499119878",
- "latitude": "42.32703015276385",
- "address": "проспект Бауыржана Момышулы, 25",
- "city_id": 422,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-07-10-09-52-xy1.jpg",
- "trainings": 1
- },
- {
- "id": 10992,
- "name": "№10992 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.49383533000947",
- "latitude": "52.62658306903924",
- "address": "ул.Горького,111/1",
- "city_id": 7809,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-07-14-09-03-sg0.jpg",
- "trainings": 0
- },
- {
- "id": 10993,
- "name": "№10993 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.93429738283159",
- "latitude": "43.24409881669787",
- "address": "Сейфуллина угол Курмангазы",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-07-15-09-40-ggb.jpg",
- "trainings": 0
- },
- {
- "id": 10994,
- "name": "№10994 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "69.03297834098339",
- "latitude": "60.98402303428923",
- "address": "улица Спортивная, 22",
- "city_id": 640,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-08-08-09-43-dff.jpg",
- "trainings": 0
- },
- {
- "id": 10995,
- "name": "№10995 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.77212424945901",
- "latitude": "48.06109002363722",
- "address": "Ул. Ерёменко 18",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-09-15-09-12-skx.jpg",
- "trainings": 1
- },
- {
- "id": 10996,
- "name": "№10996 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.54978358745576",
- "latitude": "55.60599943853537",
- "address": "новоясеневская д17 к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-09-17-09-22-ooz.jpg",
- "trainings": 0
- },
- {
- "id": 10997,
- "name": "№10997 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.550188601017005",
- "latitude": "55.60350091314333",
- "address": "новоясеневская д19 к 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-09-17-09-37-abd.jpg",
- "trainings": 0
- },
- {
- "id": 10998,
- "name": "№10998 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.550483644008644",
- "latitude": "55.60534641299805",
- "address": "новоясеневская д21 к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-09-17-09-48-zyi.jpg",
- "trainings": 0
- },
- {
- "id": 10999,
- "name": "№10999 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "39.182032",
- "latitude": "51.655625",
- "address": "улица Ворошилова",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-11-07-09-04-65f.jpg",
- "trainings": 0
- },
- {
- "id": 11000,
- "name": "№11000 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "74.509400",
- "latitude": "65.861542",
- "address": "Надым — Новый Уренгой",
- "city_id": 7967,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-12-20-09-30-ofg.jpg",
- "trainings": 1
- },
- {
- "id": 11002,
- "name": "№11002 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.5331860780716",
- "latitude": "55.61599194866196",
- "address": "школа №1206 корпус №9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-13-16-09-39-_vg.jpg",
- "trainings": 0
- },
- {
- "id": 11003,
- "name": "№11003 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.537432014942176",
- "latitude": "55.61434236011952",
- "address": "улица айвазовского ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-13-16-09-15-asi.jpg",
- "trainings": 0
- },
- {
- "id": 11004,
- "name": "№11004 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "77.0590576529503",
- "latitude": "43.1583786742456",
- "address": "Медео",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-13-18-09-07-na_.jpg",
- "trainings": 0
- },
- {
- "id": 11005,
- "name": "№11005 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "30.67568052560091",
- "latitude": "61.706025819465296",
- "address": "улица 4-я Гористая, 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-14-10-09-26-skd.jpg",
- "trainings": 0
- },
- {
- "id": 11006,
- "name": "№11006 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "34.97459739446641",
- "latitude": "57.033555540252095",
- "address": "улица Мира, 30 А",
- "city_id": 8122,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-14-11-09-46-92i.jpg",
- "trainings": 1
- },
- {
- "id": 11007,
- "name": "№11007 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.82989091426134",
- "latitude": "47.238736319245916",
- "address": "проспект 40-Летия Победы, 310В",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-17-12-09-33-v-v.jpg",
- "trainings": 0
- },
- {
- "id": 11008,
- "name": "№11008 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.758867025375366",
- "latitude": "47.281922288563",
- "address": "переулок Беломорский, 102",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-17-12-09-28-878.jpg",
- "trainings": 0
- },
- {
- "id": 11010,
- "name": "№11010 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.54213392734528",
- "latitude": "55.59996876614583",
- "address": "школа №156",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-18-20-09-59-gfd.jpg",
- "trainings": 0
- },
- {
- "id": 11011,
- "name": "№11011 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.54416167736054",
- "latitude": "55.601174974796",
- "address": "улица паустовского д40 к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-18-20-09-08-gsx.jpg",
- "trainings": 0
- },
- {
- "id": 11012,
- "name": "№11012 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.543078064918525",
- "latitude": "55.59797450065242",
- "address": "улица голубинская д29 к з",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-18-20-09-37-_3w.jpg",
- "trainings": 0
- },
- {
- "id": 11013,
- "name": "№11013 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "113.49447023123504",
- "latitude": "52.03384222886963",
- "address": "улица Анохина, 110",
- "city_id": 632,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-19-07-09-12-mwb.jpg",
- "trainings": 0
- },
- {
- "id": 11014,
- "name": "№11014 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "42.72434178739786",
- "latitude": "43.04372851190145",
- "address": "Zugdidi Jvari Mestia Lasdili",
- "city_id": 8955,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-19-13-09-05-d54.jpg",
- "trainings": 0
- },
- {
- "id": 11015,
- "name": "№11015 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.581195354461673",
- "latitude": "50.48787640482287",
- "address": "Радужная 22",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-19-22-09-34-qxu.jpg",
- "trainings": 1
- },
- {
- "id": 11016,
- "name": "№11016 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.5401383638382",
- "latitude": "55.59433121897343",
- "address": "школа №107",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-20-11-09-51-f59.jpg",
- "trainings": 0
- },
- {
- "id": 11017,
- "name": "№11017 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.539816498756416",
- "latitude": "55.59252460775877",
- "address": "школа №1106",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-20-20-09-33-lzy.jpg",
- "trainings": 0
- },
- {
- "id": 11018,
- "name": "№11018 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.539349794387824",
- "latitude": "55.592527639055284",
- "address": "Школа №18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-20-20-09-36-mpq.jpg",
- "trainings": 0
- },
- {
- "id": 11019,
- "name": "№11019 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "31.973404418040452",
- "latitude": "46.973827170521595",
- "address": "Обсерваторная",
- "city_id": 523,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-21-03-09-39-cw2.jpg",
- "trainings": 1
- },
- {
- "id": 11020,
- "name": "№11020 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.5453579093919",
- "latitude": "49.6236980459705",
- "address": "Шведський ліс",
- "city_id": 530,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-22-11-09-34-pse.jpg",
- "trainings": 0
- },
- {
- "id": 11021,
- "name": "№11021 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.9687576195156",
- "latitude": "43.26367424793994",
- "address": "Гоголя, 1",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-25-08-09-58-f-l.png",
- "trainings": 0
- },
- {
- "id": 11022,
- "name": "№11022 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.9684312453137",
- "latitude": "43.26585836528219",
- "address": "Парк Горького",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-25-18-09-36-kxb.png",
- "trainings": 0
- },
- {
- "id": 11024,
- "name": "№11024 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "56.17821335792541",
- "latitude": "57.99311164281999",
- "address": "Подлесная улица, 55А",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-26-08-09-16-dm6.jpg",
- "trainings": 0
- },
- {
- "id": 11025,
- "name": "№11025 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "103.87930424820448",
- "latitude": "52.52540983986206",
- "address": "94 квартал, СОШ N38",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-27-03-09-10-zlg.jpg",
- "trainings": 1
- },
- {
- "id": 11026,
- "name": "№11026 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "82.93758776038887",
- "latitude": "55.094676668696756",
- "address": "Ulitsa Fadeyeva, 50 корпус 1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-27-11-09-26-wre.jpg",
- "trainings": 0
- },
- {
- "id": 11027,
- "name": "№11027 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.605332502386098",
- "latitude": "53.92205888582789",
- "address": "Проспект Независимости, 76А",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-27-15-09-08-ajx.jpg",
- "trainings": 0
- },
- {
- "id": 11028,
- "name": "№11028 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "55.837036371231086",
- "latitude": "54.70602180372395",
- "address": "Таллинская 23",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-27-18-09-37-p9i.png",
- "trainings": 0
- },
- {
- "id": 11029,
- "name": "№11029 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.8230234272778",
- "latitude": "43.23578998417125",
- "address": "Толе Би уг. Яссауи",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-29-08-09-34-hl7.jpg",
- "trainings": 0
- },
- {
- "id": 11030,
- "name": "№11030 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.458771467208866",
- "latitude": "42.513032729314524",
- "address": "Бургас, Парк Арена ОЗК",
- "city_id": 9112,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-29-08-09-08-hgl.jpg",
- "trainings": 0
- },
- {
- "id": 11031,
- "name": "№11031 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.8638940298115",
- "latitude": "43.251917264057184",
- "address": "Алматинка",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-29-16-09-25-fiq.jpg",
- "trainings": 1
- },
- {
- "id": 11032,
- "name": "№11032 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.773839295091506",
- "latitude": "57.693081500000005",
- "address": "Ленинградский проспект 60",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/09/2020-09-30-12-09-00-tw-.jpeg",
- "trainings": 1
- },
- {
- "id": 11033,
- "name": "№11033 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.324788242578503",
- "latitude": "60.05197286538328",
- "address": "улица Хошимина, 11, корп. 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-01-16-10-04-dxe.jpg",
- "trainings": 0
- },
- {
- "id": 11034,
- "name": "№11034 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.49209737777711",
- "latitude": "55.60277208345566",
- "address": "микрорайон Дружный, 3",
- "city_id": 7397,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-01-22-10-03-gze.jpg",
- "trainings": 1
- },
- {
- "id": 11035,
- "name": "№11035 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.771828800439835",
- "latitude": "57.67689000100836",
- "address": "проспект Дзержинского, 42",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-02-09-10-14-sws.jpg",
- "trainings": 0
- },
- {
- "id": 11036,
- "name": "№11036 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.48523092269898",
- "latitude": "55.60125074043304",
- "address": "микрорайон Восточный, 12",
- "city_id": 7397,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-02-11-10-24-gyh.jpg",
- "trainings": 1
- },
- {
- "id": 11037,
- "name": "№11037 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "26.520422101020817",
- "latitude": "42.48860657574514",
- "address": "Парк Боровец",
- "city_id": 9058,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-02-16-10-12-kbc.jpg",
- "trainings": 1
- },
- {
- "id": 11038,
- "name": "№11038 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "104.2563629149845",
- "latitude": "52.268294158835",
- "address": "Грибоедова 59",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-04-07-10-29-lja.jpg",
- "trainings": 0
- },
- {
- "id": 11039,
- "name": "№11039 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.321680232882503",
- "latitude": "60.05734783076729",
- "address": "проспект Просвещения, 22, корп. 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-04-11-10-55-gr5.jpg",
- "trainings": 0
- },
- {
- "id": 11040,
- "name": "№11040 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.04680455533708",
- "latitude": "55.37451556623258",
- "address": "Парк Дворца культуры им. Конина",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-04-17-10-11-saj.jpg",
- "trainings": 0
- },
- {
- "id": 11041,
- "name": "№11041 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.81512367725372",
- "latitude": "57.694091165997314",
- "address": "Тутаевское шоссе, 52а",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-05-12-10-17-3a1.jpg",
- "trainings": 1
- },
- {
- "id": 11042,
- "name": "№11042 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.023658",
- "latitude": "55.995522",
- "address": "улица Ленина",
- "city_id": 8364,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-07-14-10-25-gev.jpg",
- "trainings": 0
- },
- {
- "id": 11044,
- "name": "№11044 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.268679782748222",
- "latitude": "60.055628124512985",
- "address": "Орлово-Денисовский проспект, 19к3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-07-17-10-21-fad.jpg",
- "trainings": 3
- },
- {
- "id": 11045,
- "name": "№11045 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "29.664428",
- "latitude": "46.839845",
- "address": "Тирасполь, Транснистрия",
- "city_id": 7926,
- "country_id": 15,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-07-23-10-22-uho.jpg",
- "trainings": 1
- },
- {
- "id": 11046,
- "name": "№11046 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.997246734797955",
- "latitude": "45.027987163407055",
- "address": "улица Карасуно - Набережная, 155",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-08-15-10-59-6tx.jpg",
- "trainings": 1
- },
- {
- "id": 11047,
- "name": "№11047 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "44.787449455071766",
- "latitude": "48.77650040248105",
- "address": "Волжский, парк 40-летия Победы ",
- "city_id": 7980,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-08-18-10-30-ypi.jpg",
- "trainings": 1
- },
- {
- "id": 11048,
- "name": "№11048 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "106.10357522964479",
- "latitude": "50.40396347794154",
- "address": "поселок Наушки улица Мясокомбинатская ",
- "city_id": 8341,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-09-12-10-09-f3y.jpeg",
- "trainings": 0
- },
- {
- "id": 11049,
- "name": "№11049 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.47324474155903",
- "latitude": "56.0125714851463",
- "address": "улица Ленина, Парк культуры и отдыха",
- "city_id": 73,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-09-16-10-40-prq.jpg",
- "trainings": 0
- },
- {
- "id": 11050,
- "name": "№11050 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "44.78664904832841",
- "latitude": "48.77206368891429",
- "address": "Рядом со школой №28",
- "city_id": 7980,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-09-18-10-27-fsr.jpg",
- "trainings": 1
- },
- {
- "id": 11051,
- "name": "№11051 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.798324704170234",
- "latitude": "48.766037147284564",
- "address": "Дружбы проспект, 48Б",
- "city_id": 7980,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-10-21-10-34-ekj.jpg",
- "trainings": 0
- },
- {
- "id": 11052,
- "name": "№11052 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.324475",
- "latitude": "55.840675",
- "address": "Садовод Сад 3 поселок",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-11-09-10-21-tnd.jpg",
- "trainings": 1
- },
- {
- "id": 11053,
- "name": "№11053 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.05655205249787",
- "latitude": "55.36357753348246",
- "address": "4 микр., д. 19А",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-11-13-10-30-rkg.jpg",
- "trainings": 0
- },
- {
- "id": 11054,
- "name": "№11054 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.250851",
- "latitude": "54.839574",
- "address": "Юбилейная, д. 5",
- "city_id": 8028,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-11-16-10-12-onm.jpg",
- "trainings": 0
- },
- {
- "id": 11055,
- "name": "№11055 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "44.80752736330033",
- "latitude": "48.776680778485996",
- "address": "21-й микрорайон, Волжский",
- "city_id": 7980,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-12-16-10-16-8y2.jpg",
- "trainings": 0
- },
- {
- "id": 11056,
- "name": "№11056 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.79554325342179",
- "latitude": "48.77318087969636",
- "address": "Детская библиотека №3",
- "city_id": 7980,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-12-16-10-24-zvh.jpg",
- "trainings": 0
- },
- {
- "id": 11057,
- "name": "№11057 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.78756481069912",
- "latitude": "44.68010761669872",
- "address": "ул.Пионерская 12",
- "city_id": 88,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-14-23-10-00-kby.jpg",
- "trainings": 0
- },
- {
- "id": 11058,
- "name": "№11058 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.579607486724857",
- "latitude": "50.49016992901437",
- "address": "вулиця Райдужна, 14",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-15-09-10-07-viq.jpg",
- "trainings": 2
- },
- {
- "id": 11059,
- "name": "№11059 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.326415337622166",
- "latitude": "60.05392908187981",
- "address": "проспект Просвещения, 15",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-17-11-10-49-r4_.jpg",
- "trainings": 0
- },
- {
- "id": 11060,
- "name": "№11060 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.547173798084266",
- "latitude": "55.61556024486661",
- "address": "школа 1694 корпус 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-17-16-10-42-pgv.jpg",
- "trainings": 1
- },
- {
- "id": 11061,
- "name": "№11061 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.54709869623185",
- "latitude": "55.608216007937386",
- "address": "литовский бульвар д15 к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-17-16-10-39-y1h.jpg",
- "trainings": 0
- },
- {
- "id": 11062,
- "name": "№11062 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.553796172142036",
- "latitude": "55.61207766042436",
- "address": "улица рокотова д2/10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-17-16-10-45-vw8.jpg",
- "trainings": 0
- },
- {
- "id": 11063,
- "name": "№11063 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.91521772858556",
- "latitude": "43.17046476100156",
- "address": "100-летия Владивостока проспект, 123",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-18-04-10-45-aei.jpg",
- "trainings": 0
- },
- {
- "id": 11064,
- "name": "№11064 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "131.91884410904584",
- "latitude": "43.1748796346564",
- "address": "100-летия Владивостока проспект, 123",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-18-04-10-12-zpr.jpg",
- "trainings": 0
- },
- {
- "id": 11065,
- "name": "№11065 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.407824",
- "latitude": "48.449039",
- "address": "Сокирянский район",
- "city_id": 9085,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-18-11-10-59-qwm.jpg",
- "trainings": 1
- },
- {
- "id": 11066,
- "name": "№11066 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.856925",
- "latitude": "48.030220",
- "address": "40 лет Победы улица",
- "city_id": 9092,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-18-14-10-43-ufb.jpg",
- "trainings": 0
- },
- {
- "id": 11067,
- "name": "№11067 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.858113",
- "latitude": "48.030025",
- "address": "40 лет Победы улица",
- "city_id": 9092,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-18-14-10-38-oq6.jpg",
- "trainings": 0
- },
- {
- "id": 11068,
- "name": "№11068 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.859675",
- "latitude": "48.029664",
- "address": "40 лет Победы улица",
- "city_id": 9092,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-18-14-10-49-p-u.jpg",
- "trainings": 0
- },
- {
- "id": 11069,
- "name": "№11069 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.860888",
- "latitude": "48.028064",
- "address": "Космонавтов улица",
- "city_id": 9092,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-18-14-10-51-u4v.jpg",
- "trainings": 0
- },
- {
- "id": 11070,
- "name": "№11070 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.862992",
- "latitude": "48.020431",
- "address": "ул.Достоевского 31",
- "city_id": 9092,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-18-15-10-27-gfo.jpg",
- "trainings": 0
- },
- {
- "id": 11071,
- "name": "№11071 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.857155",
- "latitude": "48.022205",
- "address": "ул.Коротченко 18",
- "city_id": 9092,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-18-16-10-28-uyp.jpg",
- "trainings": 0
- },
- {
- "id": 11072,
- "name": "№11072 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.857153",
- "latitude": "48.023064",
- "address": "ул.Коротченко 18",
- "city_id": 9092,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-18-16-10-35--ve.jpg",
- "trainings": 0
- },
- {
- "id": 11073,
- "name": "№11073 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.854355",
- "latitude": "48.021872",
- "address": "ул.Коротченко 11 «Стелла»",
- "city_id": 9092,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-18-16-10-36-uoe.jpg",
- "trainings": 0
- },
- {
- "id": 11074,
- "name": "№11074 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.854758",
- "latitude": "48.020011",
- "address": "ул.Одесская 129",
- "city_id": 9092,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-18-16-10-16-r10.jpg",
- "trainings": 0
- },
- {
- "id": 11075,
- "name": "№11075 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "158.6178470647371",
- "latitude": "54.69279711605457",
- "address": "Ул. Советская, д. 49 с. Мильково Камчатский край",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-19-09-10-22-f96.jpg",
- "trainings": 0
- },
- {
- "id": 11076,
- "name": "№11076 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "158.62436010386511",
- "latitude": "54.691839807443834",
- "address": "ул. Партизанская , д. 50 с. Мильково Камчатский край",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-21-09-10-55-7h8.jpg",
- "trainings": 0
- },
- {
- "id": 11077,
- "name": "№11077 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "43.299672603607185",
- "latitude": "54.934406635300185",
- "address": "Павлика Морозова",
- "city_id": 8064,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-22-12-10-10-mrh.jpg",
- "trainings": 1
- },
- {
- "id": 11078,
- "name": "№11078 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.83504148572683",
- "latitude": "56.73969704501325",
- "address": "Плещеевская улица, 68",
- "city_id": 7445,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-22-13-10-15-ki6.jpg",
- "trainings": 0
- },
- {
- "id": 11079,
- "name": "№11079 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.836340345442295",
- "latitude": "56.74139808082511",
- "address": "Городской пляж",
- "city_id": 7445,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-22-13-10-44-zpi.jpg",
- "trainings": 0
- },
- {
- "id": 11080,
- "name": "№11080 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "23.520722",
- "latitude": "49.354667",
- "address": "Промышленный переулок",
- "city_id": 591,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-22-13-10-52-lez.jpg",
- "trainings": 1
- },
- {
- "id": 11081,
- "name": "№11081 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.52742469310761",
- "latitude": "55.60470852836844",
- "address": "новоясеневский проспект д22 корп 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-23-20-10-13-fnw.jpg",
- "trainings": 1
- },
- {
- "id": 11082,
- "name": "№11082 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.7874719083589",
- "latitude": "44.679970591882906",
- "address": "ул.Пионерская 12, город Новороссийск",
- "city_id": 88,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-23-22-10-34-oh1.jpg",
- "trainings": 0
- },
- {
- "id": 11083,
- "name": "№11083 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.52494633197785",
- "latitude": "55.60334961809339",
- "address": "вильнюсская улица д5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-24-21-10-47-hg0.jpg",
- "trainings": 0
- },
- {
- "id": 11084,
- "name": "№11084 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.51022636890412",
- "latitude": "55.60170836176979",
- "address": "проезд одоевского 3д к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-24-21-10-30-6m3.jpg",
- "trainings": 1
- },
- {
- "id": 11085,
- "name": "№11085 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "37.51640617847443",
- "latitude": "55.60681153865288",
- "address": "ГБОУ школа №2103 корпус №3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-24-21-10-07-2qg.jpg",
- "trainings": 0
- },
- {
- "id": 11087,
- "name": "№11087 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.13734100178382",
- "latitude": "66.04367489715841",
- "address": "Парк культуры и отдыха",
- "city_id": 7951,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-26-17-10-29-a1o.jpg",
- "trainings": 0
- },
- {
- "id": 11088,
- "name": "№11088 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.14300596294276",
- "latitude": "66.0389054116005",
- "address": "ул. Лунина, д. 5",
- "city_id": 7951,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-27-12-10-00-z7s.jpg",
- "trainings": 0
- },
- {
- "id": 11089,
- "name": "№11089 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.10605097862745",
- "latitude": "66.03327037505696",
- "address": "ул. Воркутинская, д. 2",
- "city_id": 7951,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-28-13-10-40-cqn.jpg",
- "trainings": 0
- },
- {
- "id": 11090,
- "name": "№11090 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.12474454281468",
- "latitude": "66.03683607621903",
- "address": "ул. Чернова, д. 2",
- "city_id": 7951,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-28-13-10-32-s8v.jpg",
- "trainings": 0
- },
- {
- "id": 11092,
- "name": "№11092 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.064087",
- "latitude": "54.892943",
- "address": "Калинина, 27",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/10/2020-10-31-11-10-22-hqy.jpg",
- "trainings": 1
- },
- {
- "id": 11093,
- "name": "№11093 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "39.76708464324474",
- "latitude": "54.64010643877408",
- "address": "Окское шоссе",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-01-08-11-33-tdi.jpg",
- "trainings": 1
- },
- {
- "id": 11094,
- "name": "№11094 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.650075",
- "latitude": "43.651225",
- "address": "Baltiyskaya Street",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-04-08-11-59-mpj.jpg",
- "trainings": 0
- },
- {
- "id": 11095,
- "name": "№11095 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "38.4472822",
- "latitude": "57.7845661",
- "address": "Карла Либкнехта, 80",
- "city_id": 8659,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-04-11-11-32-z0e.jpg",
- "trainings": 0
- },
- {
- "id": 11096,
- "name": "№11096 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.492986",
- "latitude": "45.776092",
- "address": "Раздольненский район",
- "city_id": 503,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-04-17-11-40-vgz.jpg",
- "trainings": 0
- },
- {
- "id": 11097,
- "name": "№11097 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.88570421874832",
- "latitude": "43.253404138221214",
- "address": "Аренского",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-07-17-11-18-jzx.jpg",
- "trainings": 0
- },
- {
- "id": 11098,
- "name": "№11098 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.622497",
- "latitude": "54.831528",
- "address": "проспект Науки",
- "city_id": 8319,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-08-08-11-58-isr.jpg",
- "trainings": 0
- },
- {
- "id": 11099,
- "name": "№11099 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "30.781331062316898",
- "latitude": "36.850779721128255",
- "address": "2058 Sokak",
- "city_id": 9217,
- "country_id": 62,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-08-15-11-12-oxz.jpeg",
- "trainings": 1
- },
- {
- "id": 11100,
- "name": "№11100 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.97107865649743",
- "latitude": "43.214532123243835",
- "address": "Терренкур",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-13-07-11-33-ua3.png",
- "trainings": 0
- },
- {
- "id": 11101,
- "name": "№11101 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.11758184584869",
- "latitude": "55.34944203250061",
- "address": "Дер. Семёновская, зона отдыха \"Любляна\"",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-14-09-11-47-tt_.jpg",
- "trainings": 0
- },
- {
- "id": 11102,
- "name": "№11102 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.34305810928345",
- "latitude": "50.45534040458967",
- "address": "вул М Ушакова 2",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-14-15-11-06-twr.jpg",
- "trainings": 1
- },
- {
- "id": 11103,
- "name": "№11103 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.316887",
- "latitude": "44.894272",
- "address": "Анапа,Россия ",
- "city_id": 4,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-15-22-11-55-4n7.jpeg",
- "trainings": 0
- },
- {
- "id": 11104,
- "name": "№11104 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.372914448380474",
- "latitude": "60.03412389977772",
- "address": "проспект Луначарского, 78",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-16-18-11-28-nlm.jpg",
- "trainings": 0
- },
- {
- "id": 11105,
- "name": "№11105 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.914331547915936",
- "latitude": "43.44532658769754",
- "address": "улица Гастелло, 28 корпус 1",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-19-07-11-30-1vt.jpg",
- "trainings": 1
- },
- {
- "id": 11106,
- "name": "№11106 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.719722",
- "latitude": "43.581112",
- "address": "Voykova Street",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-20-12-11-55-n2a.jpg",
- "trainings": 0
- },
- {
- "id": 11107,
- "name": "№11107 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "98.310433",
- "latitude": "7.777758",
- "address": "4233",
- "city_id": 8739,
- "country_id": 72,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-20-16-11-57-fww.jpg",
- "trainings": 0
- },
- {
- "id": 11108,
- "name": "№11108 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "76.93104558158666",
- "latitude": "43.220873665172654",
- "address": "Есентай парк",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-21-21-11-52-1ry.png",
- "trainings": 0
- },
- {
- "id": 11109,
- "name": "№11109 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.94429947448953",
- "latitude": "43.2607369704519",
- "address": "Гоголя Панфилова",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-21-21-11-48-olx.png",
- "trainings": 0
- },
- {
- "id": 11110,
- "name": "№11110 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "76.86017235282634",
- "latitude": "43.23653986847586",
- "address": "Жубанова Утеген Батыра",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-21-22-11-26-wvb.png",
- "trainings": 0
- },
- {
- "id": 11111,
- "name": "№11111 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.88435421943724",
- "latitude": "43.189846797355706",
- "address": "Парк имени Первого Президента",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-21-22-11-37-j2n.png",
- "trainings": 0
- },
- {
- "id": 11112,
- "name": "№11112 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "23.531047",
- "latitude": "49.360845",
- "address": "Евгения Коновальца улица",
- "city_id": 591,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-22-21-11-02-e_t.jpg",
- "trainings": 0
- },
- {
- "id": 11113,
- "name": "№11113 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.36789444473447",
- "latitude": "48.334648840611855",
- "address": "Карла Либкнехта, 80",
- "city_id": 8659,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-23-00-11-27-fup.jpg",
- "trainings": 0
- },
- {
- "id": 11114,
- "name": "№11114 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.365797",
- "latitude": "59.928812",
- "address": "Гончарная улица",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-23-10-11-41-0hj.jpg",
- "trainings": 1
- },
- {
- "id": 11115,
- "name": "№11115 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.87264681599119",
- "latitude": "43.2536426640871",
- "address": "улица Прокофьева, 38",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-25-20-11-56-mb9.jpg",
- "trainings": 1
- },
- {
- "id": 11116,
- "name": "№11116 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "28.603008",
- "latitude": "59.374717",
- "address": "Большая Советская улица",
- "city_id": 53,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-28-10-11-27-3gl.jpg",
- "trainings": 1
- },
- {
- "id": 11117,
- "name": "№11117 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "37.8166151046753",
- "latitude": "55.907618510780445",
- "address": "Толстого 33",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-28-16-11-36-24s.jpeg",
- "trainings": 1
- },
- {
- "id": 11118,
- "name": "№11118 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.525637",
- "latitude": "55.940138",
- "address": "Долгопрудная аллея 15, кор. 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/11/2020-11-30-14-11-22-smz.jpg",
- "trainings": 1
- },
- {
- "id": 11119,
- "name": "№11119 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.89066875328537",
- "latitude": "43.20273362109126",
- "address": "Мега центр",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-01-10-12-45-rqb.png",
- "trainings": 1
- },
- {
- "id": 11120,
- "name": "№11120 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.91381928253578",
- "latitude": "43.226103310321115",
- "address": "Ботанический сад",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-01-10-12-04-t6w.png",
- "trainings": 0
- },
- {
- "id": 11121,
- "name": "№11121 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.85977195234047",
- "latitude": "43.229691474814175",
- "address": "5 микрорайон",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-01-10-12-46-uwb.png",
- "trainings": 0
- },
- {
- "id": 11122,
- "name": "№11122 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "76.83003260521218",
- "latitude": "43.26555313695446",
- "address": "Акбулак",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-01-14-12-34-2tn.png",
- "trainings": 0
- },
- {
- "id": 11123,
- "name": "№11123 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.96281193188953",
- "latitude": "43.258665082993694",
- "address": "Жилой комплекс \"Восточный Парк\"",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-01-14-12-49-nj-.png",
- "trainings": 0
- },
- {
- "id": 11124,
- "name": "№11124 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "23.502663",
- "latitude": "49.347892",
- "address": "Бориславская улица",
- "city_id": 591,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-02-22-12-43-ooh.jpg",
- "trainings": 0
- },
- {
- "id": 11125,
- "name": "№11125 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.96015562974935",
- "latitude": "43.26260262746717",
- "address": "Жибек Жолы 32",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-03-12-12-09-l6v.png",
- "trainings": 0
- },
- {
- "id": 11126,
- "name": "№11126 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.96040962531698",
- "latitude": "43.26043485421006",
- "address": "Гоголя, 20",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-03-12-12-32-ksr.png",
- "trainings": 0
- },
- {
- "id": 11127,
- "name": "№11127 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "32.036020159721375",
- "latitude": "54.81202072409261",
- "address": "Госпитальный тупик, 6А",
- "city_id": 124,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-03-12-12-10-e11.jpg",
- "trainings": 0
- },
- {
- "id": 11128,
- "name": "№11128 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.8728212600945",
- "latitude": "43.25222038730386",
- "address": "Тлендиева, 46",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-03-20-12-14-tmn.jpg",
- "trainings": 0
- },
- {
- "id": 11129,
- "name": "№11129 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.87274586798594",
- "latitude": "43.2501512738243",
- "address": "Тлендиева, 54",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-03-20-12-18-67g.jpg",
- "trainings": 0
- },
- {
- "id": 11130,
- "name": "№11130 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.58173680305482",
- "latitude": "53.28066024285635",
- "address": "Ул.Тургенева ПКИО",
- "city_id": 8162,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-05-16-12-56-xid.jpg",
- "trainings": 1
- },
- {
- "id": 11131,
- "name": "№11131 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "38.75789880752564",
- "latitude": "55.09848264727151",
- "address": "Гражданская улица 53",
- "city_id": 60,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-05-18-12-24-0lc.jpg",
- "trainings": 1
- },
- {
- "id": 11132,
- "name": "№11132 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.2760603427887",
- "latitude": "54.69374008341657",
- "address": "Крючевка",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-06-09-12-06-wnq.jpg",
- "trainings": 0
- },
- {
- "id": 11133,
- "name": "№11133 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "51.91966652875636",
- "latitude": "47.095779374687",
- "address": "Аллея Кайыргали Смагулова",
- "city_id": 407,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-08-21-12-04-bbr.png",
- "trainings": 0
- },
- {
- "id": 11134,
- "name": "№11134 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.82582032680512",
- "latitude": "57.63816263632061",
- "address": "улица Чкалова Д.54а",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-09-15-12-52-8h2.jpg",
- "trainings": 2
- },
- {
- "id": 11135,
- "name": "№11135 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "53.26476775109768",
- "latitude": "56.87548234210743",
- "address": "улица Ворошилова, 66",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-10-19-12-28-egl.jpg",
- "trainings": 1
- },
- {
- "id": 11136,
- "name": "№11136 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.8726593380552",
- "latitude": "43.254859151561554",
- "address": "Тлендиева, 34",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-11-20-12-00-zf3.jpg",
- "trainings": 0
- },
- {
- "id": 11137,
- "name": "№11137 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.87968222428937",
- "latitude": "43.254964857739765",
- "address": "Тургут озала, 49",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-12-14-12-45-kcz.jpg",
- "trainings": 0
- },
- {
- "id": 11138,
- "name": "№11138 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.84398436546326",
- "latitude": "55.91987875638436",
- "address": "ул 50-летия ВЛКСМ 4А",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-12-18-12-00-bcp.jpg",
- "trainings": 0
- },
- {
- "id": 11139,
- "name": "№11139 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.835696339607246",
- "latitude": "55.91834268009507",
- "address": "проспект Королёва 2А",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-12-18-12-14-w6v.jpeg",
- "trainings": 1
- },
- {
- "id": 11140,
- "name": "№11140 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.83390998840333",
- "latitude": "55.92880843652269",
- "address": "улица Комитетский Лес, 8",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-12-22-12-34-uvp.jpeg",
- "trainings": 0
- },
- {
- "id": 11141,
- "name": "№11141 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.83604502677918",
- "latitude": "55.93005209662068",
- "address": "улица Комитетский Лес, 15",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-12-22-12-38-v7p.jpeg",
- "trainings": 0
- },
- {
- "id": 11142,
- "name": "№11142 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "37.836935520172126",
- "latitude": "55.88023994582466",
- "address": "Пионерская 30 к.Торфянка левая волейбольная",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-12-23-12-45-lnn.jpg",
- "trainings": 1
- },
- {
- "id": 11143,
- "name": "№11143 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "37.837471961975105",
- "latitude": "55.880528811987176",
- "address": "Королев, Пионерская 30 к.Торфянка правая первая",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-13-00-12-48-zkz.jpg",
- "trainings": 1
- },
- {
- "id": 11144,
- "name": "№11144 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.845738530159004",
- "latitude": "55.925488661751324",
- "address": "улица Сакко и Ванцетти, 26 переход жд",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-13-01-12-57-cye.jpeg",
- "trainings": 0
- },
- {
- "id": 11145,
- "name": "№11145 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.84693479537964",
- "latitude": "55.92740194554014",
- "address": "Комитетская 7",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-13-01-12-33-ubh.jpeg",
- "trainings": 0
- },
- {
- "id": 11146,
- "name": "№11146 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "37.852476239204414",
- "latitude": "55.93039819072161",
- "address": "Большая Комитетская 17",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-13-01-12-35-y7n.jpeg",
- "trainings": 0
- },
- {
- "id": 11147,
- "name": "№11147 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.852422595024116",
- "latitude": "55.93328111185176",
- "address": "улица Глинкина, 4 парк и детская площадка",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-13-01-12-19-e9m.jpeg",
- "trainings": 0
- },
- {
- "id": 11148,
- "name": "№11148 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.8517359495163",
- "latitude": "55.932876901711204",
- "address": "улица Папанина 1",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-13-01-12-07-ffa.jpeg",
- "trainings": 0
- },
- {
- "id": 11149,
- "name": "№11149 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.84982085227967",
- "latitude": "55.934220546332426",
- "address": "Большая Комитетская улица, 4/24 ",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-13-01-12-28-gtr.jpeg",
- "trainings": 0
- },
- {
- "id": 11150,
- "name": "№11150 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.08694422245026",
- "latitude": "55.60847204923673",
- "address": "улица Гагарина, 77А",
- "city_id": 41,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-13-11-12-41-ril.jpg",
- "trainings": 1
- },
- {
- "id": 11151,
- "name": "№11151 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.94411648100869",
- "latitude": "43.23469850531343",
- "address": "Площадь республики",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-13-11-12-19-91f.png",
- "trainings": 0
- },
- {
- "id": 11152,
- "name": "№11152 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.94919656286402",
- "latitude": "43.248461333431344",
- "address": "Тулебаева, 147",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-13-11-12-46-yub.png",
- "trainings": 0
- },
- {
- "id": 11153,
- "name": "№11153 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.89371011842015",
- "latitude": "43.246283414073325",
- "address": "Пр. Гагарина уг. ул. Кабанбай батыра",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-15-13-12-22-mfx.png",
- "trainings": 0
- },
- {
- "id": 11154,
- "name": "№11154 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "49.22661576969031",
- "latitude": "55.87311475980045",
- "address": "Липатова, 3а",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-16-23-12-34-ccq.jpg",
- "trainings": 1
- },
- {
- "id": 11155,
- "name": "№11155 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "158.60571029822168",
- "latitude": "54.71275964244658",
- "address": "Веселая горка лыжная база, село Мильково",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-19-14-12-48-a7z.jpg",
- "trainings": 0
- },
- {
- "id": 11156,
- "name": "№11156 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.88069887449275",
- "latitude": "43.25639502892391",
- "address": "Рахманинова, 11",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-19-20-12-31-ly_.jpg",
- "trainings": 0
- },
- {
- "id": 11157,
- "name": "№11157 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.81880915164948",
- "latitude": "55.91238417226728",
- "address": "Толстого 4",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-21-12-12-15-koq.jpeg",
- "trainings": 1
- },
- {
- "id": 11158,
- "name": "№11158 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.8694448610404",
- "latitude": "43.25025698388156",
- "address": "Тастак - 2, д 33",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-26-08-12-08-5tk.jpg",
- "trainings": 0
- },
- {
- "id": 11159,
- "name": "№11159 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "23.73654127120972",
- "latitude": "37.993304874428134",
- "address": "Pedion Areos",
- "city_id": 7841,
- "country_id": 64,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-26-17-12-43-irl.jpeg",
- "trainings": 1
- },
- {
- "id": 11160,
- "name": "№11160 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.87246247944132",
- "latitude": "43.25444194371328",
- "address": "Тастак",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-26-21-12-26-djk.jpg",
- "trainings": 0
- },
- {
- "id": 11161,
- "name": "№11161 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.89152558425123",
- "latitude": "43.204491421674156",
- "address": "Mega Towers",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-27-11-12-34-zfh.png",
- "trainings": 0
- },
- {
- "id": 11162,
- "name": "№11162 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.88465907997853",
- "latitude": "43.25585770602053",
- "address": "Оптовка",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-27-17-12-23-og9.jpg",
- "trainings": 0
- },
- {
- "id": 11163,
- "name": "№11163 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.397906",
- "latitude": "55.891390",
- "address": "москва, Куркино, лес",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-27-17-12-14-od5.jpg",
- "trainings": 1
- },
- {
- "id": 11164,
- "name": "№11164 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.54147951694677",
- "latitude": "55.68049504446074",
- "address": "Ленинский проспект, д.85, к.6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-29-00-12-49-93n.jpg",
- "trainings": 2
- },
- {
- "id": 11165,
- "name": "№11165 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "90.49943556246947",
- "latitude": "56.26753255179321",
- "address": "Ул. Назарова, д. 28",
- "city_id": 8,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-29-15-12-55-dyg.jpg",
- "trainings": 0
- },
- {
- "id": 11166,
- "name": "№11166 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.77638366506338",
- "latitude": "32.056204514857704",
- "address": "Sd. Har Zion 31, Tel-Aviv",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2020/12/2020-12-31-09-12-41-zty.jpg",
- "trainings": 0
- },
- {
- "id": 11167,
- "name": "№11167 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "158.65222516785596",
- "latitude": "54.709944058156964",
- "address": "Мелиораторов, д.14 с. Мильково",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-01-06-01-53-y4r.jpg",
- "trainings": 0
- },
- {
- "id": 11168,
- "name": "№11168 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "37.83600747585297",
- "latitude": "55.917771520745575",
- "address": "проспект Королёва, 2Б",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-02-11-01-08-s0a.jpeg",
- "trainings": 1
- },
- {
- "id": 11169,
- "name": "№11169 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "37.83934950828553",
- "latitude": "55.91835192585107",
- "address": "Октябрьский бульвар, 33 / проспект Королёва, 6Дк4 / шк5",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-02-11-01-10-xor.jpg",
- "trainings": 1
- },
- {
- "id": 11170,
- "name": "№11170 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.85187005996705",
- "latitude": "55.91922946346179",
- "address": "улица Суворова, 9Б",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-02-11-01-55-ffx.jpeg",
- "trainings": 1
- },
- {
- "id": 11171,
- "name": "№11171 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.86598920822144",
- "latitude": "55.91860300572248",
- "address": "проспект Космонавтов, 8Б",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-02-11-01-46-gva.jpeg",
- "trainings": 0
- },
- {
- "id": 11172,
- "name": "№11172 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "11.541616916547355",
- "latitude": "48.1133483367843",
- "address": "Calisthenics Park Neuhofener Berg",
- "city_id": 7469,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-03-12-01-08-slz.jpg",
- "trainings": 0
- },
- {
- "id": 11173,
- "name": "№11173 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "27.613916567210335",
- "latitude": "53.86706803564383",
- "address": "Плеханова 28/1",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-03-14-01-10-guo.jpg",
- "trainings": 0
- },
- {
- "id": 11174,
- "name": "№11174 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.607880830741394",
- "latitude": "53.87447375431583",
- "address": "Райниса",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-03-15-01-22-akz.jpg",
- "trainings": 0
- },
- {
- "id": 11175,
- "name": "№11175 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "27.60403147760663",
- "latitude": "53.87155093388874",
- "address": "Рокоссовского 37",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-03-21-01-29-9zg.jpg",
- "trainings": 0
- },
- {
- "id": 11176,
- "name": "№11176 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.600648773070137",
- "latitude": "59.77387900458126",
- "address": "Загородная д. 43",
- "city_id": 61,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-05-13-01-12-pud.jpg",
- "trainings": 0
- },
- {
- "id": 11177,
- "name": "№11177 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.88208281993867",
- "latitude": "43.19878041420218",
- "address": "Орбита - 1",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-05-14-01-59-1qc.jpg",
- "trainings": 0
- },
- {
- "id": 11179,
- "name": "№11179 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.94629985094071",
- "latitude": "45.12617517115716",
- "address": "краснодар улица архангельская 1",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-08-11-01-58-1xf.jpg",
- "trainings": 0
- },
- {
- "id": 11180,
- "name": "№11180 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.95062893629075",
- "latitude": "45.12289360847734",
- "address": "краснодар улица верная 29",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-08-10-01-15-_nb.jpg",
- "trainings": 0
- },
- {
- "id": 11181,
- "name": "№11181 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "27.595433847970117",
- "latitude": "53.86928672593047",
- "address": "Рокоссовского пр-т, 28/1",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-08-22-01-03-mxd.jpg",
- "trainings": 1
- },
- {
- "id": 11182,
- "name": "№11182 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "55.358911156654365",
- "latitude": "55.10268743032619",
- "address": "Кушнаренково ",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-09-13-01-34-uy5.jpg",
- "trainings": 0
- },
- {
- "id": 11183,
- "name": "№11183 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "83.18362992137713",
- "latitude": "54.93816915602972",
- "address": "Лужкового аллея 3",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-09-20-01-28-8t7.jpg",
- "trainings": 0
- },
- {
- "id": 11184,
- "name": "№11184 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "33.613952994346626",
- "latitude": "44.567896690135434",
- "address": "ул. Комиссара Морозова, 2",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-13-17-01-20-ysl.jpg",
- "trainings": 0
- },
- {
- "id": 11185,
- "name": "№11185 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "52.433197",
- "latitude": "55.775203",
- "address": "улица Шамиля Усманова",
- "city_id": 84,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-20-04-01-11-ovl.jpg",
- "trainings": 1
- },
- {
- "id": 11186,
- "name": "№11186 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "23.7174654006958",
- "latitude": "37.94974762012134",
- "address": "neas smyrnes",
- "city_id": 7841,
- "country_id": 64,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-21-09-01-25-807.jpg",
- "trainings": 1
- },
- {
- "id": 11187,
- "name": "№11187 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.632503",
- "latitude": "55.733188",
- "address": "Монетчиковский 6-й переулок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-22-14-01-18-bvc.jpg",
- "trainings": 0
- },
- {
- "id": 11188,
- "name": "№11188 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.56088256835938",
- "latitude": "55.761460632681114",
- "address": "площа",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-24-13-01-45-jfo.jpg",
- "trainings": 0
- },
- {
- "id": 11189,
- "name": "№11189 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.487458",
- "latitude": "55.325937",
- "address": "Молодежный поселок",
- "city_id": 103,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-24-19-01-12-gad.jpg",
- "trainings": 0
- },
- {
- "id": 11190,
- "name": "№11190 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.60310609242847",
- "latitude": "56.84679993881467",
- "address": "Улица Дзержинского, 2/1",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-25-12-01-52-r8w.jpg",
- "trainings": 2
- },
- {
- "id": 11191,
- "name": "№11191 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "23.68876576423645",
- "latitude": "37.926720311170904",
- "address": "submarines monument",
- "city_id": 7841,
- "country_id": 64,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-26-15-01-26-bwn.jpg",
- "trainings": 1
- },
- {
- "id": 11192,
- "name": "№11192 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.96262913942338",
- "latitude": "45.127170579037205",
- "address": "Краснодар ул Берлизова 38/3",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-26-18-01-10-qfo.jpg",
- "trainings": 0
- },
- {
- "id": 11193,
- "name": "№11193 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.263424",
- "latitude": "55.882222",
- "address": "Сабурово деревня",
- "city_id": 96,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-28-12-01-36-csw.jpg",
- "trainings": 0
- },
- {
- "id": 11194,
- "name": "№11194 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-3.691693",
- "latitude": "36.730418",
- "address": "Paseo de Prieto Moreno",
- "city_id": 8763,
- "country_id": 10,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-28-13-01-16-odl.jpg",
- "trainings": 0
- },
- {
- "id": 11195,
- "name": "№11195 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-3.687636",
- "latitude": "36.730878",
- "address": "Paseo de la Puerta del Mar",
- "city_id": 8763,
- "country_id": 10,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-28-13-01-16-hfq.jpg",
- "trainings": 0
- },
- {
- "id": 11196,
- "name": "№11196 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "-4.776027202606202",
- "latitude": "37.87725850639011",
- "address": "Calle Mantillo",
- "city_id": 8763,
- "country_id": 10,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-28-13-01-36-5dn.jpeg",
- "trainings": 0
- },
- {
- "id": 11197,
- "name": "№11197 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.519576",
- "latitude": "55.834359",
- "address": "Старокоптевский переулок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-28-13-01-07-8qk.jpg",
- "trainings": 0
- },
- {
- "id": 11198,
- "name": "№11198 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.451950",
- "latitude": "55.811038",
- "address": "Авиационная улица, 70к3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-28-15-01-34-rn0.jpg",
- "trainings": 0
- },
- {
- "id": 11199,
- "name": "№11199 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-3.108631",
- "latitude": "55.953995",
- "address": "Эдинбург, Portobello/Craigmillar Ward",
- "city_id": 9047,
- "country_id": 6,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-28-15-01-26--fb.jpg",
- "trainings": 0
- },
- {
- "id": 11200,
- "name": "№11200 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.444080412387855",
- "latitude": "54.92776452252761",
- "address": "Фирсова, 6",
- "city_id": 119,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-28-17-01-01-sir.jpg",
- "trainings": 1
- },
- {
- "id": 11201,
- "name": "№11201 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.610022",
- "latitude": "52.613605",
- "address": "улица Ленина, Верхний парк",
- "city_id": 72,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-29-11-01-59-kr4.jpg",
- "trainings": 0
- },
- {
- "id": 11202,
- "name": "№11202 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-4.414080",
- "latitude": "36.715162",
- "address": "Paseo de la Farola",
- "city_id": 8763,
- "country_id": 10,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-29-12-01-27-fyl.jpg",
- "trainings": 0
- },
- {
- "id": 11203,
- "name": "№11203 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.590806092686925",
- "latitude": "50.50477488134047",
- "address": "Школа 270",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-29-16-01-01-fhg.jpg",
- "trainings": 2
- },
- {
- "id": 11204,
- "name": "№11204 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.89333736896516",
- "latitude": "43.24916880093084",
- "address": "пр Гагарина угол Богенбай батыра",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-31-13-01-25-gy7.jpg",
- "trainings": 0
- },
- {
- "id": 11205,
- "name": "№11205 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.91973965704892",
- "latitude": "56.28429047854262",
- "address": "Радио 2",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-31-17-01-01-zj_.jpg",
- "trainings": 0
- },
- {
- "id": 11206,
- "name": "№11206 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.91808328698062",
- "latitude": "56.28480684124178",
- "address": "Радио 1",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/01/2021-01-31-17-01-54-s2h.jpg",
- "trainings": 1
- },
- {
- "id": 11207,
- "name": "№11207 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-6.286378",
- "latitude": "36.520695",
- "address": "Calle Granja San Ildefonso",
- "city_id": 7881,
- "country_id": 10,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-01-12-02-38-imf.jpg",
- "trainings": 0
- },
- {
- "id": 11208,
- "name": "№11208 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-6.307008",
- "latitude": "36.532913",
- "address": "Cádiz, Calle del Campo de las Balas",
- "city_id": 7881,
- "country_id": 10,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-01-12-02-02-38r.jpg",
- "trainings": 0
- },
- {
- "id": 11209,
- "name": "№11209 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "-6.279605",
- "latitude": "36.506958",
- "address": "Cádiz, Paseo Marítimo",
- "city_id": 7881,
- "country_id": 10,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-01-12-02-43-fq8.jpg",
- "trainings": 0
- },
- {
- "id": 11210,
- "name": "№11210 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.526930",
- "latitude": "55.853625",
- "address": "Лихоборская набережная, 7с1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-01-12-02-31-t0u.jpg",
- "trainings": 0
- },
- {
- "id": 11211,
- "name": "№11211 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.470520",
- "latitude": "55.883292",
- "address": "Химкинский лесопарк",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-01-12-02-15-8us.jpg",
- "trainings": 0
- },
- {
- "id": 11212,
- "name": "№11212 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.494726",
- "latitude": "55.769273",
- "address": "Карамышевская набережная, ЖК Утёсов",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-01-13-02-21-crw.jpg",
- "trainings": 0
- },
- {
- "id": 11213,
- "name": "№11213 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.44127213954926",
- "latitude": "54.92714186454645",
- "address": "Парк Питомник",
- "city_id": 119,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-01-22-02-40-nli.jpg",
- "trainings": 0
- },
- {
- "id": 11214,
- "name": "№11214 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.92394408851943",
- "latitude": "56.28216155471274",
- "address": "пр. Ленина 45",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-03-11-02-11-hkp.jpg",
- "trainings": 0
- },
- {
- "id": 11215,
- "name": "№11215 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "43.91858501231583",
- "latitude": "56.28273610780359",
- "address": "Школа 180",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-03-11-02-43-wvh.jpg",
- "trainings": 0
- },
- {
- "id": 11216,
- "name": "№11216 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "43.9181438357332",
- "latitude": "56.28074382267609",
- "address": "Радио 10",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-03-11-02-18-hkd.jpg",
- "trainings": 1
- },
- {
- "id": 11217,
- "name": "№11217 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.737277589738376",
- "latitude": "43.61560495254425",
- "address": "улица Пластунская, 123а",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-04-08-02-48-xrd.jpg",
- "trainings": 1
- },
- {
- "id": 11218,
- "name": "№11218 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "100.56545653389112",
- "latitude": "54.57259169520382",
- "address": "М/р-н Стекольный, парк Победы",
- "city_id": 8014,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-04-16-02-27-bbc.jpg",
- "trainings": 0
- },
- {
- "id": 11219,
- "name": "№11219 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.8623209",
- "latitude": "31.9398013",
- "address": "Habrosh",
- "city_id": 9117,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-06-05-02-10-bqs.jpg",
- "trainings": 1
- },
- {
- "id": 11220,
- "name": "№11220 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.91759950718553",
- "latitude": "56.27995447362455",
- "address": "пр. Ленина 51/7",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-10-17-02-59-tfl.jpg",
- "trainings": 0
- },
- {
- "id": 11221,
- "name": "№11221 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.829072594642646",
- "latitude": "56.91418297792875",
- "address": "Березовский, Спортивная,18",
- "city_id": 10,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-10-19-02-57-aln.jpg",
- "trainings": 0
- },
- {
- "id": 11222,
- "name": "№11222 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.33703430963127",
- "latitude": "55.1829977164366",
- "address": "Вязьма Московская ",
- "city_id": 7395,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-11-11-02-46-8rz.jpeg",
- "trainings": 1
- },
- {
- "id": 11223,
- "name": "№11223 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.046602001981235",
- "latitude": "55.351909071813445",
- "address": "ул. 1-го мая, СШ \"Виктория\", лыжная трасса",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-15-21-02-23-rfs.jpg",
- "trainings": 0
- },
- {
- "id": 11224,
- "name": "№11224 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.33037221431734",
- "latitude": "52.27345666327179",
- "address": "Красноярская 57",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-15-22-02-03-bi0.jpg",
- "trainings": 0
- },
- {
- "id": 11225,
- "name": "№11225 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.87106970615542",
- "latitude": "43.250294600000004",
- "address": "ул. Тлендиева, 61",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-19-13-02-13-a8f.jpg",
- "trainings": 0
- },
- {
- "id": 11226,
- "name": "№11226 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.917303965740764",
- "latitude": "56.288865321322994",
- "address": "ул. Героя Самочкина, 14",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-20-13-02-00-jam.jpg",
- "trainings": 1
- },
- {
- "id": 11227,
- "name": "№11227 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.718937",
- "latitude": "43.590737",
- "address": "Constitutsii SSSR Street",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-23-14-02-48-8-s.jpg",
- "trainings": 0
- },
- {
- "id": 11228,
- "name": "№11228 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "58.28627514218027",
- "latitude": "51.18978822133429",
- "address": "Аллея славы",
- "city_id": 803,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/02/2021-02-25-16-02-46-ibu.jpg",
- "trainings": 0
- },
- {
- "id": 11229,
- "name": "№11229 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "104.31734204292299",
- "latitude": "52.22784103946523",
- "address": "Якоби",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-02-16-03-05-gzf.jpg",
- "trainings": 1
- },
- {
- "id": 11230,
- "name": "№11230 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.49794185161591",
- "latitude": "55.81616493110747",
- "address": "Ленинградское шоссе 9к 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-04-11-03-39-uco.jpg",
- "trainings": 1
- },
- {
- "id": 11231,
- "name": "№11231 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.65456822714708",
- "latitude": "59.99490634050865",
- "address": "ул. Народная, д. 2",
- "city_id": 25,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-04-17-03-44-cmz.jpg",
- "trainings": 2
- },
- {
- "id": 11232,
- "name": "№11232 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.57900667190552",
- "latitude": "50.49403317340156",
- "address": "Генерала Ватутина 4",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-05-13-03-26-bxz.jpg",
- "trainings": 0
- },
- {
- "id": 11233,
- "name": "№11233 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.578727722167972",
- "latitude": "50.49403317340156",
- "address": "Генерала Ватутина 4",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-05-19-03-03-6vs.jpg",
- "trainings": 1
- },
- {
- "id": 11234,
- "name": "№11234 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.91689282658447",
- "latitude": "43.16527522774854",
- "address": "Бородинская 7",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-01-03-20-qnk.jpg",
- "trainings": 0
- },
- {
- "id": 11235,
- "name": "№11235 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.91669494185112",
- "latitude": "43.16534151579879",
- "address": "Бородинская 7",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-01-03-47-a5w.jpg",
- "trainings": 0
- },
- {
- "id": 11236,
- "name": "№11236 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "131.91478818652288",
- "latitude": "43.162619087153395",
- "address": "Гамарника 6",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-01-03-40-htr.jpg",
- "trainings": 0
- },
- {
- "id": 11237,
- "name": "№11237 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "131.9156357645716",
- "latitude": "43.15937717390659",
- "address": "Иртышская 6",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-05-03-20-lk4.jpg",
- "trainings": 0
- },
- {
- "id": 11238,
- "name": "№11238 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.91458255052567",
- "latitude": "43.159771090833054",
- "address": "Иртышская 6",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-06-03-48-agl.jpg",
- "trainings": 0
- },
- {
- "id": 11239,
- "name": "№11239 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "131.91704392422253",
- "latitude": "43.158714552843676",
- "address": "Гамарника 18",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-06-03-44-toh.jpg",
- "trainings": 0
- },
- {
- "id": 11240,
- "name": "№11240 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "131.91257894047342",
- "latitude": "43.160082831227925",
- "address": "Проспект 100-летия Владивостока 68А",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-06-03-04-svw.jpg",
- "trainings": 0
- },
- {
- "id": 11241,
- "name": "№11241 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.91349804398672",
- "latitude": "43.15955000198753",
- "address": "Иртышская 2",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-06-03-10-vj4.jpg",
- "trainings": 0
- },
- {
- "id": 11242,
- "name": "№11242 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.91580116751538",
- "latitude": "43.16087782731397",
- "address": "Гамарника 10",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-06-03-10-og7.jpg",
- "trainings": 0
- },
- {
- "id": 11243,
- "name": "№11243 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.91886872053146",
- "latitude": "43.158918688041105",
- "address": "Гамарника 13",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-06-03-24--ke.jpg",
- "trainings": 0
- },
- {
- "id": 11244,
- "name": "№11244 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.92027688034614",
- "latitude": "43.158853294676234",
- "address": "Гамарника 19А",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-06-03-03-l9h.jpg",
- "trainings": 0
- },
- {
- "id": 11245,
- "name": "№11245 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.9125494360924",
- "latitude": "43.15689883006789",
- "address": "Постышева 56",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-06-03-42-odh.jpg",
- "trainings": 0
- },
- {
- "id": 11246,
- "name": "№11246 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.91515386104587",
- "latitude": "43.15619704915401",
- "address": "Постышева 15",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-06-03-41-t2-.jpg",
- "trainings": 0
- },
- {
- "id": 11247,
- "name": "№11247 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.9143876432827",
- "latitude": "43.15632814463997",
- "address": "Постышева 11",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-07-03-09-qvx.jpg",
- "trainings": 0
- },
- {
- "id": 11248,
- "name": "№11248 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.91342562436375",
- "latitude": "43.15667251321823",
- "address": "Постышева 3",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-07-03-25-w_t.jpg",
- "trainings": 0
- },
- {
- "id": 11249,
- "name": "№11249 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "131.91268801694608",
- "latitude": "43.15692752729533",
- "address": "Постышева 3",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-07-03-58-sq3.jpg",
- "trainings": 0
- },
- {
- "id": 11250,
- "name": "№11250 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.91285610193518",
- "latitude": "43.15777343602816",
- "address": "Постышева 60",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-07-03-02-jji.jpg",
- "trainings": 0
- },
- {
- "id": 11251,
- "name": "№11251 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "131.91335052249087",
- "latitude": "43.15859585430394",
- "address": "Постышева 64А",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-07-03-59-dzm.jpg",
- "trainings": 0
- },
- {
- "id": 11252,
- "name": "№11252 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.703868329525",
- "latitude": "43.6114768670148",
- "address": "политехническая 70 к2",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-12-03-01--bj.jpg",
- "trainings": 0
- },
- {
- "id": 11254,
- "name": "№11254 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.44336748110073",
- "latitude": "54.93135109136295",
- "address": "Советская, 97",
- "city_id": 119,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-06-20-03-54-ynh.jpg",
- "trainings": 0
- },
- {
- "id": 11255,
- "name": "№11255 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.91557765007022",
- "latitude": "43.16567367153471",
- "address": "Проспект 100-летия Владивостока 84",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-07-08-03-27-bi4.jpg",
- "trainings": 0
- },
- {
- "id": 11256,
- "name": "№11256 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.92003548145297",
- "latitude": "43.16820121813661",
- "address": "Русская 62",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-07-09-03-53-lpb.jpg",
- "trainings": 0
- },
- {
- "id": 11257,
- "name": "№11257 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.918079257066",
- "latitude": "43.16534956933216",
- "address": "Бородинская 11",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-07-09-03-56-ohv.jpg",
- "trainings": 0
- },
- {
- "id": 11258,
- "name": "№11258 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.91773504021515",
- "latitude": "43.167988636936144",
- "address": "Русская 56",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-07-09-03-21-eib.jpg",
- "trainings": 0
- },
- {
- "id": 11259,
- "name": "№11259 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "131.92278385167813",
- "latitude": "43.16606885212692",
- "address": "Кутузова 7",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-07-09-03-39-dat.jpg",
- "trainings": 0
- },
- {
- "id": 11260,
- "name": "№11260 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.9227927924021",
- "latitude": "43.166308176503755",
- "address": "Кутузова 7",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-07-09-03-57--_e.jpg",
- "trainings": 0
- },
- {
- "id": 11261,
- "name": "№11261 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.9172146915844",
- "latitude": "43.16728959186925",
- "address": "Русская 54",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-07-09-03-44-gy2.jpg",
- "trainings": 0
- },
- {
- "id": 11262,
- "name": "№11262 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.87959909439088",
- "latitude": "43.25286698566544",
- "address": "Тургут Озала, 59",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-07-10-03-07-sqd.jpg",
- "trainings": 0
- },
- {
- "id": 11263,
- "name": "№11263 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.88011139631271",
- "latitude": "43.252542695299766",
- "address": "Тургут Озала, 61",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-07-10-03-43-5wz.jpg",
- "trainings": 0
- },
- {
- "id": 11264,
- "name": "№11264 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.419712543487556",
- "latitude": "54.92788473756246",
- "address": "Весенняя, 10",
- "city_id": 119,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-09-01-03-11-kv3.jpg",
- "trainings": 0
- },
- {
- "id": 11265,
- "name": "№11265 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.421519279414504",
- "latitude": "54.91837431025426",
- "address": "Советская, 48",
- "city_id": 119,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-09-01-03-15-qbc.jpg",
- "trainings": 0
- },
- {
- "id": 11266,
- "name": "№11266 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.41973829262861",
- "latitude": "54.921431456483795",
- "address": "Проезд Мишина, 5",
- "city_id": 119,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-09-01-03-44-s-h.jpg",
- "trainings": 1
- },
- {
- "id": 11267,
- "name": "№11267 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "131.9230860472817",
- "latitude": "43.1649113439552",
- "address": "Бородинская 16А",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-10-09-03-36-gt0.jpg",
- "trainings": 0
- },
- {
- "id": 11268,
- "name": "№11268 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.92860960974033",
- "latitude": "43.1628238612922",
- "address": "Иртышская 36А",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-12-08-03-27-eaf.jpg",
- "trainings": 0
- },
- {
- "id": 11269,
- "name": "№11269 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.92942589521408",
- "latitude": "43.161659769973774",
- "address": "ул. Героев Варяга 40/2",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-12-08-03-34-qfl.jpg",
- "trainings": 0
- },
- {
- "id": 11270,
- "name": "№11270 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.9282993675097",
- "latitude": "43.160202179012884",
- "address": "Днепропетровская 5",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-12-08-03-44-cl9.jpg",
- "trainings": 0
- },
- {
- "id": 11271,
- "name": "№11271 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.92861050367355",
- "latitude": "43.15801931459415",
- "address": "Тухачевского 50",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-12-08-03-32-uxc.jpg",
- "trainings": 0
- },
- {
- "id": 11272,
- "name": "№11272 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.6058227",
- "latitude": "56.8468982",
- "address": "Улица Николая Никонова 389",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-12-10-03-25-irs.jpg",
- "trainings": 1
- },
- {
- "id": 11273,
- "name": "№11273 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "131.87515050170077",
- "latitude": "43.122840775436124",
- "address": "Батарейная 12",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-12-13-03-00-vgq.jpg",
- "trainings": 0
- },
- {
- "id": 11274,
- "name": "№11274 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "131.9046485424315",
- "latitude": "43.16607732953055",
- "address": "Енисейская 23",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-13-10-03-14-2qv.jpg",
- "trainings": 0
- },
- {
- "id": 11275,
- "name": "№11275 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.9063186645508",
- "latitude": "43.17205102621996",
- "address": "Енисейская 8",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-13-10-03-12-hpj.jpg",
- "trainings": 0
- },
- {
- "id": 11276,
- "name": "№11276 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "131.9100254774094",
- "latitude": "43.17623050576589",
- "address": "Кирова 29",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-13-12-03-36-a5n.jpg",
- "trainings": 0
- },
- {
- "id": 11277,
- "name": "№11277 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "131.90932810306552",
- "latitude": "43.17578714247429",
- "address": "Кирова 25Г",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-13-12-03-45-vae.jpg",
- "trainings": 0
- },
- {
- "id": 11278,
- "name": "№11278 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.9098716974804",
- "latitude": "43.1754983025066",
- "address": "Кирова 27",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-13-12-03-59-83c.jpg",
- "trainings": 0
- },
- {
- "id": 11279,
- "name": "№11279 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.90875321623938",
- "latitude": "43.15612400078797",
- "address": "Овчиникова 34",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-15-07-03-50-5rt.jpg",
- "trainings": 0
- },
- {
- "id": 11280,
- "name": "№11280 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.148447751998905",
- "latitude": "60.03349455992169",
- "address": "Юнтоловский пр. 55к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-15-07-03-28-jmd.jpeg",
- "trainings": 0
- },
- {
- "id": 11281,
- "name": "№11281 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.92128986117496",
- "latitude": "43.16844901111414",
- "address": "Русская 66",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-15-12-03-50-v-y.jpg",
- "trainings": 0
- },
- {
- "id": 11282,
- "name": "№11282 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.19827246665955",
- "latitude": "60.00741012454917",
- "address": "Шуваловский пр. 66к1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-15-15-03-34-fiw.jpeg",
- "trainings": 0
- },
- {
- "id": 11284,
- "name": "№11284 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.9219577312197",
- "latitude": "43.167029404194274",
- "address": "Кутузова 8",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-20-03-03-00-rfk.jpg",
- "trainings": 0
- },
- {
- "id": 11285,
- "name": "№11285 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.92028939713057",
- "latitude": "43.16594690727318",
- "address": "Бородинская 17",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-20-03-03-21-vaq.jpg",
- "trainings": 0
- },
- {
- "id": 11286,
- "name": "№11286 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "131.91935867068426",
- "latitude": "43.16689898385025",
- "address": "Кутузова 58А",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-20-03-03-59-bon.jpg",
- "trainings": 0
- },
- {
- "id": 11287,
- "name": "№11287 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.88996219635011",
- "latitude": "56.052346898214026",
- "address": "петра ломако 16",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-20-16-03-51-pmv.jpg",
- "trainings": 0
- },
- {
- "id": 11288,
- "name": "№11288 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.526255",
- "latitude": "55.840137",
- "address": "Михалковская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-20-18-03-04-vdr.jpg",
- "trainings": 0
- },
- {
- "id": 11289,
- "name": "№11289 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.8599519133568",
- "latitude": "43.2484439851066",
- "address": "Тастак 1",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-21-10-03-07-tah.jpg",
- "trainings": 0
- },
- {
- "id": 11290,
- "name": "№11290 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.90861374145246",
- "latitude": "43.15370553155087",
- "address": "Проспект 100-летия Владивостока 49",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-22-10-03-03-y0g.jpg",
- "trainings": 0
- },
- {
- "id": 11291,
- "name": "№11291 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.91362857813147",
- "latitude": "43.15763777833507",
- "address": "гамарника 8",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-22-10-03-38-dhr.jpg",
- "trainings": 0
- },
- {
- "id": 11292,
- "name": "№11292 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.91007554520186",
- "latitude": "43.152900006160586",
- "address": "Ильичёва 27",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-22-10-03-24-ckl.jpg",
- "trainings": 0
- },
- {
- "id": 11293,
- "name": "№11293 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.40227055549622",
- "latitude": "60.00108092372145",
- "address": "Бутлерова, за спорткомплексом \"Зенит\"",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-22-18-03-24-nxw.jpg",
- "trainings": 0
- },
- {
- "id": 11294,
- "name": "№11294 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.90416276454927",
- "latitude": "43.25327527650145",
- "address": "Айтиева, 52",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-24-16-03-18-gcp.jpg",
- "trainings": 0
- },
- {
- "id": 11295,
- "name": "№11295 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.93614274263382",
- "latitude": "43.25967277778743",
- "address": "Гоголя, 115",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-24-16-03-03-qwm.jpg",
- "trainings": 0
- },
- {
- "id": 11296,
- "name": "№11296 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.89311681687832",
- "latitude": "36.85395081962919",
- "address": "Unnamed Road",
- "city_id": 9009,
- "country_id": 62,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-27-17-03-58-nvn.jpg",
- "trainings": 0
- },
- {
- "id": 11297,
- "name": "№11297 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.93199476285987",
- "latitude": "45.106659",
- "address": "Краснодар улица Тувинская 5",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-27-21-03-40-dzi.jpg",
- "trainings": 0
- },
- {
- "id": 11298,
- "name": "№11298 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "49.80971917364194",
- "latitude": "58.60415321668946",
- "address": "Порошинский Лесопарк",
- "city_id": 55,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-27-22-03-29-qak.jpg",
- "trainings": 0
- },
- {
- "id": 11301,
- "name": "№11301 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "27.739121317945322",
- "latitude": "53.96011402009077",
- "address": "Ул. Фогеля 1е",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/03/2021-03-29-18-03-38-tc9.jpg",
- "trainings": 0
- },
- {
- "id": 11302,
- "name": "№11302 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.89055824279785",
- "latitude": "51.318965916523666",
- "address": "Зелёный Лог парк",
- "city_id": 602,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-01-23-04-47-ab_.jpg",
- "trainings": 2
- },
- {
- "id": 11303,
- "name": "№11303 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.91681134700775",
- "latitude": "56.29005484526563",
- "address": "ул. Героя Самочкина, 9",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-02-08-04-08-qvj.jpg",
- "trainings": 0
- },
- {
- "id": 11304,
- "name": "№11304 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "43.917412161827095",
- "latitude": "56.29093012971159",
- "address": "ул. Премудрова, 11",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-02-08-04-04-7vp.jpg",
- "trainings": 0
- },
- {
- "id": 11305,
- "name": "№11305 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.9164922833443",
- "latitude": "43.157097753398226",
- "address": "Гамарника 24А",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-05-02-04-20-sfu.jpg",
- "trainings": 0
- },
- {
- "id": 11306,
- "name": "№11306 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.9172647595406",
- "latitude": "43.15684665328877",
- "address": "Гамарника 26А",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-05-02-04-49-6t_.jpg",
- "trainings": 0
- },
- {
- "id": 11307,
- "name": "№11307 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.91856920713693",
- "latitude": "43.15865781232363",
- "address": "гамарника 15",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-05-02-04-38-oyp.jpg",
- "trainings": 0
- },
- {
- "id": 11308,
- "name": "№11308 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "55.937210",
- "latitude": "57.900336",
- "address": "с.Култаево Космонавтов 1/1",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-05-16-04-23-9f_.jpg",
- "trainings": 1
- },
- {
- "id": 11309,
- "name": "№11309 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.13757091760636",
- "latitude": "56.33009792764079",
- "address": "Новоугличевское шоссе 96",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-06-07-04-43-kbh.jpg",
- "trainings": 1
- },
- {
- "id": 11310,
- "name": "№11310 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.789566",
- "latitude": "55.798341",
- "address": "измайловский бульвар 19а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-06-13-04-25-f10.jpg",
- "trainings": 0
- },
- {
- "id": 11311,
- "name": "№11311 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.911219060421",
- "latitude": "43.1509653970098",
- "address": "Ильичёва 14",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-08-00-04-23-xwq.jpg",
- "trainings": 0
- },
- {
- "id": 11312,
- "name": "№11312 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.9061130283899",
- "latitude": "43.16632187078121",
- "address": "Русская 5",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-09-11-04-36-2s9.jpg",
- "trainings": 0
- },
- {
- "id": 11313,
- "name": "№11313 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "13.352719433605671",
- "latitude": "52.54532803354275",
- "address": "Limburger Straße",
- "city_id": 694,
- "country_id": 7,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-11-21-04-22-ost.jpg",
- "trainings": 2
- },
- {
- "id": 11314,
- "name": "№11314 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.658820526713406",
- "latitude": "56.85062686824416",
- "address": "Студенческая 26",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-12-07-04-41-cpd.jpg",
- "trainings": 1
- },
- {
- "id": 11315,
- "name": "№11315 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.82005500793458",
- "latitude": "56.914276005693786",
- "address": "Березовский, Спортивная, 7",
- "city_id": 10,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-14-18-04-01-pgf.jpg",
- "trainings": 0
- },
- {
- "id": 11318,
- "name": "№11318 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.94795986264944",
- "latitude": "55.71242522221197",
- "address": "Ulitsa Marshala Yeromenko, дом 5, корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-17-15-04-56-mag.jpg",
- "trainings": 0
- },
- {
- "id": 11319,
- "name": "№11319 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.94560454785824",
- "latitude": "55.71109512940888",
- "address": "Ulitsa Marshala Yeromenko, д5к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-17-15-04-57-ap6.jpg",
- "trainings": 0
- },
- {
- "id": 11320,
- "name": "№11320 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.08766841877401",
- "latitude": "56.453543142951496",
- "address": "п. Реммаш, ул. Мира, д. 10",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-18-09-04-12-jhb.jpg",
- "trainings": 0
- },
- {
- "id": 11321,
- "name": "№11321 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.442680",
- "latitude": "55.626678",
- "address": "Содружество-Дудкино СНТ поселок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-18-16-04-03-_lx.jpg",
- "trainings": 0
- },
- {
- "id": 11324,
- "name": "№11324 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "27.584015755918866",
- "latitude": "53.95433595933994",
- "address": "Цнянское водохранилище, Пляж №2",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-20-18-04-35-8wj.jpg",
- "trainings": 1
- },
- {
- "id": 11325,
- "name": "№11325 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "34.05723899602891",
- "latitude": "44.94608093751266",
- "address": "ул. Маршала Жукова, 29",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-21-12-04-10-ju1.jpg",
- "trainings": 1
- },
- {
- "id": 11326,
- "name": "№11326 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.858600",
- "latitude": "55.685900",
- "address": "Тарханская улица, дом 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-21-22-04-39-rr_.jpg",
- "trainings": 1
- },
- {
- "id": 11327,
- "name": "№11327 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.0529689192772",
- "latitude": "44.943704101304654",
- "address": "г. Симферополь, ул. Маршала Жукова, 5",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-23-10-04-31-qpw.jpeg",
- "trainings": 1
- },
- {
- "id": 11328,
- "name": "№11328 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.92695380747318",
- "latitude": "55.70188920034348",
- "address": "Rozhdestvenskaya Ulitsa, 32",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-23-20-04-29-uc_.jpg",
- "trainings": 0
- },
- {
- "id": 11329,
- "name": "№11329 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "91.4576457222697",
- "latitude": "53.74303275492042",
- "address": "Маршала Жукова 86Б",
- "city_id": 3,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-25-12-04-05-rs5.jpg",
- "trainings": 1
- },
- {
- "id": 11330,
- "name": "№11330 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.656705548706675",
- "latitude": "55.73370612222741",
- "address": "Новоспасский переулок, дом 3 к 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-25-14-04-42-4oj.jpg",
- "trainings": 0
- },
- {
- "id": 11331,
- "name": "№11331 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.928403206169605",
- "latitude": "55.69890667389674",
- "address": "Ulitsa Ukhtomskogo Opolcheniya, 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-25-16-04-59-n3r.jpg",
- "trainings": 0
- },
- {
- "id": 11333,
- "name": "№11333 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.63569243008027",
- "latitude": "55.86576503445218",
- "address": "Заповедная улица дом 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-26-07-04-35-8pe.jpg",
- "trainings": 1
- },
- {
- "id": 11334,
- "name": "№11334 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "55.936146",
- "latitude": "57.897259",
- "address": "с. Култаево ул.Школьная 6",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-27-14-04-57-zw9.jpg",
- "trainings": 1
- },
- {
- "id": 11335,
- "name": "№11335 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.264258",
- "latitude": "59.981808",
- "address": "Елагин Остров Улица",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-28-12-04-18-iz-.jpg",
- "trainings": 0
- },
- {
- "id": 11336,
- "name": "№11336 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.178082",
- "latitude": "55.732152",
- "address": "улица Баки Урманче",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-30-11-04-46-bd4.jpg",
- "trainings": 1
- },
- {
- "id": 11337,
- "name": "№11337 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.299686789512638",
- "latitude": "59.874080792651114",
- "address": "ул кубинская 10",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/04/2021-04-30-16-04-19-que.jpg",
- "trainings": 1
- },
- {
- "id": 11338,
- "name": "№11338 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.73892754316331",
- "latitude": "56.13337417357135",
- "address": "Киржачский район, пос. Першино,Першинское СОШ",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-01-12-05-13-ts4.jpg",
- "trainings": 1
- },
- {
- "id": 11339,
- "name": "№11339 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.741218149662025",
- "latitude": "56.133413035541864",
- "address": "Киржачский район, пос. Першино,Першинское СОШ",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-01-12-05-04-p9b.jpg",
- "trainings": 1
- },
- {
- "id": 11340,
- "name": "№11340 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "76.89707905054094",
- "latitude": "43.243471633251026",
- "address": "Парк Ганди",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-02-10-05-37-_ja.jpg",
- "trainings": 0
- },
- {
- "id": 11341,
- "name": "№11341 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.48604524880648",
- "latitude": "55.85526683267893",
- "address": "Парк Дружбы, м. Речной вокзал",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-02-12-05-40-x6h.jpg",
- "trainings": 2
- },
- {
- "id": 11342,
- "name": "№11342 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.85857594013214",
- "latitude": "43.24937002859223",
- "address": "Гиманазия 130",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-04-05-05-50-den.jpg",
- "trainings": 0
- },
- {
- "id": 11343,
- "name": "№11343 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.478222",
- "latitude": "59.926063",
- "address": "улица Чудновского",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-04-18-05-18-kbb.jpg",
- "trainings": 0
- },
- {
- "id": 11344,
- "name": "№11344 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "46.602494828403",
- "latitude": "53.114553667004394",
- "address": "Центральный парк",
- "city_id": 762,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-05-09-05-17-f-4.jpg",
- "trainings": 0
- },
- {
- "id": 11345,
- "name": "№11345 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "76.85743331909181",
- "latitude": "43.24864716884919",
- "address": "Гиманазия 130",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-05-09-05-12-dtr.jpg",
- "trainings": 0
- },
- {
- "id": 11346,
- "name": "№11346 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "42.860512",
- "latitude": "44.047036",
- "address": "Yessentuki",
- "city_id": 8055,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-05-12-05-00-2lc.jpg",
- "trainings": 0
- },
- {
- "id": 11347,
- "name": "№11347 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.568205",
- "latitude": "56.81815",
- "address": "Белореченская улица / во дворах около футбольного поля",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-05-16-05-04-vaa.jpg",
- "trainings": 0
- },
- {
- "id": 11348,
- "name": "№11348 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "42.745024",
- "latitude": "43.898743",
- "address": "Верхняя Двушка",
- "city_id": 561,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-05-18-05-31-ayo.jpg",
- "trainings": 0
- },
- {
- "id": 11349,
- "name": "№11349 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "47.89137840270996",
- "latitude": "56.65310673240633",
- "address": "якова эшпая",
- "city_id": 571,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-21-14-05-48-gwe.jpeg",
- "trainings": 1
- },
- {
- "id": 11350,
- "name": "№11350 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "42.726305",
- "latitude": "43.896438",
- "address": "улица Володарского",
- "city_id": 561,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-07-15-05-13-b2-.jpg",
- "trainings": 0
- },
- {
- "id": 11351,
- "name": "№11351 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "103.84964483750265",
- "latitude": "52.50558665567373",
- "address": "19 микрорайон, СОШ N9",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-08-15-05-10-yzm.jpg",
- "trainings": 0
- },
- {
- "id": 11352,
- "name": "№11352 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "103.85601695671522",
- "latitude": "52.515194426549066",
- "address": "12 микрорайон, д.6",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-08-16-05-17-t_2.jpg",
- "trainings": 0
- },
- {
- "id": 11353,
- "name": "№11353 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "76.91776156425477",
- "latitude": "43.246332006261525",
- "address": "Весновка",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-09-15-05-44-zqg.jpg",
- "trainings": 0
- },
- {
- "id": 11354,
- "name": "№11354 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.467645844594095",
- "latitude": "56.0102736104382",
- "address": "улица Ленина, 31",
- "city_id": 73,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-09-21-05-04-f7k.jpg",
- "trainings": 0
- },
- {
- "id": 11355,
- "name": "№11355 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "131.8708951514056",
- "latitude": "43.00930033258037",
- "address": "о. Русский, ул. Экипажная, 43",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-10-09-05-02-1c8.jpg",
- "trainings": 0
- },
- {
- "id": 11356,
- "name": "№11356 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.76158452065376",
- "latitude": "56.02069354562038",
- "address": "Вильского",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-13-04-05-05-yoy.jpg",
- "trainings": 0
- },
- {
- "id": 11357,
- "name": "№11357 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.069691",
- "latitude": "54.893534",
- "address": "кл. Калинина, д. 42",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-13-19-05-02-fd1.jpg",
- "trainings": 0
- },
- {
- "id": 11358,
- "name": "№11358 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.52236336469651",
- "latitude": "55.84319612569265",
- "address": "Онежская ул., д. 2, к 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-14-16-05-38-9rm.jpeg",
- "trainings": 0
- },
- {
- "id": 11359,
- "name": "№11359 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.519976198673255",
- "latitude": "55.84579531227436",
- "address": "Онежская ул., д. 5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-14-16-05-16-d7v.jpeg",
- "trainings": 0
- },
- {
- "id": 11360,
- "name": "№11360 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "39.0378142",
- "latitude": "45.05890355",
- "address": "Героя Владислава Посадского, 49",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-15-18-05-14-cyr.jpeg",
- "trainings": 1
- },
- {
- "id": 11361,
- "name": "№11361 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.88656711551808",
- "latitude": "54.98653715992301",
- "address": "Выставочная, 8",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-16-16-05-40-fdr.jpg",
- "trainings": 0
- },
- {
- "id": 11362,
- "name": "№11362 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "52.601562738418586",
- "latitude": "58.13029826560843",
- "address": "70 лет Октября дом 1",
- "city_id": 7420,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-16-18-05-42-yan.jpg",
- "trainings": 0
- },
- {
- "id": 11363,
- "name": "№11363 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "52.6950216293335",
- "latitude": "58.13906710257543",
- "address": "Пехтина 10",
- "city_id": 7420,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-16-18-05-45-9ob.jpg",
- "trainings": 0
- },
- {
- "id": 11364,
- "name": "№11364 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.596028",
- "latitude": "55.609313",
- "address": "Чертановская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-17-18-05-18-yrm.jpg",
- "trainings": 1
- },
- {
- "id": 11365,
- "name": "№11365 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.91460758450376",
- "latitude": "43.15873998823209",
- "address": "Иртышская 6",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-18-10-05-50-_iv.jpg",
- "trainings": 1
- },
- {
- "id": 11366,
- "name": "№11366 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.472568213939674",
- "latitude": "55.994381921558286",
- "address": "Советская ул., Новопетровское",
- "city_id": 47,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-18-19-05-57-xcu.jpg",
- "trainings": 0
- },
- {
- "id": 11367,
- "name": "№11367 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "39.028759002685554",
- "latitude": "45.03835394368195",
- "address": "Восточно-Кругликовская",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-21-14-05-13-q_r.jpeg",
- "trainings": 4
- },
- {
- "id": 11368,
- "name": "№11368 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.791064254538256",
- "latitude": "57.6812137",
- "address": "Ленинградский проспект 55",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-23-14-05-54-03w.jpg",
- "trainings": 0
- },
- {
- "id": 11369,
- "name": "№11369 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.61335190110236",
- "latitude": "44.96335905522708",
- "address": "пгт. Николаевка, ул. Южная, д. 38",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-23-20-05-48-kxc.jpg",
- "trainings": 0
- },
- {
- "id": 11370,
- "name": "№11370 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "158.62633131444454",
- "latitude": "53.062683989044885",
- "address": "улица Тушканова, 29",
- "city_id": 627,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-26-00-05-29-789.jpg",
- "trainings": 0
- },
- {
- "id": 11371,
- "name": "№11371 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.60460031861954",
- "latitude": "44.960836994292336",
- "address": "пгт. Николаевка, территория СКИФ, ул. Чудесная",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-26-15-05-04-fpo.jpg",
- "trainings": 0
- },
- {
- "id": 11372,
- "name": "№11372 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "33.52583449671766",
- "latitude": "44.6178516145582",
- "address": "Площадь Нахимова, территория ЦСКА",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-26-15-05-28-wsk.jpg",
- "trainings": 1
- },
- {
- "id": 11373,
- "name": "№11373 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "61.318684511916224",
- "latitude": "55.175103795624764",
- "address": "Университетская набережная 56",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-27-08-05-45-d-b.jpg",
- "trainings": 1
- },
- {
- "id": 11374,
- "name": "№11374 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.97954515013657",
- "latitude": "56.29727855",
- "address": "Нижний Новгород, проспект Гагарина, 23 к1",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-27-16-05-06-xo9.jpg",
- "trainings": 0
- },
- {
- "id": 11377,
- "name": "№11377 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.331297881901264",
- "latitude": "55.87119129125995",
- "address": "Пятницкое шоссе, строение 1A",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-27-19-05-24-uue.jpg",
- "trainings": 0
- },
- {
- "id": 11378,
- "name": "№11378 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.9238545894623",
- "latitude": "56.06227929419551",
- "address": "9 мая 45",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-30-10-05-16-s9p.jpg",
- "trainings": 0
- },
- {
- "id": 11379,
- "name": "№11379 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.76909266108214",
- "latitude": "57.689591449999995",
- "address": "Панина 32",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-30-10-05-59-ttu.jpg",
- "trainings": 0
- },
- {
- "id": 11380,
- "name": "№11380 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.93200850486755",
- "latitude": "56.05884697617858",
- "address": "мате залки 38",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-30-10-05-54-umd.jpg",
- "trainings": 0
- },
- {
- "id": 11381,
- "name": "№11381 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "92.95135259628297",
- "latitude": "56.05732539715587",
- "address": "воронова 21",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-30-10-05-47-ggs.jpg",
- "trainings": 0
- },
- {
- "id": 11382,
- "name": "№11382 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.95079469680788",
- "latitude": "56.05348523984231",
- "address": "воронова 47",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-30-10-05-41-8t5.jpg",
- "trainings": 0
- },
- {
- "id": 11383,
- "name": "№11383 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.376486",
- "latitude": "55.588569",
- "address": "Град Московский Радужная 27",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-30-16-05-28-zxp.jpg",
- "trainings": 1
- },
- {
- "id": 11384,
- "name": "№11384 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.379784",
- "latitude": "55.588186",
- "address": "град Московский радужная 23 и в лес от моста вправо ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-30-16-05-25-ttq.jpg",
- "trainings": 1
- },
- {
- "id": 11385,
- "name": "№11385 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.60714246390026",
- "latitude": "44.9792884994962",
- "address": "пос. Николаевка, ул. Прибрежная",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/05/2021-05-31-12-05-04-mcs.jpg",
- "trainings": 0
- },
- {
- "id": 11386,
- "name": "№11386 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.92993307113648",
- "latitude": "44.643834219892064",
- "address": "Кабардинка ",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-01-00-06-05-xes.jpeg",
- "trainings": 1
- },
- {
- "id": 11387,
- "name": "№11387 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.93229341506959",
- "latitude": "44.64652876344315",
- "address": "Кабардинка ",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-01-00-06-36-kdc.jpeg",
- "trainings": 1
- },
- {
- "id": 11388,
- "name": "№11388 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.31304679065943",
- "latitude": "55.86274185782996",
- "address": "с. Ангелово",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-01-19-06-53-_u1.jpg",
- "trainings": 0
- },
- {
- "id": 11389,
- "name": "№11389 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.30649113655091",
- "latitude": "44.89156172490772",
- "address": "Крепостная",
- "city_id": 4,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-02-00-06-46-jmr.jpeg",
- "trainings": 1
- },
- {
- "id": 11390,
- "name": "№11390 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.30582594871522",
- "latitude": "44.89116268271746",
- "address": "Крепостная",
- "city_id": 4,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-02-00-06-58-x4a.jpeg",
- "trainings": 1
- },
- {
- "id": 11391,
- "name": "№11391 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "33.59993677426046",
- "latitude": "44.97462686146527",
- "address": "пос. Николаевка, ул. Набережная, д. 52",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-02-19-06-21-ej9.jpg",
- "trainings": 0
- },
- {
- "id": 11392,
- "name": "№11392 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.487413636822446",
- "latitude": "50.45649559306396",
- "address": "ул. Дмитриевская, 100",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-03-17-06-10-fko.jpg",
- "trainings": 0
- },
- {
- "id": 11393,
- "name": "№11393 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.48339500200713",
- "latitude": "50.45661206439484",
- "address": "ул. Л. Глебова, 14",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-03-18-06-04-vw_.jpg",
- "trainings": 0
- },
- {
- "id": 11394,
- "name": "№11394 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.482167932278497",
- "latitude": "50.455007089965264",
- "address": "ул. маршала Рыбалко, 2 (стадион «Старт»)",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-03-18-06-06-vhv.jpg",
- "trainings": 0
- },
- {
- "id": 11395,
- "name": "№11395 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "30.48210856252291",
- "latitude": "50.456190268971994",
- "address": "ул. Н. Шолуденко, 28/4 (стадион «Старт»)",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-03-18-06-15-w7t.jpg",
- "trainings": 0
- },
- {
- "id": 11396,
- "name": "№11396 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "127.5020511",
- "latitude": "50.25891595",
- "address": "Артиллерийская 8",
- "city_id": 625,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-06-11-06-03-hfc.jpg",
- "trainings": 0
- },
- {
- "id": 11397,
- "name": "№11397 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "20.47378986888649",
- "latitude": "54.961518292818035",
- "address": "Бювет",
- "city_id": 8442,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-06-14-06-43-0nd.jpeg",
- "trainings": 1
- },
- {
- "id": 11398,
- "name": "№11398 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.54172985659188",
- "latitude": "44.64220848249284",
- "address": "парк \"Учкуевка\"",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-06-15-06-51-p3_.jpg",
- "trainings": 0
- },
- {
- "id": 11399,
- "name": "№11399 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "33.53696646596067",
- "latitude": "44.627313234025884",
- "address": "площадь генерала Захарова, д. 2",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-06-15-06-36-mqg.jpg",
- "trainings": 0
- },
- {
- "id": 11400,
- "name": "№11400 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.77065801620484",
- "latitude": "57.69982910513945",
- "address": "Бабича 9",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-06-15-06-28-4ya.jpg",
- "trainings": 0
- },
- {
- "id": 11401,
- "name": "№11401 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.77349042892457",
- "latitude": "57.70658535973888",
- "address": "Брагинская 13",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-06-16-06-09-jki.jpg",
- "trainings": 0
- },
- {
- "id": 11402,
- "name": "№11402 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "39.7793859243393",
- "latitude": "57.7069163775529",
- "address": "Тутаевское шоссе 101",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-06-16-06-50-qqu.jpg",
- "trainings": 0
- },
- {
- "id": 11403,
- "name": "№11403 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.76860344409943",
- "latitude": "57.69706927433598",
- "address": "Ленинградский проспект 74 к3",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-06-17-06-33-71w.jpg",
- "trainings": 0
- },
- {
- "id": 11404,
- "name": "№11404 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "20.478687286376957",
- "latitude": "54.720939617736775",
- "address": "Космонавта Леонова ",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-07-00-06-35-omj.jpeg",
- "trainings": 1
- },
- {
- "id": 11405,
- "name": "№11405 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "35.03802359104157",
- "latitude": "48.43345757852131",
- "address": "ул.Казакова",
- "city_id": 491,
- "country_id": 22,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-08-10-06-56-4gz.jpg",
- "trainings": 2
- },
- {
- "id": 11406,
- "name": "№11406 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.45699256658554",
- "latitude": "55.90046328133953",
- "address": "Ленинский проспект, 15 корпус 2",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-08-20-06-27-o9u.jpg",
- "trainings": 0
- },
- {
- "id": 11407,
- "name": "№11407 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.649268",
- "latitude": "55.680345",
- "address": "Нагатинский бульвар",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-09-11-06-27-re4.jpg",
- "trainings": 1
- },
- {
- "id": 11408,
- "name": "№11408 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.075327650000006",
- "latitude": "54.89100975",
- "address": "улица Тимирязева, 23",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-10-09-06-37-vkl.png",
- "trainings": 0
- },
- {
- "id": 11409,
- "name": "№11409 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.26270008070789",
- "latitude": "52.26034898636261",
- "address": "Игошина 2",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-10-16-06-36-xqg.jpg",
- "trainings": 0
- },
- {
- "id": 11410,
- "name": "№11410 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.28270530700684",
- "latitude": "55.68288336648455",
- "address": "Ново-Спортивная ул., 14",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-11-13-06-00-ea3.jpg",
- "trainings": 1
- },
- {
- "id": 11411,
- "name": "№11411 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "32.45060283690691",
- "latitude": "67.18195756256058",
- "address": "Кировская аллея, 2А",
- "city_id": 8210,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-12-09-06-36-_av.jpg",
- "trainings": 1
- },
- {
- "id": 11412,
- "name": "№11412 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "38.03704312636679",
- "latitude": "51.51585733731246",
- "address": "Курская область, посёлок горшечное ",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-12-12-06-17-8qk.jpg",
- "trainings": 1
- },
- {
- "id": 11413,
- "name": "№11413 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.92601966857911",
- "latitude": "45.122429935324064",
- "address": "Немецкая деревня",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-12-23-06-15-uhl.jpeg",
- "trainings": 1
- },
- {
- "id": 11414,
- "name": "№11414 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.929120302200324",
- "latitude": "45.11900052953188",
- "address": "Немецкая деревня",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-12-23-06-51-bho.jpeg",
- "trainings": 1
- },
- {
- "id": 11415,
- "name": "№11415 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "35.24244589787505",
- "latitude": "44.96379818300515",
- "address": "пер. Долинный, д. 27",
- "city_id": 507,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-13-21-06-24--8n.jpg",
- "trainings": 0
- },
- {
- "id": 11416,
- "name": "№11416 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.100158",
- "latitude": "34.702758",
- "address": "Sokrati Street",
- "city_id": 8730,
- "country_id": 70,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-14-08-06-22-gdk.jpg",
- "trainings": 1
- },
- {
- "id": 11417,
- "name": "№11417 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.081164240837104",
- "latitude": "48.46310802473005",
- "address": "Монастырский остров, пляж",
- "city_id": 491,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-14-14-06-57-wak.jpg",
- "trainings": 0
- },
- {
- "id": 11418,
- "name": "№11418 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.72465813159943",
- "latitude": "43.57565748932878",
- "address": "Морской переулок",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-14-23-06-48-ubn.jpeg",
- "trainings": 1
- },
- {
- "id": 11419,
- "name": "№11419 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "98.02129194345912",
- "latitude": "55.94169634387566",
- "address": "Юбилейная площадь",
- "city_id": 7961,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-16-09-06-00-bih.jpg",
- "trainings": 0
- },
- {
- "id": 11420,
- "name": "№11420 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "13.587970957159994",
- "latitude": "45.208944906352244",
- "address": "Unnamed Road",
- "city_id": 8973,
- "country_id": 26,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-16-13-06-28-vrz.jpg",
- "trainings": 1
- },
- {
- "id": 11421,
- "name": "№11421 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.977498455382374",
- "latitude": "44.83910256946218",
- "address": "Набережная",
- "city_id": 539,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-16-17-06-53-xyk.jpg",
- "trainings": 0
- },
- {
- "id": 11422,
- "name": "№11422 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.97099440326566",
- "latitude": "44.840529188738174",
- "address": "Набережная, центральный пляж",
- "city_id": 539,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-16-17-06-47-uxx.jpg",
- "trainings": 0
- },
- {
- "id": 11423,
- "name": "№11423 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.983041904069985",
- "latitude": "44.84368488839266",
- "address": "ул. куш-кая",
- "city_id": 539,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-16-17-06-38-p2u.jpg",
- "trainings": 0
- },
- {
- "id": 11424,
- "name": "№11424 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "34.98596847453882",
- "latitude": "44.852996259570105",
- "address": "ул. Коммунальная",
- "city_id": 539,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-16-17-06-11-qyn.jpg",
- "trainings": 0
- },
- {
- "id": 11425,
- "name": "№11425 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.9875980120396",
- "latitude": "44.85280892996052",
- "address": "ул. Коммунальная",
- "city_id": 539,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-16-17-06-01-uxs.jpg",
- "trainings": 0
- },
- {
- "id": 11426,
- "name": "№11426 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.457435466349125",
- "latitude": "55.88529028038425",
- "address": "улица Кирова, 27вл",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-17-17-06-48-tph.jpg",
- "trainings": 0
- },
- {
- "id": 11427,
- "name": "№11427 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.310563",
- "latitude": "59.949120",
- "address": "улица Петропавловская Крепость",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-18-16-06-53-7rk.jpg",
- "trainings": 0
- },
- {
- "id": 11428,
- "name": "№11428 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "50.79975025395039",
- "latitude": "61.66685336150053",
- "address": "ул. Катаева, д. 14, парк \"Строитель\"",
- "city_id": 132,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-18-19-06-55-lmo.jpg",
- "trainings": 1
- },
- {
- "id": 11429,
- "name": "№11429 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.15445313602686",
- "latitude": "55.53605701005484",
- "address": "улица Центральная, дом 27",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-20-01-06-22-jew.jpg",
- "trainings": 1
- },
- {
- "id": 11430,
- "name": "№11430 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.61880242824555",
- "latitude": "44.492996414069694",
- "address": "Балаклава. Южный форт",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-20-15-06-08-7cr.jpg",
- "trainings": 0
- },
- {
- "id": 11431,
- "name": "№11431 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "50.78076610454538",
- "latitude": "61.65818521951647",
- "address": "ул. Лесопарковая, д. 9, база \"Динамо\"",
- "city_id": 132,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-20-21-06-51-pqp.jpg",
- "trainings": 0
- },
- {
- "id": 11432,
- "name": "№11432 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "50.778015259471935",
- "latitude": "61.65809168705125",
- "address": "ул. Лесопарковая, д. 9, база \"Динамо\"",
- "city_id": 132,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-20-21-06-22-nin.jpg",
- "trainings": 0
- },
- {
- "id": 11433,
- "name": "№11433 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.4675239250064",
- "latitude": "55.66086224996768",
- "address": "улица Академика Анохина, 30 корпус 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-21-05-06-09-u4w.jpg",
- "trainings": 1
- },
- {
- "id": 11434,
- "name": "№11434 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.47111305594444",
- "latitude": "55.66189997046965",
- "address": "улица Академика Анохина, 26 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-21-06-06-22-ri_.jpg",
- "trainings": 1
- },
- {
- "id": 11435,
- "name": "№11435 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "103.89954874447685",
- "latitude": "52.52865137753924",
- "address": "100 квартал, д.1",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-24-17-06-37-l31.jpg",
- "trainings": 0
- },
- {
- "id": 11436,
- "name": "№11436 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.92516712099314",
- "latitude": "55.68481188556032",
- "address": "улица Заводская 2-я, 13 корпус 2 строение 1",
- "city_id": 79,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-26-08-06-57-gm1.jpg",
- "trainings": 0
- },
- {
- "id": 11437,
- "name": "№11437 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "84.913147687912",
- "latitude": "56.58962345693075",
- "address": "Проспект Коммунистический 133",
- "city_id": 7913,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-26-10-06-07-uq8.jpg",
- "trainings": 0
- },
- {
- "id": 11438,
- "name": "№11438 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.86755061149599",
- "latitude": "43.24723463707789",
- "address": "ЖК Каусар",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-27-07-06-16-zt9.jpg",
- "trainings": 0
- },
- {
- "id": 11439,
- "name": "№11439 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.54009318351746",
- "latitude": "59.830251767613916",
- "address": "Советский проспект дом 18 строение 1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-27-18-06-10-vt3.jpg",
- "trainings": 0
- },
- {
- "id": 11440,
- "name": "№11440 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "32.52991631423421",
- "latitude": "45.37747053815626",
- "address": "с. Оленевка, Крым",
- "city_id": 493,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-28-08-06-01-ia4.jpg",
- "trainings": 0
- },
- {
- "id": 11441,
- "name": "№11441 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "91.30995855630714",
- "latitude": "53.82619605849748",
- "address": "Черногорский парк Культуры и Отдыха",
- "city_id": 8074,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-29-11-06-03-3fk.jpg",
- "trainings": 0
- },
- {
- "id": 11442,
- "name": "№11442 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.83048512611661",
- "latitude": "55.75660745",
- "address": "напольный проезд 18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/06/2021-06-30-18-06-29-z07.jpg",
- "trainings": 0
- },
- {
- "id": 11444,
- "name": "№11444 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.322021007341394",
- "latitude": "59.91252504294985",
- "address": "Малодетскосельский проспект дом 23",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-02-00-07-06-cyk.jpg",
- "trainings": 0
- },
- {
- "id": 11445,
- "name": "№11445 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "20.506461",
- "latitude": "54.697409",
- "address": "Омская улица",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-02-23-07-30-rka.jpg",
- "trainings": 1
- },
- {
- "id": 11446,
- "name": "№11446 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.331431",
- "latitude": "60.028850",
- "address": "Есенина 1к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-03-09-07-29-atd.jpg",
- "trainings": 1
- },
- {
- "id": 11447,
- "name": "№11447 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.92191065369839",
- "latitude": "44.99527890821712",
- "address": "Ул доваторцев д 75",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-03-10-07-43-eu6.jpg",
- "trainings": 0
- },
- {
- "id": 11448,
- "name": "№11448 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.569530",
- "latitude": "55.406442",
- "address": "улица Филиппова",
- "city_id": 103,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-03-11-07-15-rnp.jpg",
- "trainings": 1
- },
- {
- "id": 11449,
- "name": "№11449 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "20.15487134445721",
- "latitude": "54.92931598814275",
- "address": "Ул. Мичурина 42",
- "city_id": 7947,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-03-16-07-59-fxb.jpg",
- "trainings": 1
- },
- {
- "id": 11450,
- "name": "№11450 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "43.142130374908454",
- "latitude": "47.62819926343656",
- "address": "Парк",
- "city_id": 8334,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-03-23-07-25-bwu.png",
- "trainings": 1
- },
- {
- "id": 11451,
- "name": "№11451 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.255225896835334",
- "latitude": "43.68637038955022",
- "address": "Эстосадок, Эстонская улица, 37 к 5",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-04-01-07-59-g0t.jpeg",
- "trainings": 1
- },
- {
- "id": 11452,
- "name": "№11452 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "49.46435249698543",
- "latitude": "53.48028880700835",
- "address": "Парк Комсомольского района",
- "city_id": 136,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-05-12-07-52-kn-.jpg",
- "trainings": 0
- },
- {
- "id": 11453,
- "name": "№11453 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "49.46413799853012",
- "latitude": "53.480468739759694",
- "address": "Парк Комсомольского района",
- "city_id": 136,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-05-12-07-55-938.jpg",
- "trainings": 1
- },
- {
- "id": 11455,
- "name": "№11455 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "20.152484178433955",
- "latitude": "54.927087407327434",
- "address": "Школа №1",
- "city_id": 7947,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-05-15-07-04-ip-.jpg",
- "trainings": 0
- },
- {
- "id": 11456,
- "name": "№11456 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "20.155220031711",
- "latitude": "54.92620066673602",
- "address": "Пионерская - Ленинградская - Новая",
- "city_id": 7947,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-05-15-07-33-sfk.jpg",
- "trainings": 2
- },
- {
- "id": 11457,
- "name": "№11457 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.92283805459738",
- "latitude": "44.996286149131045",
- "address": "улица Доваторцев, 75",
- "city_id": 130,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-05-17-07-03-mqw.jpg",
- "trainings": 0
- },
- {
- "id": 11458,
- "name": "№11458 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "64.0456456273639",
- "latitude": "67.49672156077223",
- "address": "ул. Северная",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-05-18-07-05-vae.jpg",
- "trainings": 0
- },
- {
- "id": 11459,
- "name": "№11459 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.601597",
- "latitude": "56.845253",
- "address": "Стадион «Динамо», улица Ерёмина",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-06-13-07-39-h1h.jpg",
- "trainings": 0
- },
- {
- "id": 11460,
- "name": "№11460 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.319609642028816",
- "latitude": "43.66125520508263",
- "address": "Эстосадок",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-07-16-07-56-vml.jpeg",
- "trainings": 1
- },
- {
- "id": 11461,
- "name": "№11461 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.08706168611879",
- "latitude": "54.888335999999995",
- "address": "улица Тургенева, 15/24",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-07-20-07-39-eh2.jpg",
- "trainings": 0
- },
- {
- "id": 11462,
- "name": "№11462 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-0.0932765007019043",
- "latitude": "51.49726893847972",
- "address": "Dickens square, Southwark",
- "city_id": 587,
- "country_id": 6,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-08-23-07-15-7bl.png",
- "trainings": 0
- },
- {
- "id": 11463,
- "name": "№11463 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "40.30107021331787",
- "latitude": "43.67394021076283",
- "address": "Пляж «Роза Хутор»",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-10-14-07-39-ebi.jpeg",
- "trainings": 1
- },
- {
- "id": 11464,
- "name": "№11464 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "102.49688171480899",
- "latitude": "53.551056594007115",
- "address": "пгт.Залари ул.Смолина",
- "city_id": 46,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-10-20-07-50-clt.jpg",
- "trainings": 1
- },
- {
- "id": 11465,
- "name": "№11465 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.50006541609764",
- "latitude": "53.91455180733631",
- "address": "улица Притыцкого, 16",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-11-00-07-44-xxg.jpg",
- "trainings": 0
- },
- {
- "id": 11466,
- "name": "№11466 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "20.162687301690312",
- "latitude": "54.9288002093161",
- "address": "Ул. Пригородная, за шайбой :) ",
- "city_id": 7947,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-12-00-07-12-lmk.jpg",
- "trainings": 0
- },
- {
- "id": 11467,
- "name": "№11467 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "20.51262974728161",
- "latitude": "54.72926484581172",
- "address": "Горького 66",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-12-00-07-33-dv8.jpg",
- "trainings": 0
- },
- {
- "id": 11468,
- "name": "№11468 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "103.86661818853725",
- "latitude": "52.520459331035944",
- "address": "7 микрорайон, Сталинградская аллея",
- "city_id": 662,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-12-09-07-16-lzj.jpg",
- "trainings": 0
- },
- {
- "id": 11469,
- "name": "№11469 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "38.13888788223267",
- "latitude": "54.85471224303537",
- "address": "Белопесоцкая улица",
- "city_id": 131,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-12-14-07-18-t5h.jpg",
- "trainings": 0
- },
- {
- "id": 11470,
- "name": "№11470 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.901887893676765",
- "latitude": "55.72319976731411",
- "address": "2й Красковский проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-15-01-07-15-kbq.jpg",
- "trainings": 1
- },
- {
- "id": 11471,
- "name": "№11471 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.471310533583164",
- "latitude": "55.66384862440336",
- "address": "улица Покрышкина, 3 строение 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-19-23-07-28-7m4.jpg",
- "trainings": 1
- },
- {
- "id": 11472,
- "name": "№11472 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.626071",
- "latitude": "53.857518",
- "address": "улица Щётовка",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-20-05-07-41-ess.jpg",
- "trainings": 0
- },
- {
- "id": 11473,
- "name": "№11473 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.478917576575924",
- "latitude": "60.053069300000004",
- "address": "Капральская, 15",
- "city_id": 9073,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-20-14-07-03-ux2.jpg",
- "trainings": 0
- },
- {
- "id": 11474,
- "name": "№11474 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.551609992980964",
- "latitude": "49.924831501563645",
- "address": "Молодёжный",
- "city_id": 8516,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-21-07-07-05-ywy.jpeg",
- "trainings": 1
- },
- {
- "id": 11475,
- "name": "№11475 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "39.95741486549378",
- "latitude": "43.40605298951619",
- "address": "Фишт",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-21-07-07-19-vpn.jpeg",
- "trainings": 1
- },
- {
- "id": 11476,
- "name": "№11476 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.503053806722164",
- "latitude": "55.66343825018569",
- "address": "Unnamed Road",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-21-16-07-52--jt.jpg",
- "trainings": 1
- },
- {
- "id": 11477,
- "name": "№11477 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.492943219840534",
- "latitude": "55.66115804188444",
- "address": "улица 26 Бакинских Комиссаров, 8 корпус 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-21-16-07-07-hli.jpg",
- "trainings": 0
- },
- {
- "id": 11478,
- "name": "№11478 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "20.47078371058888",
- "latitude": "54.73824698681939",
- "address": "Ул. Красная, 139А /139Б",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-21-23-07-47-rhh.jpg",
- "trainings": 0
- },
- {
- "id": 11479,
- "name": "№11479 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.56693363189698",
- "latitude": "54.14632476241059",
- "address": "Генерала Маргелова, 9а",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-22-21-07-37-xli.jpeg",
- "trainings": 1
- },
- {
- "id": 11480,
- "name": "№11480 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.634980",
- "latitude": "56.815017",
- "address": "Екатеринбург",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-24-13-07-00-ymv.jpg",
- "trainings": 0
- },
- {
- "id": 11481,
- "name": "№11481 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.309705093503005",
- "latitude": "55.87315114364621",
- "address": "улица Отрадное поселок, 11А",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-24-20-07-14-66x.jpg",
- "trainings": 0
- },
- {
- "id": 11482,
- "name": "№11482 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.977447062730796",
- "latitude": "55.94273835480476",
- "address": "микрорайон Щелково-7",
- "city_id": 151,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-25-22-07-59-acd.jpg",
- "trainings": 2
- },
- {
- "id": 11484,
- "name": "№11484 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "127.51378767192364",
- "latitude": "50.25691542897863",
- "address": "улица Ленина, 144",
- "city_id": 625,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-26-23-07-16-vi0.jpg",
- "trainings": 2
- },
- {
- "id": 11485,
- "name": "№11485 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.7811008617282",
- "latitude": "47.24269381756626",
- "address": "Суздальский переулок, 19",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-27-20-07-00-xti.jpg",
- "trainings": 0
- },
- {
- "id": 11486,
- "name": "№11486 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "98.341408",
- "latitude": "7.840153",
- "address": "Soi Muban Land & Houses Park",
- "city_id": 8739,
- "country_id": 72,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-28-08-07-09-6sk.jpg",
- "trainings": 1
- },
- {
- "id": 11487,
- "name": "№11487 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "98.342712",
- "latitude": "7.845392",
- "address": "Phuket, Chalong",
- "city_id": 8739,
- "country_id": 72,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-28-08-07-02-pap.jpg",
- "trainings": 1
- },
- {
- "id": 11488,
- "name": "№11488 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.70861964672804",
- "latitude": "55.92569804707286",
- "address": "Лесной массив",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-31-16-07-20-8ex.jpg",
- "trainings": 0
- },
- {
- "id": 11489,
- "name": "№11489 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.461609557271004",
- "latitude": "44.594376818487994",
- "address": "улица Адмирала Юмашева, 13В",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/07/2021-07-31-18-07-24-iu7.jpg",
- "trainings": 1
- },
- {
- "id": 11490,
- "name": "№11490 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.51426577568055",
- "latitude": "55.60229932182296",
- "address": "Москва, голубинская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-30-20-12-05-gaz.jpg",
- "trainings": 0
- },
- {
- "id": 11491,
- "name": "№11491 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "48.58613021671772",
- "latitude": "54.380886192616394",
- "address": "Новосондецкий бульвар, 16",
- "city_id": 575,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-02-21-08-03-ctn.jpg",
- "trainings": 1
- },
- {
- "id": 11492,
- "name": "№11492 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.739714220166206",
- "latitude": "51.050347726685395",
- "address": "Курская улица, 2",
- "city_id": 626,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-04-05-08-22-dka.jpg",
- "trainings": 1
- },
- {
- "id": 11493,
- "name": "№11493 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.498838",
- "latitude": "50.440412",
- "address": "Lev Tolstoi Street",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-04-18-08-03-cce.jpg",
- "trainings": 0
- },
- {
- "id": 11494,
- "name": "№11494 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.668391",
- "latitude": "55.602595",
- "address": "Липецкая Улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-05-16-08-50-bs5.jpg",
- "trainings": 1
- },
- {
- "id": 11495,
- "name": "№11495 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.661278",
- "latitude": "55.586083",
- "address": "Лебедянская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-05-17-08-42-1oy.jpg",
- "trainings": 0
- },
- {
- "id": 11496,
- "name": "№11496 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.663655",
- "latitude": "55.583908",
- "address": "Михневская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-05-18-08-30-47v.jpg",
- "trainings": 0
- },
- {
- "id": 11497,
- "name": "№11497 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.668610",
- "latitude": "55.580328",
- "address": "Бирюлёвская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-05-18-08-44-mub.jpg",
- "trainings": 0
- },
- {
- "id": 11498,
- "name": "№11498 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.708631",
- "latitude": "55.782856",
- "address": "Барабанный переулок",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-06-12-08-54-epo.jpg",
- "trainings": 1
- },
- {
- "id": 11499,
- "name": "№11499 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.660372",
- "latitude": "55.618516",
- "address": "Бакинская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-06-18-08-54-ehr.jpg",
- "trainings": 0
- },
- {
- "id": 11500,
- "name": "№11500 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.662851",
- "latitude": "55.606231",
- "address": "6-я Радиальная улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-06-19-08-53-ors.jpg",
- "trainings": 0
- },
- {
- "id": 11501,
- "name": "№11501 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.662005",
- "latitude": "55.606103",
- "address": "6-я Радиальная улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-06-19-08-39-5eu.jpg",
- "trainings": 0
- },
- {
- "id": 11502,
- "name": "№11502 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.659826",
- "latitude": "55.605018",
- "address": "6-я Радиальная улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-06-19-08-08-4ql.jpg",
- "trainings": 0
- },
- {
- "id": 11503,
- "name": "№11503 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "36.46602630615235",
- "latitude": "56.590497777487705",
- "address": "Безбородово",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-08-00-08-28-kbf.jpeg",
- "trainings": 1
- },
- {
- "id": 11504,
- "name": "№11504 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.51831054687501",
- "latitude": "54.533832507944304",
- "address": "Ясногорск",
- "city_id": 8421,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-08-00-08-02-c5j.jpeg",
- "trainings": 1
- },
- {
- "id": 11505,
- "name": "№11505 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.40173411369324",
- "latitude": "59.97138456572695",
- "address": "Металлистов 85",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-08-12-08-26-iq7.jpg",
- "trainings": 0
- },
- {
- "id": 11506,
- "name": "№11506 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.398933887481693",
- "latitude": "59.96896303212577",
- "address": "Металлистов 114 к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-08-12-08-43-i40.jpg",
- "trainings": 2
- },
- {
- "id": 11507,
- "name": "№11507 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.83833599090578",
- "latitude": "43.24562278695121",
- "address": "Саина уг ул. Райымбека",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-10-17-08-04-ntl.jpg",
- "trainings": 0
- },
- {
- "id": 11508,
- "name": "№11508 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.507412",
- "latitude": "50.443345",
- "address": "Kyiv",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-10-18-08-31-gto.jpg",
- "trainings": 0
- },
- {
- "id": 11509,
- "name": "№11509 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "135.092742",
- "latitude": "48.463413",
- "address": "Волочаевская 21",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-12-07-08-50-3x5.jpg",
- "trainings": 0
- },
- {
- "id": 11510,
- "name": "№11510 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.40004968643189",
- "latitude": "60.05912199976845",
- "address": "Бугры Энфилд",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-12-20-08-49-zg_.jpeg",
- "trainings": 1
- },
- {
- "id": 11511,
- "name": "№11511 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.460972",
- "latitude": "44.595792",
- "address": "Юмашева 7",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-13-11-08-50-6y1.jpg",
- "trainings": 0
- },
- {
- "id": 11512,
- "name": "№11512 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "82.97348644584417",
- "latitude": "55.137236210461595",
- "address": "Школьная улица, 16",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-13-16-08-32-yxu.jpg",
- "trainings": 0
- },
- {
- "id": 11513,
- "name": "№11513 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.678957",
- "latitude": "55.632605",
- "address": "улица Медиков",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-14-17-08-41-lqr.jpg",
- "trainings": 0
- },
- {
- "id": 11514,
- "name": "№11514 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.50468090176582",
- "latitude": "56.45730523700275",
- "address": "319",
- "city_id": 34,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-14-22-08-59-pli.jpg",
- "trainings": 1
- },
- {
- "id": 11515,
- "name": "№11515 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.30297911912203",
- "latitude": "55.48566472436989",
- "address": "Академическая площадь, 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-15-16-08-29-b4d.jpg",
- "trainings": 1
- },
- {
- "id": 11516,
- "name": "№11516 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.29277326215689",
- "latitude": "55.489103526878196",
- "address": "Мкр B, 15А",
- "city_id": 138,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-15-16-08-15-53y.jpg",
- "trainings": 0
- },
- {
- "id": 11517,
- "name": "№11517 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "20.150141716439975",
- "latitude": "54.933857019010304",
- "address": "В лесу между озером и жд путями",
- "city_id": 7947,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-16-21-08-57-pbj.jpg",
- "trainings": 2
- },
- {
- "id": 11518,
- "name": "№11518 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.254228837788105",
- "latitude": "57.99396851865577",
- "address": "улица Героев Хасана, 6",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-17-07-08-16-wnd.jpg",
- "trainings": 1
- },
- {
- "id": 11519,
- "name": "№11519 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.060007",
- "latitude": "44.547742",
- "address": "Крымская улица",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-17-12-08-17-p9s.jpg",
- "trainings": 0
- },
- {
- "id": 11520,
- "name": "№11520 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.82090060412883",
- "latitude": "55.791522342960214",
- "address": "Нижняя Первомайская улица, 77",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-18-19-08-48-eux.jpg",
- "trainings": 1
- },
- {
- "id": 11521,
- "name": "№11521 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.69636631011963",
- "latitude": "55.876713198119184",
- "address": "Норильская, 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-19-09-08-09-tin.jpg",
- "trainings": 1
- },
- {
- "id": 11522,
- "name": "№11522 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "3.2418669459912057",
- "latitude": "51.20650832111422",
- "address": "Sport Vlaanderen Brugge, Nijverheidsstraat, Bruges",
- "city_id": 9196,
- "country_id": 45,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-21-11-08-18-sco.jpg",
- "trainings": 1
- },
- {
- "id": 11523,
- "name": "№11523 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.276941422012904",
- "latitude": "55.17415780596259",
- "address": "д. Поповская, д. 27",
- "city_id": 38,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-22-09-08-50-hl_.jpg",
- "trainings": 0
- },
- {
- "id": 11525,
- "name": "№11525 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.523559552095186",
- "latitude": "56.34105694453618",
- "address": "Проспект Ленина 36 к 1",
- "city_id": 7706,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-23-19-08-43-3m6.jpg",
- "trainings": 0
- },
- {
- "id": 11526,
- "name": "№11526 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.354448",
- "latitude": "45.194531",
- "address": "улица Некрасова",
- "city_id": 493,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-23-20-08-43-xgo.jpg",
- "trainings": 0
- },
- {
- "id": 11527,
- "name": "№11527 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "142.75641110627478",
- "latitude": "46.905884778182134",
- "address": "ул Зима, дом 15",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-25-08-08-44-y3f.jpg",
- "trainings": 0
- },
- {
- "id": 11528,
- "name": "№11528 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.716708831489086",
- "latitude": "56.23285224264209",
- "address": "Кооперативная улица, 59",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-26-10-08-31-kzb.jpg",
- "trainings": 1
- },
- {
- "id": 11529,
- "name": "№11529 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.518808",
- "latitude": "44.616113",
- "address": "Адмирала Клокачёва набережная",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-26-14-08-30-cgc.jpg",
- "trainings": 1
- },
- {
- "id": 11530,
- "name": "№11530 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.519186",
- "latitude": "44.608159",
- "address": "Очаковцев улица",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-26-16-08-55-a6q.jpg",
- "trainings": 1
- },
- {
- "id": 11531,
- "name": "№11531 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.61984717851374",
- "latitude": "43.09643918155017",
- "address": "г. Гудаута ул. Чамагуа",
- "city_id": 9020,
- "country_id": 74,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-27-19-08-58--sj.jpg",
- "trainings": 1
- },
- {
- "id": 11532,
- "name": "№11532 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.241875",
- "latitude": "60.016307",
- "address": "Долгоозёрная улица",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-28-11-08-10-yuc.jpg",
- "trainings": 0
- },
- {
- "id": 11533,
- "name": "№11533 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.859405",
- "latitude": "57.576103",
- "address": "проезд Матросова",
- "city_id": 155,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-29-15-08-36-jjz.jpg",
- "trainings": 0
- },
- {
- "id": 11534,
- "name": "tmp",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.102300",
- "latitude": "44.969342",
- "address": "Киевская улица",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-30-10-08-12-qcl.jpg",
- "trainings": 0
- },
- {
- "id": 11535,
- "name": "tmp",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.102300",
- "latitude": "44.969342",
- "address": "Киевская улица",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-30-10-08-12-qw7.jpg",
- "trainings": 0
- },
- {
- "id": 11536,
- "name": "№11536 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.29508186876774",
- "latitude": "53.303007443729896",
- "address": "улица Камозина, 30",
- "city_id": 13,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/08/2021-08-31-00-08-49-lmi.jpg",
- "trainings": 0
- },
- {
- "id": 11537,
- "name": "№11537 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.590020",
- "latitude": "56.846578",
- "address": "улица Бориса Ельцина",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-01-08-09-32-0vs.jpg",
- "trainings": 1
- },
- {
- "id": 11538,
- "name": "№11538 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "30.927189588546756",
- "latitude": "52.406333081894275",
- "address": "Пр.Речицкий 44",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-01-15-09-11-7b4.jpeg",
- "trainings": 0
- },
- {
- "id": 11539,
- "name": "№11539 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.592592",
- "latitude": "56.839742",
- "address": "ул. Антона Валека",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-02-15-09-49-tzo.jpg",
- "trainings": 0
- },
- {
- "id": 11540,
- "name": "№11540 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "65.64367659999999",
- "latitude": "57.170602599999995",
- "address": "Ермака 26",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-02-17-09-36-kvx.jpg",
- "trainings": 0
- },
- {
- "id": 11541,
- "name": "№11541 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "65.64027420131218",
- "latitude": "57.16977945",
- "address": "Судоремонтная 2а",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-02-17-09-28-3s3.jpg",
- "trainings": 0
- },
- {
- "id": 11542,
- "name": "№11542 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "65.6418841",
- "latitude": "57.169768399999995",
- "address": "Макарова 2/1",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-02-17-09-51-ttl.jpg",
- "trainings": 0
- },
- {
- "id": 11543,
- "name": "№11543 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "65.64251439221931",
- "latitude": "57.1725759",
- "address": "Ершова 32",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-02-17-09-50-bna.jpg",
- "trainings": 0
- },
- {
- "id": 11544,
- "name": "№11544 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "65.63660791435991",
- "latitude": "57.171081650000005",
- "address": "Макарова 11",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-02-17-09-18-wwf.jpg",
- "trainings": 0
- },
- {
- "id": 11545,
- "name": "№11545 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "65.63714898934627",
- "latitude": "57.169829199999995",
- "address": "Судоремонтная 1а",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-02-17-09-14-6po.jpg",
- "trainings": 0
- },
- {
- "id": 11546,
- "name": "№11546 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "65.64049812882075",
- "latitude": "57.1737184",
- "address": "Судоремонтная 14",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-02-17-09-53-2ys.jpg",
- "trainings": 0
- },
- {
- "id": 11547,
- "name": "№11547 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "65.63874688882547",
- "latitude": "57.1741049",
- "address": "Ершова 13",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-02-17-09-55-6em.jpg",
- "trainings": 0
- },
- {
- "id": 11548,
- "name": "№11548 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "65.63752844456522",
- "latitude": "57.174085000000005",
- "address": "Ершова 11",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-02-17-09-53-29y.jpg",
- "trainings": 0
- },
- {
- "id": 11549,
- "name": "№11549 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "65.6358368125284",
- "latitude": "57.1743876",
- "address": "Ершова 9",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-02-17-09-10-aj9.jpg",
- "trainings": 0
- },
- {
- "id": 11550,
- "name": "№11550 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "65.61781873274063",
- "latitude": "57.1729182",
- "address": "Парк гагарина",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-02-17-09-36-ryd.jpg",
- "trainings": 0
- },
- {
- "id": 11551,
- "name": "№11551 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.41714030504227",
- "latitude": "55.72384228705068",
- "address": "Ulitsa Grishina, 18 корпус 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-02-19-09-02-hoy.jpg",
- "trainings": 1
- },
- {
- "id": 11552,
- "name": "№11552 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.700895",
- "latitude": "55.623695",
- "address": "улица Маршала Захарова",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-04-18-09-09-m5m.jpg",
- "trainings": 1
- },
- {
- "id": 11553,
- "name": "№11553 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "83.10479700565338",
- "latitude": "54.86507498024559",
- "address": "Полевая 14",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-05-22-09-20-lmb.jpg",
- "trainings": 0
- },
- {
- "id": 11554,
- "name": "№11554 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.698162",
- "latitude": "55.789519",
- "address": "улица Матросская Тишина",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-07-15-09-22-1fw.jpg",
- "trainings": 0
- },
- {
- "id": 11555,
- "name": "№11555 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.433721249907194",
- "latitude": "55.89187550983276",
- "address": "Улица Энгельса 18А",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-08-21-09-39-z7_.jpg",
- "trainings": 1
- },
- {
- "id": 11556,
- "name": "№11556 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "41.8178075553351",
- "latitude": "44.68580679012314",
- "address": "Кочубеевское",
- "city_id": 778,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-10-22-09-24-h-c.jpg",
- "trainings": 1
- },
- {
- "id": 11557,
- "name": "№11557 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "50.82062389701605",
- "latitude": "61.697561087074",
- "address": "Тентюковская улица, 315а",
- "city_id": 132,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-10-22-09-03-laj.jpg",
- "trainings": 0
- },
- {
- "id": 11558,
- "name": "№11558 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.82097005772085",
- "latitude": "56.84372295796525",
- "address": "ул. Республиканская",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-11-10-09-13-e6q.jpg",
- "trainings": 0
- },
- {
- "id": 11559,
- "name": "№11559 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.81887578928218",
- "latitude": "56.843801000128565",
- "address": "ул. Республиканская",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-11-10-09-39-nea.jpg",
- "trainings": 0
- },
- {
- "id": 11560,
- "name": "№11560 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "35.82580447164219",
- "latitude": "56.84328638622976",
- "address": "ул. Республиканская",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-11-10-09-05-m7u.jpg",
- "trainings": 0
- },
- {
- "id": 11561,
- "name": "№11561 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.49270132859238",
- "latitude": "56.23157677375617",
- "address": "Д. Щуколово, горнолыжный клуб Леонида Тягачёва",
- "city_id": 34,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-11-11-09-55-_xh.jpg",
- "trainings": 0
- },
- {
- "id": 11562,
- "name": "№11562 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "84.97929632663728",
- "latitude": "56.512399781293325",
- "address": "парк Победы",
- "city_id": 589,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-12-09-09-59-t_3.jpg",
- "trainings": 1
- },
- {
- "id": 11563,
- "name": "№11563 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "36.25111064617159",
- "latitude": "54.5130626323497",
- "address": "Калуга, Достоевского",
- "city_id": 50,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-15-10-09-06-fyq.jpg",
- "trainings": 0
- },
- {
- "id": 11564,
- "name": "№11564 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.49446272865498",
- "latitude": "55.879722121350376",
- "address": "Маршала Федоренко",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-15-17-09-44-wzg.jpg",
- "trainings": 0
- },
- {
- "id": 11565,
- "name": "№11565 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.51100462675095",
- "latitude": "59.89609474246012",
- "address": "мурманское шоссе 1",
- "city_id": 9062,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-16-14-09-14-0wg.png",
- "trainings": 0
- },
- {
- "id": 11566,
- "name": "№11566 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.90648687630892",
- "latitude": "59.08937784123294",
- "address": "улица Городецкая, 20",
- "city_id": 148,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-17-07-09-49-yjc.jpg",
- "trainings": 2
- },
- {
- "id": 11567,
- "name": "№11567 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.23034",
- "latitude": "59.957475",
- "address": "Кораблестроителей, 44 к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-20-11-09-22-xpc.jpg",
- "trainings": 1
- },
- {
- "id": 11568,
- "name": "№11568 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.370871610939503",
- "latitude": "59.87352817040206",
- "address": "Будапештская улица, 8 корпус 3",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-21-16-09-39-ws7.jpg",
- "trainings": 0
- },
- {
- "id": 11569,
- "name": "№11569 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "61.358989924192436",
- "latitude": "55.19705204592571",
- "address": "улица Куйбышева, 13",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-22-14-09-41-wvf.jpg",
- "trainings": 0
- },
- {
- "id": 11570,
- "name": "№11570 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.658857691689136",
- "latitude": "55.76597098511759",
- "address": "Басманный тупик, 11А, сад им. Н.Э. Баумана",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-23-17-09-45-ctc.jpg",
- "trainings": 0
- },
- {
- "id": 11571,
- "name": "№11571 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.511397",
- "latitude": "55.536392",
- "address": "улица Кадырова",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-24-08-09-29-bfa.jpg",
- "trainings": 0
- },
- {
- "id": 11572,
- "name": "№11572 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.99616094250162",
- "latitude": "54.99130088543853",
- "address": "ул. Дубравы, д. 65",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/09/2021-09-26-11-09-41-1yk.jpg",
- "trainings": 0
- },
- {
- "id": 11573,
- "name": "№11573 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "131.90878093242648",
- "latitude": "43.91614429490514",
- "address": "Городок Воздвиженка, Уссурийский городской округ, Приморский край",
- "city_id": 786,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-01-14-10-58-npk.jpg",
- "trainings": 1
- },
- {
- "id": 11574,
- "name": "№11574 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.6017324924469",
- "latitude": "54.862873098203245",
- "address": "Рязанская область Рыбновский район с. Константиново д.124",
- "city_id": 113,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-02-22-10-04-7_9.jpg",
- "trainings": 0
- },
- {
- "id": 11575,
- "name": "№11575 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "55.84595203399659",
- "latitude": "54.71526732252681",
- "address": "Мечтателей 11",
- "city_id": 142,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-03-14-10-57-nkp.jpg",
- "trainings": 0
- },
- {
- "id": 11576,
- "name": "№11576 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.448644399602019",
- "latitude": "48.26673846522269",
- "address": "Josef-Effner-Gym, 85221 Dachau",
- "city_id": 8743,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-03-15-10-01-1mj.jpg",
- "trainings": 1
- },
- {
- "id": 11577,
- "name": "№11577 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.579861641039315",
- "latitude": "48.271905293870326",
- "address": "Valentins Park",
- "city_id": 9193,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-03-17-10-04-9ru.jpg",
- "trainings": 0
- },
- {
- "id": 11578,
- "name": "№11578 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "66.56744551424379",
- "latitude": "66.57024255533472",
- "address": "Обская 43",
- "city_id": 643,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-06-04-10-15-nem.jpg",
- "trainings": 1
- },
- {
- "id": 11579,
- "name": "№11579 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "131.90776169300082",
- "latitude": "43.91144320150854",
- "address": "Приморский край, Уссурийский городской округ, Воздвиженка",
- "city_id": 786,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-08-12-10-45-uis.jpg",
- "trainings": 1
- },
- {
- "id": 11580,
- "name": "№11580 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "135.089411",
- "latitude": "48.463506",
- "address": "молдавский переулок 7",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-09-09-10-08-3zc.jpg",
- "trainings": 0
- },
- {
- "id": 11581,
- "name": "№11581 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.777387127280235",
- "latitude": "55.728575190241074",
- "address": "улица Зарайская, 51 корпус 2 строение 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-10-13-10-29-vev.jpg",
- "trainings": 1
- },
- {
- "id": 11582,
- "name": "№11582 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "82.97836156010123",
- "latitude": "55.026833562844836",
- "address": "ул. Добролюбова, д. 158",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-15-15-10-37-2h-.jpg",
- "trainings": 0
- },
- {
- "id": 11583,
- "name": "№11583 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.96015935508838",
- "latitude": "55.015585370853046",
- "address": "ул. Тургенева, 184/1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-16-13-10-35-bv0.jpg",
- "trainings": 0
- },
- {
- "id": 11584,
- "name": "№11584 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.87028251406328",
- "latitude": "55.05718014662256",
- "address": "ПКиО \"Заельцовский\"",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-16-13-10-17-_ed.jpg",
- "trainings": 0
- },
- {
- "id": 11585,
- "name": "№11585 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.234917",
- "latitude": "55.567242",
- "address": "улица Гурьева",
- "city_id": 110,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-16-16-10-37-i3g.jpg",
- "trainings": 0
- },
- {
- "id": 11586,
- "name": "№11586 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "35.83636593681149",
- "latitude": "56.842295866459445",
- "address": "Первомайская роща",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-17-19-10-17-jhc.jpg",
- "trainings": 0
- },
- {
- "id": 11587,
- "name": "№11587 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "94.70791518688203",
- "latitude": "55.96651220392381",
- "address": "Заозёрный , 40 лет Октября 38",
- "city_id": 7940,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-17-20-10-01-jld.jpg",
- "trainings": 1
- },
- {
- "id": 11590,
- "name": "№11590 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.56198763847352",
- "latitude": "55.790515394201755",
- "address": "Метро Динамо, спортивный парк \"Динамо\" ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-18-10-10-23-hj6.jpg",
- "trainings": 1
- },
- {
- "id": 11591,
- "name": "№11591 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "61.28826783036429",
- "latitude": "55.19433956298017",
- "address": "40-летия победы 5",
- "city_id": 147,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-18-14-10-09-wfy.jpg",
- "trainings": 1
- },
- {
- "id": 11592,
- "name": "№11592 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.95629894733432",
- "latitude": "43.801165505502986",
- "address": "Приморский край, город Уссурийск, Крестьянская улица",
- "city_id": 786,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-20-10-10-26-hx6.jpg",
- "trainings": 1
- },
- {
- "id": 11593,
- "name": "№11593 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "49.618251348207316",
- "latitude": "58.632524450000005",
- "address": "Дзержинского 60",
- "city_id": 55,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-21-11-10-46-wq7.jpg",
- "trainings": 0
- },
- {
- "id": 11594,
- "name": "№11594 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.473443895578384",
- "latitude": "55.78571308508934",
- "address": "улица Маршала Тухачевского, 32 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-22-12-10-44-l1t.jpg",
- "trainings": 1
- },
- {
- "id": 11595,
- "name": "№11595 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "72.35029794375647",
- "latitude": "40.749737037854615",
- "address": "Улица Машраб, Экопарк (старое название парка Камолот)",
- "city_id": 460,
- "country_id": 21,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-22-15-10-40-iz9.jpg",
- "trainings": 1
- },
- {
- "id": 11596,
- "name": "№11596 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.995851047523516",
- "latitude": "45.0582275",
- "address": "Чистяковская роща ",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-24-04-10-10-to5.jpeg",
- "trainings": 1
- },
- {
- "id": 11597,
- "name": "№11597 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.9341623050623",
- "latitude": "55.02228189917937",
- "address": "Аллея городов, ул. Сибревкома",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-24-08-10-35-lp2.jpg",
- "trainings": 0
- },
- {
- "id": 11599,
- "name": "№11599 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.95132117666417",
- "latitude": "55.01783991535333",
- "address": "ул. Бориса Богаткова, д. 63",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-24-15-10-40-5s0.jpg",
- "trainings": 0
- },
- {
- "id": 11600,
- "name": "№11600 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.35504758358002",
- "latitude": "50.46585529810584",
- "address": "Палладина",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-27-12-10-47-nge.jpg",
- "trainings": 0
- },
- {
- "id": 11601,
- "name": "№11601 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "-73.97626876831056",
- "latitude": "40.573348437766356",
- "address": "Coney Island beach",
- "city_id": 655,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-30-05-10-24-dmo.jpeg",
- "trainings": 1
- },
- {
- "id": 11603,
- "name": "№11603 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.383090",
- "latitude": "45.048024",
- "address": "Феодосия",
- "city_id": 546,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-30-09-10-08-faw.jpg",
- "trainings": 0
- },
- {
- "id": 11604,
- "name": "№11604 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.493524",
- "latitude": "59.922187",
- "address": "проспект Солидарности",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-30-16-10-18-w49.jpg",
- "trainings": 1
- },
- {
- "id": 11605,
- "name": "№11605 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.493044",
- "latitude": "59.924231",
- "address": "проспект солидарности ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-30-16-10-04-mv9.jpg",
- "trainings": 1
- },
- {
- "id": 11606,
- "name": "№11606 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.03404831886292",
- "latitude": "45.052082126091754",
- "address": "ул. Героев-Разведчиков, д.10",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-30-18-10-37-emh.jpg",
- "trainings": 1
- },
- {
- "id": 11607,
- "name": "№11607 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.495228",
- "latitude": "59.950594",
- "address": "проспект Энтузиастов",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/10/2021-10-31-18-10-37-xso.jpg",
- "trainings": 1
- },
- {
- "id": 11608,
- "name": "№11608 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.62373242527246",
- "latitude": "55.868723230096215",
- "address": "Юрловский проезд, 8 строение 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-01-22-11-36-clk.jpg",
- "trainings": 1
- },
- {
- "id": 11609,
- "name": "№11609 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.510145",
- "latitude": "55.970920",
- "address": "Новое шоссе 12",
- "city_id": 35,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-02-15-11-34-ghi.jpg",
- "trainings": 0
- },
- {
- "id": 11610,
- "name": "№11610 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.509903",
- "latitude": "55.970958",
- "address": "Новое шоссе 12 ",
- "city_id": 35,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-02-15-11-24-lfu.jpg",
- "trainings": 0
- },
- {
- "id": 11611,
- "name": "№11611 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "-73.96747648715974",
- "latitude": "40.78286893319339",
- "address": "Central park",
- "city_id": 655,
- "country_id": 18,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-03-06-11-18-wmb.jpeg",
- "trainings": 1
- },
- {
- "id": 11612,
- "name": "№11612 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.00465130805969",
- "latitude": "45.09992685071727",
- "address": "ул. Евгения Жигуленко, д.13 корп.2",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-03-13-11-40-_wv.jpg",
- "trainings": 0
- },
- {
- "id": 11614,
- "name": "№11614 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "20.532616",
- "latitude": "54.709371",
- "address": "Калининград Московский проспект дом 130-136",
- "city_id": 49,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-12-15-11-07-6b-.jpg",
- "trainings": 1
- },
- {
- "id": 11615,
- "name": "№11615 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "131.95571422576907",
- "latitude": "43.79321821412479",
- "address": "Двор напротив 25 школы",
- "city_id": 786,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-04-06-11-54-byg.jpg",
- "trainings": 0
- },
- {
- "id": 11616,
- "name": "№11616 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "82.96306318356746",
- "latitude": "55.013943975096396",
- "address": "ул. Никитина, д. 68",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-05-08-11-49-9wl.jpg",
- "trainings": 0
- },
- {
- "id": 11617,
- "name": "№11617 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.96809489588107",
- "latitude": "55.01271911127763",
- "address": "ул. Тургенева, д. 202, школа 75",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-05-08-11-06-gzk.jpg",
- "trainings": 0
- },
- {
- "id": 11618,
- "name": "№11618 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.803070",
- "latitude": "50.960050",
- "address": "улица Кольцова",
- "city_id": 626,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-05-12-11-53-j-y.jpg",
- "trainings": 1
- },
- {
- "id": 11619,
- "name": "№11619 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.53214605152606",
- "latitude": "55.8847883980032",
- "address": "Софьи Ковалевской улица, 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-05-22-11-44-kkj.jpg",
- "trainings": 0
- },
- {
- "id": 11620,
- "name": "№11620 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "39.63570358115249",
- "latitude": "46.562263843759446",
- "address": "Улица Октябрьская, 2",
- "city_id": 9124,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-06-20-11-39-h35.jpg",
- "trainings": 1
- },
- {
- "id": 11621,
- "name": "№11621 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.40520830718146",
- "latitude": "52.730538004236976",
- "address": "Полынковская 63",
- "city_id": 631,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-08-13-11-43-qe4.jpg",
- "trainings": 1
- },
- {
- "id": 11622,
- "name": "№11622 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "65.54625783115625",
- "latitude": "57.16107007209024",
- "address": "улица 25 - го Октября, 23А",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-08-14-11-58-3rn.jpg",
- "trainings": 0
- },
- {
- "id": 11623,
- "name": "№11623 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "65.51768828183413",
- "latitude": "57.16544151386385",
- "address": "Коммунистическая улица, 1",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-08-14-11-04-aff.jpg",
- "trainings": 0
- },
- {
- "id": 11624,
- "name": "№11624 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "43.996126191634765",
- "latitude": "56.30840022948109",
- "address": "Парк Пушкина",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-08-23-11-24-gof.jpg",
- "trainings": 1
- },
- {
- "id": 11625,
- "name": "№11625 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.326532013714314",
- "latitude": "60.069916570304756",
- "address": "улица Михаила Дудина, 10",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-09-00-11-54-pnb.jpg",
- "trainings": 0
- },
- {
- "id": 11626,
- "name": "№11626 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.626434579258785",
- "latitude": "46.56878533370999",
- "address": "Красная, 29",
- "city_id": 9124,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-09-16-11-33-ted.jpg",
- "trainings": 0
- },
- {
- "id": 11627,
- "name": "№11627 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.406021550000006",
- "latitude": "52.72919255",
- "address": "Улица полынковская 59А",
- "city_id": 631,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-09-21-11-35-qu2.jpg",
- "trainings": 0
- },
- {
- "id": 11628,
- "name": "№11628 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "-73.97679448127748",
- "latitude": "40.66375314201713",
- "address": "Prospect park",
- "city_id": 655,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-09-23-11-46-nwz.jpeg",
- "trainings": 1
- },
- {
- "id": 11629,
- "name": "№11629 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.65518969343975",
- "latitude": "46.56465072766108",
- "address": "Школьный, 56",
- "city_id": 9124,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-10-19-11-07-lq5.jpg",
- "trainings": 0
- },
- {
- "id": 11630,
- "name": "№11630 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "-73.99935722351076",
- "latitude": "40.699560285865815",
- "address": "Columbia heights",
- "city_id": 655,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-11-03-11-14-zyy.jpeg",
- "trainings": 1
- },
- {
- "id": 11631,
- "name": "№11631 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.679608",
- "latitude": "45.306612",
- "address": "улица Кирова",
- "city_id": 8196,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-11-10-11-45-etm.jpg",
- "trainings": 0
- },
- {
- "id": 11632,
- "name": "№11632 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "43.827414996922016",
- "latitude": "56.23433651441524",
- "address": "ТЦ \"Мончегорская\"",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-12-11-11-29-wxr.jpg",
- "trainings": 2
- },
- {
- "id": 11633,
- "name": "№11633 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "37.652850",
- "latitude": "55.836349",
- "address": "просп. Мира, 163, корп. 1, 129226 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-12-19-11-35-dum.jpg",
- "trainings": 2
- },
- {
- "id": 11635,
- "name": "№11635 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.61040151119232",
- "latitude": "55.73577606269243",
- "address": "Maronovskiy Pereulok, 1/9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-13-18-11-45-oar.jpg",
- "trainings": 1
- },
- {
- "id": 11636,
- "name": "№11636 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "49.87463918835386",
- "latitude": "40.39548155",
- "address": "Школа 66",
- "city_id": 358,
- "country_id": 2,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-14-06-11-28-mkk.jpeg",
- "trainings": 1
- },
- {
- "id": 11637,
- "name": "№11637 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.38214728236198",
- "latitude": "59.940306303530846",
- "address": "Дегтярный переулок, 26",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-15-13-11-47-uer.jpg",
- "trainings": 0
- },
- {
- "id": 11640,
- "name": "№11640 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.41574387997388",
- "latitude": "55.72577633839039",
- "address": "Ulitsa Grishina, 24 строение 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-17-22-11-14-jdr.jpg",
- "trainings": 1
- },
- {
- "id": 11641,
- "name": "№11641 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.599294",
- "latitude": "50.600436",
- "address": "улица Князя Трубецкого",
- "city_id": 626,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-18-00-11-54-jvg.jpg",
- "trainings": 0
- },
- {
- "id": 11642,
- "name": "№11642 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "135.095136",
- "latitude": "48.464273",
- "address": "Волочаевская 30",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-18-05-11-34-hss.jpg",
- "trainings": 0
- },
- {
- "id": 11643,
- "name": "№11643 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.420089058578014",
- "latitude": "55.72493781437265",
- "address": "Ulitsa Marshala Nedelina, 34 корпус 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-18-19-11-23-wei.jpg",
- "trainings": 1
- },
- {
- "id": 11644,
- "name": "№11644 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.66876884549856",
- "latitude": "51.6609927314363",
- "address": "Набережная улица, 16",
- "city_id": 7923,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-19-16-11-02-txn.jpg",
- "trainings": 1
- },
- {
- "id": 11645,
- "name": "№11645 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "92.95628450810909",
- "latitude": "56.0136690188694",
- "address": "56.01368° N, 92.95631° E",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-20-20-11-54-whx.jpg",
- "trainings": 0
- },
- {
- "id": 11646,
- "name": "№11646 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "128.712722",
- "latitude": "34.901672",
- "address": "거제시, Саут-Джонгсанг",
- "city_id": 9202,
- "country_id": 54,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-21-06-11-44-kck.jpg",
- "trainings": 1
- },
- {
- "id": 11647,
- "name": "№11647 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "107.678238",
- "latitude": "51.800324",
- "address": "140-й А Микрорайон",
- "city_id": 615,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-21-15-11-21-sjm.jpg",
- "trainings": 0
- },
- {
- "id": 11648,
- "name": "№11648 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.40192556386683",
- "latitude": "56.23419172357975",
- "address": "Патоличева 9а",
- "city_id": 31,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-22-14-11-03-ws7.jpg",
- "trainings": 0
- },
- {
- "id": 11651,
- "name": "№11651 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "32.91176039725542",
- "latitude": "67.94233511875733",
- "address": "Школьный проезд, 2",
- "city_id": 8134,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-22-17-11-03-jri.jpg",
- "trainings": 0
- },
- {
- "id": 11652,
- "name": "№11652 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "60.427680",
- "latitude": "56.965133",
- "address": "Счастливая улица",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-23-09-11-47-7zg.jpg",
- "trainings": 0
- },
- {
- "id": 11653,
- "name": "№11653 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.709714057389654",
- "latitude": "47.24048200202511",
- "address": "студенческий парк ",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-24-14-11-21-o3y.jpeg",
- "trainings": 1
- },
- {
- "id": 11655,
- "name": "№11655 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.129190",
- "latitude": "45.857027",
- "address": "Октябрьская улица",
- "city_id": 594,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-24-22-11-07-slf.jpg",
- "trainings": 1
- },
- {
- "id": 11656,
- "name": "№11656 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "94.69658553600311",
- "latitude": "55.96975159674906",
- "address": "Заозёрный , ул.Советская, Парк отдыха",
- "city_id": 7940,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-27-22-11-15-dmq.jpg",
- "trainings": 1
- },
- {
- "id": 11657,
- "name": "№11657 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "128.676238",
- "latitude": "34.884353",
- "address": "거제시, Саут-Джонгсанг",
- "city_id": 9202,
- "country_id": 54,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-28-06-11-02-pf3.jpg",
- "trainings": 1
- },
- {
- "id": 11658,
- "name": "№11658 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.608987",
- "latitude": "50.664312",
- "address": "улица Энтузиастов",
- "city_id": 626,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/11/2021-11-28-15-11-43-nci.jpg",
- "trainings": 1
- },
- {
- "id": 11659,
- "name": "№11659 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.077294",
- "latitude": "44.548581",
- "address": "революционная 3",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-01-20-12-55-pgj.jpg",
- "trainings": 0
- },
- {
- "id": 11660,
- "name": "№11660 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.077594",
- "latitude": "44.548489",
- "address": "Приморский бульвар д. 8",
- "city_id": 30,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-01-20-12-42-upc.jpg",
- "trainings": 0
- },
- {
- "id": 11662,
- "name": "№11662 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "18.515958711504936",
- "latitude": "-33.81974959656232",
- "address": "New Forest Crescent, 25",
- "city_id": 9000,
- "country_id": 53,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-03-12-12-02-pae.jpg",
- "trainings": 1
- },
- {
- "id": 11663,
- "name": "№11663 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "128.691362",
- "latitude": "34.886905",
- "address": "거제대로",
- "city_id": 9202,
- "country_id": 54,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-04-06-12-32--av.jpg",
- "trainings": 1
- },
- {
- "id": 11664,
- "name": "№11664 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.73275751620531",
- "latitude": "55.6148257694605",
- "address": "Ореховый проезд, 45 корпус 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-05-00-12-21-a5k.jpg",
- "trainings": 0
- },
- {
- "id": 11665,
- "name": "№11665 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.688287",
- "latitude": "55.785522",
- "address": "1-я сокольническая",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-05-13-12-50-8dc.jpg",
- "trainings": 0
- },
- {
- "id": 11666,
- "name": "№11666 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "32.71552717401562",
- "latitude": "39.990536299409364",
- "address": "Turgut Ozal mahallesi, 1949 Cadde",
- "city_id": 9204,
- "country_id": 62,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-05-20-12-36-sjn.jpg",
- "trainings": 1
- },
- {
- "id": 11667,
- "name": "№11667 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "16.410329272495144",
- "latitude": "48.242079155161",
- "address": "donaupark",
- "city_id": 7542,
- "country_id": 47,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-05-22-12-58-27c.jpg",
- "trainings": 1
- },
- {
- "id": 11668,
- "name": "№11668 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.25226525217295",
- "latitude": "55.679539467429564",
- "address": "улица Северная, 26",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-06-09-12-28-jql.jpg",
- "trainings": 0
- },
- {
- "id": 11669,
- "name": "№11669 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.247747741639614",
- "latitude": "55.67837688043508",
- "address": "улица Северная, 6",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-06-13-12-55-tbg.jpg",
- "trainings": 0
- },
- {
- "id": 11670,
- "name": "№11670 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.24545780569315",
- "latitude": "55.680490872669495",
- "address": "улица Северная, 5 к2",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-06-13-12-45-nmk.jpg",
- "trainings": 0
- },
- {
- "id": 11671,
- "name": "№11671 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.453242249786857",
- "latitude": "50.37616363004731",
- "address": "вулиця Лятошинського, 4А",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-07-11-12-01-zwg.jpg",
- "trainings": 0
- },
- {
- "id": 11672,
- "name": "№11672 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "23.827191",
- "latitude": "53.706429",
- "address": "вишневецкая 14",
- "city_id": 375,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-10-09-12-51-vrn.jpg",
- "trainings": 0
- },
- {
- "id": 11673,
- "name": "№11673 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.766297",
- "latitude": "45.216963",
- "address": "автодорога М-25 26 Км",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-11-12-12-58-ace.jpg",
- "trainings": 0
- },
- {
- "id": 11674,
- "name": "№11674 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.759155",
- "latitude": "45.210803",
- "address": "автодорога М-25 26 Км",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-11-12-12-16-6yz.jpg",
- "trainings": 0
- },
- {
- "id": 11675,
- "name": "№11675 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "53.144224",
- "latitude": "56.826908",
- "address": "новостроительная 39",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-12-11-12-57-c5k.jpg",
- "trainings": 0
- },
- {
- "id": 11676,
- "name": "№11676 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "53.145258",
- "latitude": "56.826889",
- "address": "улица Оружейника Драгунова",
- "city_id": 566,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-12-11-12-10-kf_.jpg",
- "trainings": 0
- },
- {
- "id": 11677,
- "name": "№11677 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "32.61177510023118",
- "latitude": "39.942383580981584",
- "address": "Etimesgut, Elvankent 1611 adalet parkı",
- "city_id": 9204,
- "country_id": 62,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-12-14-12-38-8lc.jpg",
- "trainings": 1
- },
- {
- "id": 11679,
- "name": "№11679 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "18.516413010656834",
- "latitude": "-33.828754759100086",
- "address": "Gie Road, 23",
- "city_id": 9000,
- "country_id": 53,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-17-12-12-49-jhy.jpg",
- "trainings": 1
- },
- {
- "id": 11680,
- "name": "№11680 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "41.05633098632097",
- "latitude": "44.97899436264086",
- "address": "Проезд Липовый, 275",
- "city_id": 7447,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-24-22-12-59-bh0.jpg",
- "trainings": 0
- },
- {
- "id": 11681,
- "name": "№11681 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.58840873837471",
- "latitude": "54.15177759635046",
- "address": "проспект Ленина, 139А",
- "city_id": 140,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-25-00-12-16-4gf.jpg",
- "trainings": 1
- },
- {
- "id": 11682,
- "name": "№11682 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.458411",
- "latitude": "55.707646",
- "address": "Матвеевская улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-25-02-12-11-tcz.jpg",
- "trainings": 0
- },
- {
- "id": 11683,
- "name": "№11683 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "65.5049214975366",
- "latitude": "57.17990695",
- "address": "Рылеева 38",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-25-18-12-43-nwr.jpg",
- "trainings": 0
- },
- {
- "id": 11684,
- "name": "№11684 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.79648881405592",
- "latitude": "51.289723772424544",
- "address": "Весенний микрорайон, 14",
- "city_id": 602,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-26-17-12-16-rgl.jpg",
- "trainings": 0
- },
- {
- "id": 11685,
- "name": "№11685 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.797905",
- "latitude": "51.288150",
- "address": "Весенний Микрорайон",
- "city_id": 602,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-26-17-12-56-o4t.jpg",
- "trainings": 0
- },
- {
- "id": 11687,
- "name": "№11687 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.378092512488365",
- "latitude": "57.762291809541516",
- "address": "Садовая улица",
- "city_id": 107,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-28-13-12-45-div.jpg",
- "trainings": 0
- },
- {
- "id": 11688,
- "name": "№11688 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "11.300393342971804",
- "latitude": "48.32960707783674",
- "address": "Jahnstraße 1",
- "city_id": 9206,
- "country_id": 7,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-28-14-12-35-9wj.jpg",
- "trainings": 0
- },
- {
- "id": 11689,
- "name": "№11689 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "19.25808906555176",
- "latitude": "42.44828810331811",
- "address": "Serdara ",
- "city_id": 7844,
- "country_id": 25,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-29-11-12-52-mzs.jpeg",
- "trainings": 1
- },
- {
- "id": 11690,
- "name": "№11690 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "37.51276910305024",
- "latitude": "55.59739256821143",
- "address": "Голубинский пруд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-30-20-12-54-foe.jpg",
- "trainings": 0
- },
- {
- "id": 11691,
- "name": "№11691 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "19.2671012878418",
- "latitude": "42.43446407883135",
- "address": "Oktobarske",
- "city_id": 7844,
- "country_id": 25,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2021/12/2021-12-31-11-12-49-ogy.jpeg",
- "trainings": 1
- },
- {
- "id": 11692,
- "name": "№11692 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.167695753276355",
- "latitude": "51.629218017033736",
- "address": "Ulitsa Marshala Shaposhnikova, 93",
- "city_id": 23,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-04-20-01-22-w1n.jpg",
- "trainings": 0
- },
- {
- "id": 11693,
- "name": "№11693 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "39.767933",
- "latitude": "43.552988",
- "address": "Kurortny Prospekt",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-08-16-01-00-5an.jpg",
- "trainings": 0
- },
- {
- "id": 11694,
- "name": "№11694 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.11111296713352",
- "latitude": "55.16755779011666",
- "address": "улица Туристов, 34",
- "city_id": 716,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-09-12-01-51-dgc.jpg",
- "trainings": 0
- },
- {
- "id": 11695,
- "name": "№11695 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "49.17867783693511",
- "latitude": "55.769763791263124",
- "address": "Улица Гвардейская 61 ",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-09-15-01-36-h9h.jpg",
- "trainings": 0
- },
- {
- "id": 11696,
- "name": "№11696 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "35.8641428946794",
- "latitude": "56.836736614190144",
- "address": "ул.Стахановская",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-11-12-01-17-sod.jpg",
- "trainings": 0
- },
- {
- "id": 11697,
- "name": "№11697 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.823660849018786",
- "latitude": "56.85087343986793",
- "address": "ул. Пичугина",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-11-12-01-27-qay.jpg",
- "trainings": 0
- },
- {
- "id": 11698,
- "name": "№11698 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "35.81164884508326",
- "latitude": "56.848949098302946",
- "address": "ул. Мигаловская набережная",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-11-13-01-20-rrn.jpg",
- "trainings": 0
- },
- {
- "id": 11699,
- "name": "№11699 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "98.03435767337308",
- "latitude": "55.94159920066669",
- "address": "Микрорайон Мясникова, д.4",
- "city_id": 7961,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-14-18-01-34-xan.jpg",
- "trainings": 0
- },
- {
- "id": 11700,
- "name": "№11700 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.13947824225924",
- "latitude": "56.758211349999996",
- "address": "Центральная ул., 17",
- "city_id": 37,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-15-01-01-20-ftk.jpg",
- "trainings": 0
- },
- {
- "id": 11701,
- "name": "№11701 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.68349707126618",
- "latitude": "47.94659853559651",
- "address": "ул. Петровского, 119б, Донецк, Донецкая область, 83000",
- "city_id": 492,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-15-12-01-28-ers.jpg",
- "trainings": 0
- },
- {
- "id": 11702,
- "name": "№11702 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "19.09334778785706",
- "latitude": "42.099567765411166",
- "address": "Marsala Tito",
- "city_id": 7844,
- "country_id": 25,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-15-12-01-08-t6-.jpeg",
- "trainings": 0
- },
- {
- "id": 11703,
- "name": "№11703 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "19.09181356430054",
- "latitude": "42.09963941069348",
- "address": "Marsala Tito",
- "city_id": 9216,
- "country_id": 25,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-15-12-01-31-qcf.jpeg",
- "trainings": 0
- },
- {
- "id": 11704,
- "name": "№11704 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.41007113451269",
- "latitude": "69.07290477374482",
- "address": "Адмирала Сизова, д. 17",
- "city_id": 8113,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-16-14-01-47-jkx.jpg",
- "trainings": 1
- },
- {
- "id": 11705,
- "name": "№11705 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.577797919511795",
- "latitude": "55.90644354241005",
- "address": "Вологодский проезд",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-18-00-01-32-1ze.jpg",
- "trainings": 0
- },
- {
- "id": 11706,
- "name": "№11706 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "19.26483750343323",
- "latitude": "42.43902491888328",
- "address": "Marka Miljanova",
- "city_id": 7844,
- "country_id": 25,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-18-00-01-54-uci.jpeg",
- "trainings": 1
- },
- {
- "id": 11707,
- "name": "№11707 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "98.02720237118477",
- "latitude": "55.93419172350992",
- "address": "ул. Терешковой, д.5",
- "city_id": 7961,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-18-17-01-13-7v4.jpg",
- "trainings": 0
- },
- {
- "id": 11708,
- "name": "№11708 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "23.25182050466538",
- "latitude": "42.724535776672504",
- "address": "улица „Стефана Клинчарова, 1343 3, 1343 София",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-24-09-01-52-xox.jpg",
- "trainings": 0
- },
- {
- "id": 11709,
- "name": "№11709 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.312814109027386",
- "latitude": "55.81907665847695",
- "address": "Дачная улица, 11A",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-27-10-01-43-zee.jpg",
- "trainings": 1
- },
- {
- "id": 11710,
- "name": "№11710 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "48.96618461621984",
- "latitude": "57.58250884103397",
- "address": "Кировская область город Советск",
- "city_id": 8141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-27-13-01-51-5h7.jpg",
- "trainings": 0
- },
- {
- "id": 11711,
- "name": "№11711 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.59918585419655",
- "latitude": "55.88584800343528",
- "address": "улица Костромская, владение 15",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-30-15-01-55-ew1.jpg",
- "trainings": 0
- },
- {
- "id": 11712,
- "name": "№11712 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.59538985788822",
- "latitude": "55.88778831326646",
- "address": "улица Пришвина, 10Г",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-30-15-01-04-rl6.jpg",
- "trainings": 0
- },
- {
- "id": 11713,
- "name": "№11713 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.599448040127754",
- "latitude": "55.89726734112334",
- "address": "улица Лескова, 10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-30-16-01-10-mjs.jpg",
- "trainings": 0
- },
- {
- "id": 11714,
- "name": "№11714 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.52908144891262",
- "latitude": "49.937786690505924",
- "address": "улица Военный Городок, 54",
- "city_id": 8516,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/01/2022-01-31-15-01-29-csl.jpg",
- "trainings": 1
- },
- {
- "id": 11715,
- "name": "№11715 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.337389178574085",
- "latitude": "55.816236827428774",
- "address": "улица Чайковского, 8А",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/02/2022-02-02-21-02-05-xb9.jpg",
- "trainings": 0
- },
- {
- "id": 11716,
- "name": "№11716 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "48.966431379121794",
- "latitude": "57.57909052644581",
- "address": "ул.Первомайская",
- "city_id": 8141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/02/2022-02-03-09-02-31-u0h.jpg",
- "trainings": 0
- },
- {
- "id": 11717,
- "name": "№11717 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "37.476916551950126",
- "latitude": "55.81790688279967",
- "address": " Россия, Москва, парк Покровское-Стрешнево",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2022/02/2022-02-06-02-02-52-0uh.jpg",
- "trainings": 2
- },
- {
- "id": 11718,
- "name": "№11718 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "92.98336744308472",
- "latitude": "55.9913966266365",
- "address": "Апрельская 4",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/02/2022-02-12-11-02-51-kae.jpg",
- "trainings": 0
- },
- {
- "id": 11719,
- "name": "№11719 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.438422",
- "latitude": "44.588080",
- "address": "Павла Корчагина улица",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/02/2022-02-17-23-02-32-vii.jpg",
- "trainings": 1
- },
- {
- "id": 11720,
- "name": "№11720 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.107664",
- "latitude": "44.943368",
- "address": "улица Пограничников",
- "city_id": 537,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/02/2022-02-21-09-02-21-au4.jpg",
- "trainings": 0
- },
- {
- "id": 11721,
- "name": "№11721 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.839438097121686",
- "latitude": "32.1072835239782",
- "address": "HaBarzel, 14",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/02/2022-02-22-14-02-06-_vm.jpg",
- "trainings": 0
- },
- {
- "id": 11722,
- "name": "№11722 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "34.82937039207808",
- "latitude": "32.10629805092186",
- "address": "HaBarzel, 14",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/02/2022-02-22-14-02-54-2tn.jpg",
- "trainings": 0
- },
- {
- "id": 11723,
- "name": "№11723 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.767519027473874",
- "latitude": "32.082754828134036",
- "address": "Renaissance tel-aviv hotel",
- "city_id": 7944,
- "country_id": 9,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/02/2022-02-23-10-02-08-901.jpg",
- "trainings": 0
- },
- {
- "id": 11724,
- "name": "№11724 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.409639",
- "latitude": "55.767143",
- "address": "Осенняя улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/02/2022-02-25-21-02-22-ezw.jpg",
- "trainings": 1
- },
- {
- "id": 11725,
- "name": "№11725 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "86.125407",
- "latitude": "55.337431",
- "address": "Кемерово, Ягуновский, ул. белозёрная",
- "city_id": 628,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/02/2022-02-27-07-02-50-ru_.jpg",
- "trainings": 0
- },
- {
- "id": 11726,
- "name": "№11726 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.389494776725776",
- "latitude": "55.87333961833388",
- "address": "Сходненская улица 8 .деревня Путилково, городской округ Красногорск, Московская область",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/02/2022-02-27-18-02-41-sz-.jpg",
- "trainings": 1
- },
- {
- "id": 11727,
- "name": "№11727 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "132.8925132751465",
- "latitude": "48.80112011959534",
- "address": "Пионерская 81",
- "city_id": 633,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/02/2022-02-27-22-02-38-qm2.jpg",
- "trainings": 1
- },
- {
- "id": 11728,
- "name": "№11728 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.48198077827692",
- "latitude": "60.01535544527344",
- "address": "Пейзажная улица, 18 к. 2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-04-17-03-23-vna.jpg",
- "trainings": 1
- },
- {
- "id": 11729,
- "name": "№11729 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "24.691203832380786",
- "latitude": "48.90899492112447",
- "address": "Парк Шевченка",
- "city_id": 499,
- "country_id": 22,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-06-19-03-28-lf1.jpg",
- "trainings": 0
- },
- {
- "id": 11730,
- "name": "№11730 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "63.35665225982667",
- "latitude": "61.30739367649821",
- "address": "ул. Студенческая д.35",
- "city_id": 8002,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-10-09-03-33-40b.jpg",
- "trainings": 1
- },
- {
- "id": 11731,
- "name": "№11731 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "96.046539",
- "latitude": "56.676353",
- "address": "улица Степанова",
- "city_id": 52,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-14-15-03-11-rsf.jpg",
- "trainings": 0
- },
- {
- "id": 11732,
- "name": "№11732 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.341563",
- "latitude": "53.542347",
- "address": "улица 70 лет Октября 38",
- "city_id": 136,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-14-16-03-53-xfu.jpg",
- "trainings": 0
- },
- {
- "id": 11733,
- "name": "№11733 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "73.41799378395082",
- "latitude": "55.03742360859786",
- "address": "1 амурский проезд 5/4",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-15-07-03-49-w2w.png",
- "trainings": 1
- },
- {
- "id": 11734,
- "name": "№11734 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "73.387075",
- "latitude": "54.975514",
- "address": "Полковая улица 40",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-18-15-03-00-wc9.jpg",
- "trainings": 0
- },
- {
- "id": 11735,
- "name": "№11735 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "50.111553",
- "latitude": "53.206956",
- "address": "Волжский проспект",
- "city_id": 114,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-21-16-03-39-oqv.jpg",
- "trainings": 0
- },
- {
- "id": 11736,
- "name": "№11736 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "64.457330",
- "latitude": "39.768309",
- "address": "hshsjaiaoawjsuowwkjsussu",
- "city_id": 461,
- "country_id": 21,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-21-17-03-18-zkx.jpg",
- "trainings": 0
- },
- {
- "id": 11737,
- "name": "№11737 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.725155010819435",
- "latitude": "43.60127948050314",
- "address": "Цветной бульвар, 27",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-21-21-03-10-xxu.jpg",
- "trainings": 0
- },
- {
- "id": 11738,
- "name": "№11738 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "58.325794",
- "latitude": "51.192766",
- "address": "Новотроицк",
- "city_id": 803,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-22-08-03-34-hsd.jpg",
- "trainings": 0
- },
- {
- "id": 11739,
- "name": "№11739 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.317669",
- "latitude": "48.691141",
- "address": "молодежная 9",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-22-08-03-40-nw2.jpg",
- "trainings": 0
- },
- {
- "id": 11741,
- "name": "№11741 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "36.704299",
- "latitude": "57.780456",
- "address": "Шишкова 21",
- "city_id": 745,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-22-10-03-41-74i.jpg",
- "trainings": 0
- },
- {
- "id": 11742,
- "name": "№11742 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.851795",
- "latitude": "55.938145",
- "address": "М.к. Тихонравова улица",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-22-21-03-51-zbm.jpg",
- "trainings": 0
- },
- {
- "id": 11743,
- "name": "№11743 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.409663647413254",
- "latitude": "55.75382092308402",
- "address": "Осенний бульвар, 6 строение 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-24-10-03-48-sis.jpg",
- "trainings": 0
- },
- {
- "id": 11744,
- "name": "№11744 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "24.699372053091796",
- "latitude": "48.91304002620761",
- "address": "Во дворах",
- "city_id": 499,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-24-15-03-37-2fo.jpg",
- "trainings": 0
- },
- {
- "id": 11745,
- "name": "№11745 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.762627",
- "latitude": "50.781481",
- "address": "Алексеевка ",
- "city_id": 8164,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-31-19-03-47-ado.jpg",
- "trainings": 0
- },
- {
- "id": 11746,
- "name": "№11746 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "35.83730792783172",
- "latitude": "56.84346418389533",
- "address": "Тверь, улица Ткача, дом 7",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-31-19-03-54-epv.jpg",
- "trainings": 0
- },
- {
- "id": 11747,
- "name": "№11747 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "35.8412840366691",
- "latitude": "56.842338409709626",
- "address": "Тверь, Текстильный проезд, 21",
- "city_id": 134,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/03/2022-03-31-19-03-33-zhv.jpg",
- "trainings": 0
- },
- {
- "id": 11748,
- "name": "№11748 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "50.825361013412476",
- "latitude": "61.6764800018174",
- "address": "Интернациональная, 52",
- "city_id": 132,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-01-00-04-25-uky.png",
- "trainings": 0
- },
- {
- "id": 11749,
- "name": "№11749 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "135.064889",
- "latitude": "48.471397",
- "address": "Школа 30",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-01-05-04-22-tz4.jpg",
- "trainings": 0
- },
- {
- "id": 11750,
- "name": "№11750 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.358858108411372",
- "latitude": "60.04703394065803",
- "address": "Проспект Художников, дом 26, к.1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-01-13-04-49-u-a.jpg",
- "trainings": 1
- },
- {
- "id": 11751,
- "name": "№11751 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.222610831260685",
- "latitude": "60.04097396361778",
- "address": "Коменданский проспект 23",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-02-18-04-29-9rc.jpg",
- "trainings": 1
- },
- {
- "id": 11752,
- "name": "№11752 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.52961069345475",
- "latitude": "55.88818128987753",
- "address": "улица Лобненская, 13Б",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-08-09-04-44-pqs.jpg",
- "trainings": 0
- },
- {
- "id": 11753,
- "name": "№11753 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.70605623702978",
- "latitude": "55.90194906628363",
- "address": "Юбилейная д.37 к. 2",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-08-23-04-44-mfu.jpg",
- "trainings": 0
- },
- {
- "id": 11754,
- "name": "№11754 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "39.3766750395298",
- "latitude": "56.29299601179512",
- "address": "Первомайская улица, 27",
- "city_id": 8129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-09-15-04-16-bht.jpg",
- "trainings": 1
- },
- {
- "id": 11755,
- "name": "№11755 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.346576161682606",
- "latitude": "60.08614260236206",
- "address": "Заречная улица, 44",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-09-23-04-43-w_i.jpg",
- "trainings": 0
- },
- {
- "id": 11756,
- "name": "№11756 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "76.972078",
- "latitude": "52.251339",
- "address": "катаева 157",
- "city_id": 418,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-11-19-04-33-xmi.jpg",
- "trainings": 0
- },
- {
- "id": 11758,
- "name": "№11758 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "23.298785984516144",
- "latitude": "42.73661324742904",
- "address": "1231 ж.к. Надежда 4, София",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-13-13-04-46-w6u.jpg",
- "trainings": 0
- },
- {
- "id": 11759,
- "name": "№11759 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "23.303501307964325",
- "latitude": "42.74114809478409",
- "address": "Severen Park 1231 София",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-13-14-04-01-mtw.jpg",
- "trainings": 0
- },
- {
- "id": 11760,
- "name": "№11760 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "23.26036870479584",
- "latitude": "42.71314375927797",
- "address": "ж.к. Люлин 7 София",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-13-16-04-12-itz.jpg",
- "trainings": 0
- },
- {
- "id": 11761,
- "name": "№11761 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "38.914663",
- "latitude": "45.090917",
- "address": "Западный Обход улица ",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-15-13-04-36-4cr.jpg",
- "trainings": 1
- },
- {
- "id": 11762,
- "name": "№11762 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.913588",
- "latitude": "45.090503",
- "address": "улица Западный Обход",
- "city_id": 67,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-15-13-04-21-f7c.jpg",
- "trainings": 1
- },
- {
- "id": 11763,
- "name": "№11763 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.686204090714455",
- "latitude": "55.70244464382986",
- "address": "Ulitsa Trofimova, 32 корпус 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-16-13-04-23-ou9.jpg",
- "trainings": 0
- },
- {
- "id": 11765,
- "name": "№11765 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.64059781994455",
- "latitude": "49.95188065455469",
- "address": "Бурова 19/1",
- "city_id": 421,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-17-06-04-21-fu6.jpg",
- "trainings": 0
- },
- {
- "id": 11766,
- "name": "№11766 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "61.31810903549195",
- "latitude": "56.80412975049711",
- "address": "Ул. Таховская д. 8",
- "city_id": 788,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-17-20-04-45-wum.jpeg",
- "trainings": 0
- },
- {
- "id": 11767,
- "name": "№11767 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.573837",
- "latitude": "56.813622",
- "address": "ул. Шаумяна",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-24-09-04-52-qk6.jpg",
- "trainings": 0
- },
- {
- "id": 11768,
- "name": "№11768 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.554313",
- "latitude": "56.804205",
- "address": "ул. Академика Бардина",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-24-09-04-07-nl4.jpg",
- "trainings": 0
- },
- {
- "id": 11769,
- "name": "№11769 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "31.033045649528507",
- "latitude": "52.37928485377995",
- "address": "г. Гомель, ул. Ильича",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-14-09-07-54-trv.jpg",
- "trainings": 1
- },
- {
- "id": 11770,
- "name": "№11770 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "28.35207152307703",
- "latitude": "57.819326022991156",
- "address": "Финский парк, у Михайловской башни",
- "city_id": 107,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-28-01-04-15-q4t.jpg",
- "trainings": 0
- },
- {
- "id": 11771,
- "name": "№11771 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.13069994345447",
- "latitude": "45.01526475676642",
- "address": "45.015222, 41.130731",
- "city_id": 7447,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-28-16-04-39-uj9.jpg",
- "trainings": 1
- },
- {
- "id": 11772,
- "name": "№11772 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "46.624066703008054",
- "latitude": "61.25706768699127",
- "address": "ул. Виноградова",
- "city_id": 8092,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-28-21-04-48-sdf.jpg",
- "trainings": 0
- },
- {
- "id": 11773,
- "name": "№11773 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "36.614974737167366",
- "latitude": "55.61195949858921",
- "address": "Новый городок",
- "city_id": 8036,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-30-11-04-43-bbx.jpg",
- "trainings": 0
- },
- {
- "id": 11774,
- "name": "№11774 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.620006561279304",
- "latitude": "55.6072024315953",
- "address": "Новый городок",
- "city_id": 8036,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/04/2022-04-30-20-04-17-t9h.jpeg",
- "trainings": 1
- },
- {
- "id": 11775,
- "name": "№11775 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.68681478500367",
- "latitude": "55.614153008968664",
- "address": "Красных партизан",
- "city_id": 785,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-01-13-05-37-ut7.jpeg",
- "trainings": 1
- },
- {
- "id": 11776,
- "name": "№11776 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "40.672448873519905",
- "latitude": "55.61858207161593",
- "address": "Интернациональная",
- "city_id": 785,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-07-12-05-48-vwm.jpeg",
- "trainings": 1
- },
- {
- "id": 11777,
- "name": "№11777 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.039033297040255",
- "latitude": "51.51919389253488",
- "address": "Курская область, посёлок горшечное ",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-09-19-05-43-s1u.jpg",
- "trainings": 1
- },
- {
- "id": 11778,
- "name": "№11778 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "23.2752737402916",
- "latitude": "42.74041135240048",
- "address": "ул. 24 1387 София, жк Обеля-1, Връбница",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-14-00-05-48-s69.jpg",
- "trainings": 0
- },
- {
- "id": 11779,
- "name": "№11779 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.717192",
- "latitude": "55.779412",
- "address": "улица Семёновский Вал",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-14-11-05-59-tjq.jpg",
- "trainings": 0
- },
- {
- "id": 11780,
- "name": "№11780 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.540981",
- "latitude": "55.424046",
- "address": "Бульвар Юности 50 лет ВЛКС д15",
- "city_id": 103,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-15-11-05-11-k2x.jpg",
- "trainings": 1
- },
- {
- "id": 11781,
- "name": "№11781 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "23.270054161548618",
- "latitude": "42.678395147010285",
- "address": "ул. „672-ра“, 1618 ж.к. Славия, София",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-15-20-05-20-gwg.jpg",
- "trainings": 0
- },
- {
- "id": 11782,
- "name": "№11782 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "23.272655904293064",
- "latitude": "42.674131795555006",
- "address": "Парк \"Славия\"1618 ж.к. Славия, София",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-15-20-05-59-njg.jpg",
- "trainings": 0
- },
- {
- "id": 11783,
- "name": "№11783 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "29.69542264938355",
- "latitude": "60.188326609622685",
- "address": "Театральная улица",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-21-21-05-41-iv-.jpeg",
- "trainings": 1
- },
- {
- "id": 11784,
- "name": "№11784 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.396537",
- "latitude": "60.067864",
- "address": "Полевая улица",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-22-18-05-12-p6s.jpg",
- "trainings": 1
- },
- {
- "id": 11785,
- "name": "№11785 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.60348979383707",
- "latitude": "55.77843205149135",
- "address": "Долгоруковская улица, 40 строение 4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-23-12-05-14-xss.jpg",
- "trainings": 0
- },
- {
- "id": 11786,
- "name": "№11786 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.78865265802597",
- "latitude": "59.98847702300487",
- "address": "Ленинградская улица, 3Б",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-23-18-05-19-azw.jpg",
- "trainings": 1
- },
- {
- "id": 11787,
- "name": "№11787 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.789443016161393",
- "latitude": "59.99003442202283",
- "address": "Интернациональная улица, 6А",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-24-16-05-42-w1p.jpg",
- "trainings": 1
- },
- {
- "id": 11788,
- "name": "№11788 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.605075",
- "latitude": "55.675658",
- "address": "Нагорная улица",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-25-13-05-11-vwi.jpg",
- "trainings": 0
- },
- {
- "id": 11789,
- "name": "№11789 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.79683518322418",
- "latitude": "59.98639606516349",
- "address": "Тулонская аллея, 11",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-25-14-05-24-5ou.jpg",
- "trainings": 1
- },
- {
- "id": 11792,
- "name": "№11792 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.551108",
- "latitude": "56.830662",
- "address": "ул. Крауля 61/1",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-26-13-05-27-9ec.jpg",
- "trainings": 0
- },
- {
- "id": 11805,
- "name": "№11805 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.71718494594097",
- "latitude": "55.89289688684465",
- "address": "улица 3-я Крестьянская, 17А",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-12-05-42-7cy.jpg",
- "trainings": 0
- },
- {
- "id": 11806,
- "name": "№11806 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.7161680534482",
- "latitude": "55.892013073324335",
- "address": "улица Трудовая, 18А",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-12-05-45-jgc.jpg",
- "trainings": 0
- },
- {
- "id": 11808,
- "name": "№11808 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.715477384626865",
- "latitude": "55.89229376761081",
- "address": "улица 3-я Крестьянская, 23Б",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-12-05-43-orv.jpg",
- "trainings": 0
- },
- {
- "id": 11810,
- "name": "№11810 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.71717522293329",
- "latitude": "55.89083894828807",
- "address": "улица Трудовая, 14, корп. 1",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-12-05-09-mg1.jpg",
- "trainings": 0
- },
- {
- "id": 11811,
- "name": "№11811 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.718607522547245",
- "latitude": "55.890280544892775",
- "address": "улица Трудовая, 12",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-12-05-06-cy9.jpg",
- "trainings": 0
- },
- {
- "id": 11812,
- "name": "№11812 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.720668129622936",
- "latitude": "55.89058456551558",
- "address": "улица Семашко, 50 корпус 2",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-12-05-09-hys.jpg",
- "trainings": 0
- },
- {
- "id": 11813,
- "name": "№11813 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.72079888731241",
- "latitude": "55.89122174139432",
- "address": "улица 1-я Крестьянская, 33,к.2",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-12-05-07-kh2.jpg",
- "trainings": 0
- },
- {
- "id": 11814,
- "name": "№11814 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.72157270461321",
- "latitude": "55.89205612703392",
- "address": "улица Яузская аллея, 30",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-12-05-33-eep.jpg",
- "trainings": 0
- },
- {
- "id": 11815,
- "name": "№11815 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.72361621260643",
- "latitude": "55.892265190656374",
- "address": "улица Семашко, 26",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-12-05-06-hdn.jpg",
- "trainings": 0
- },
- {
- "id": 11816,
- "name": "№11816 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.72285211831331",
- "latitude": "55.89292884739039",
- "address": "улица Яузская аллея, 28",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-13-05-46-ckg.jpg",
- "trainings": 0
- },
- {
- "id": 11817,
- "name": "№11817 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.71997444331646",
- "latitude": "55.8931384703172",
- "address": "улица 1-я Крестьянская, 18а",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-13-05-04-uda.jpg",
- "trainings": 0
- },
- {
- "id": 11818,
- "name": "№11818 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.721247151494026",
- "latitude": "55.894946820541655",
- "address": "улица 1-я Крестьянская, 4",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-13-05-18-6pa.jpg",
- "trainings": 0
- },
- {
- "id": 11819,
- "name": "№11819 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.72346466779709",
- "latitude": "55.895361343675766",
- "address": "улица 1-я Крестьянская, 1 корпус 1",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-13-05-59-kg2.jpg",
- "trainings": 0
- },
- {
- "id": 11820,
- "name": "№11820 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.718406692147255",
- "latitude": "55.895949000175506",
- "address": "Веры Волошиной улица, 22 корпус 2",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-13-05-21-zdi.jpg",
- "trainings": 0
- },
- {
- "id": 11821,
- "name": "№11821 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.71783269941807",
- "latitude": "55.896470852740414",
- "address": "улица 3-я Крестьянская, 9",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-13-05-42-ezz.jpg",
- "trainings": 0
- },
- {
- "id": 11822,
- "name": "№11822 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.713044956326485",
- "latitude": "55.898572666946706",
- "address": "Неизвестная дорога",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-13-05-30-lk1.jpg",
- "trainings": 0
- },
- {
- "id": 11823,
- "name": "№11823 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.71986447274685",
- "latitude": "55.90040895894664",
- "address": "Новомытищинский проспект, 49",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-14-05-50-gul.jpg",
- "trainings": 0
- },
- {
- "id": 11824,
- "name": "№11824 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.267794653773308",
- "latitude": "59.840945938373665",
- "address": "улица Подводника Кузьмина, 23",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-28-14-05-57-zjn.jpg",
- "trainings": 1
- },
- {
- "id": 11825,
- "name": "№11825 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.352891087532047",
- "latitude": "59.92397141329963",
- "address": "Свечной переулок",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-29-00-05-04-alq.jpeg",
- "trainings": 0
- },
- {
- "id": 11826,
- "name": "№11826 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.53551959991455",
- "latitude": "55.5469910647455",
- "address": "Плавский проезд, 7к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-29-10-05-50-mub.jpg",
- "trainings": 0
- },
- {
- "id": 11827,
- "name": "№11827 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.53259498625994",
- "latitude": "55.547962382569416",
- "address": "улица Адмирала Лазарева, 22 строение 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-29-10-05-03-byn.jpg",
- "trainings": 0
- },
- {
- "id": 11828,
- "name": "№11828 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.53914762288332",
- "latitude": "55.54684766957135",
- "address": "улица Адмирала Лазарева, 8 строение 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-29-15-05-58-c4h.jpg",
- "trainings": 0
- },
- {
- "id": 11829,
- "name": "№11829 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.72596549242735",
- "latitude": "55.88941697796195",
- "address": "Железнодорожная улица, 52",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-29-19-05-43-ktl.jpg",
- "trainings": 0
- },
- {
- "id": 11830,
- "name": "№11830 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.723224610090256",
- "latitude": "55.89019010910872",
- "address": "улица Семашко, 43",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-29-19-05-11-5ap.jpg",
- "trainings": 0
- },
- {
- "id": 11842,
- "name": "№11842 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.71478973329067",
- "latitude": "55.904595507498044",
- "address": "улица Лëтная, 38",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-30-16-05-46-qjt.jpg",
- "trainings": 0
- },
- {
- "id": 11843,
- "name": "№11843 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.712118588387966",
- "latitude": "55.892895946828205",
- "address": "1-й переулок Красноармейский, 9А",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-31-15-05-41-0fs.jpg",
- "trainings": 0
- },
- {
- "id": 11845,
- "name": "№11845 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.71048679947853",
- "latitude": "55.893467848628404",
- "address": "Западная улица, 1",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-31-15-05-31-4rz.jpg",
- "trainings": 0
- },
- {
- "id": 11848,
- "name": "№11848 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.71112784743309",
- "latitude": "55.89431966963983",
- "address": "Красноармейская улица, 2",
- "city_id": 92,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-31-15-05-54-jeb.jpg",
- "trainings": 0
- },
- {
- "id": 11849,
- "name": "№11849 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.712463922798634",
- "latitude": "55.8948131570358",
- "address": "Красноармейская улица, 4",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/05/2022-05-31-15-05-27-ff6.jpg",
- "trainings": 0
- },
- {
- "id": 11855,
- "name": "№11855 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.294756889343265",
- "latitude": "59.961530879065826",
- "address": "Ораниенбаумский сад",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-01-15-06-11-j2i.jpeg",
- "trainings": 1
- },
- {
- "id": 11856,
- "name": "№11856 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "49.094808088093224",
- "latitude": "55.86910125",
- "address": "Лукина 52",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-01-20-06-33-awu.jpeg",
- "trainings": 1
- },
- {
- "id": 11857,
- "name": "№11857 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "31.773310939344956",
- "latitude": "36.62823724983131",
- "address": "Авсаллар",
- "city_id": 7821,
- "country_id": 62,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-02-10-06-27-gx-.jpg",
- "trainings": 0
- },
- {
- "id": 11858,
- "name": "№11858 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.181333184242256",
- "latitude": "55.79783751647026",
- "address": "Разведчика Ахмерова 5",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-02-13-06-52-gql.png",
- "trainings": 0
- },
- {
- "id": 11859,
- "name": "№11859 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "29.783381223460314",
- "latitude": "59.99567779606982",
- "address": "Ул. Восстания",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-02-18-06-09-hov.jpg",
- "trainings": 1
- },
- {
- "id": 11860,
- "name": "№11860 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.782403111676107",
- "latitude": "59.99307429233208",
- "address": "Карла Либкнехта",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-02-18-06-06-gqx.jpg",
- "trainings": 1
- },
- {
- "id": 11861,
- "name": "№11861 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.591582126915455",
- "latitude": "55.75495749420858",
- "address": "Поварская улица, 30/36",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-03-13-06-43-yen.jpg",
- "trainings": 0
- },
- {
- "id": 11862,
- "name": "№11862 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.78522837162018",
- "latitude": "59.992959357446004",
- "address": " Советская ул., 9, корп. 2",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-03-18-06-49-lth.jpg",
- "trainings": 0
- },
- {
- "id": 11863,
- "name": "№11863 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "29.787232875933118",
- "latitude": "59.987607841265806",
- "address": " ул. Лебедева, 5А",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-04-14-06-46-lzp.jpg",
- "trainings": 1
- },
- {
- "id": 11867,
- "name": "№11867 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.791265130261312",
- "latitude": "59.99147127540349",
- "address": "улица Мануильского, 7",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-04-22-06-11-in-.jpg",
- "trainings": 1
- },
- {
- "id": 11868,
- "name": "№11868 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.293671518564224",
- "latitude": "55.95749567962509",
- "address": "улица Папанина, 34",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-05-10-06-46-aow.jpg",
- "trainings": 1
- },
- {
- "id": 11869,
- "name": "№11869 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.266942",
- "latitude": "55.325829",
- "address": "деревня Лукошкино",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-05-13-06-33-dad.jpg",
- "trainings": 0
- },
- {
- "id": 11870,
- "name": "№11870 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.51198589801789",
- "latitude": "56.33417070277522",
- "address": "московская улица 29 ",
- "city_id": 34,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-05-18-06-12-hgy.jpg",
- "trainings": 0
- },
- {
- "id": 11871,
- "name": "№11871 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.1497883796692",
- "latitude": "56.32847940297063",
- "address": "Чайковского, д.9",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-06-18-06-22-qhn.jpg",
- "trainings": 0
- },
- {
- "id": 11872,
- "name": "№11872 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "23.77379782497883",
- "latitude": "52.10459416465996",
- "address": "Moskovskaya, 348/2",
- "city_id": 371,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-07-15-06-38-hwa.jpg",
- "trainings": 1
- },
- {
- "id": 11873,
- "name": "№11873 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.632215",
- "latitude": "55.733130",
- "address": "6-ой монетчиковский переулок,дом 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-07-17-06-00-3zz.jpg",
- "trainings": 1
- },
- {
- "id": 11874,
- "name": "№11874 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.630662",
- "latitude": "55.732477",
- "address": "5-ый монетчиковский переулок,дом 14",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-07-19-06-59-e97.jpg",
- "trainings": 1
- },
- {
- "id": 11875,
- "name": "№11875 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.22525854628839",
- "latitude": "59.9825878392244",
- "address": "Приморский проспект ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-07-22-06-50-fqx.jpg",
- "trainings": 0
- },
- {
- "id": 11876,
- "name": "№11876 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.140856623649604",
- "latitude": "56.3386138292409",
- "address": "ул. Пограничная, 30А",
- "city_id": 118,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-07-23-06-35-scn.jpg",
- "trainings": 0
- },
- {
- "id": 11877,
- "name": "№11877 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "38.087295927107334",
- "latitude": "55.60914093030589",
- "address": "улица Гагарина, 60",
- "city_id": 41,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-09-06-06-32-uhk.jpg",
- "trainings": 1
- },
- {
- "id": 11878,
- "name": "№11878 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.799510240773092",
- "latitude": "59.986448196240104",
- "address": "Тулонская аллея, 11",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-09-18-06-05-3xa.jpg",
- "trainings": 1
- },
- {
- "id": 11879,
- "name": "№11879 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "43.229145",
- "latitude": "50.074783",
- "address": "улица Обороны",
- "city_id": 8096,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-09-19-06-31-cr0.jpg",
- "trainings": 0
- },
- {
- "id": 11880,
- "name": "№11880 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "43.99606704701001",
- "latitude": "56.32606784649957",
- "address": "Почаинская улица 14а",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-09-21-06-52-kya.jpg",
- "trainings": 0
- },
- {
- "id": 11881,
- "name": "№11881 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.518586874008186",
- "latitude": "45.35611850867338",
- "address": "Московская, 18",
- "city_id": 503,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-09-21-06-33-gd2.jpeg",
- "trainings": 0
- },
- {
- "id": 11884,
- "name": "№11884 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.191754",
- "latitude": "51.761187",
- "address": "улица Карла Маркса",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-10-00-06-15-ypd.jpg",
- "trainings": 0
- },
- {
- "id": 11885,
- "name": "№11885 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.191803",
- "latitude": "51.761019",
- "address": "улица Карла Маркса",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-10-00-06-06-xx9.jpg",
- "trainings": 1
- },
- {
- "id": 11886,
- "name": "№11886 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.72098530083895",
- "latitude": "55.88963602081606",
- "address": "ул. Трудовая",
- "city_id": 83,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-10-12-06-24-yxg.jpg",
- "trainings": 0
- },
- {
- "id": 11887,
- "name": "№11887 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "33.49157720804215",
- "latitude": "44.600723599096334",
- "address": "гагарина 6а",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-10-16-06-14-ysw.jpg",
- "trainings": 1
- },
- {
- "id": 11888,
- "name": "№11888 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.57856272559366",
- "latitude": "53.95226332918122",
- "address": "Цнянское водохранилище, Пляж №2",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-10-22-06-57-sto.jpg",
- "trainings": 0
- },
- {
- "id": 11889,
- "name": "№11889 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "41.30370173603297",
- "latitude": "56.35253665473816",
- "address": "улица Пугачева, 10",
- "city_id": 7426,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-10-22-06-51-uuj.jpg",
- "trainings": 0
- },
- {
- "id": 11890,
- "name": "№11890 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.31503071635962",
- "latitude": "56.362326975956066",
- "address": "улица Тимофея Павловского, 3",
- "city_id": 7426,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-10-23-06-09-m-c.jpg",
- "trainings": 1
- },
- {
- "id": 11891,
- "name": "№11891 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "56.21935408562422",
- "latitude": "57.99732350024543",
- "address": "улица Полевая, 18",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-11-08-06-48-akf.jpg",
- "trainings": 0
- },
- {
- "id": 11893,
- "name": "№11893 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.09961562837216",
- "latitude": "45.0055237",
- "address": "володарского 3/1",
- "city_id": 7447,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-11-12-06-17-5oz.jpg",
- "trainings": 0
- },
- {
- "id": 11894,
- "name": "№11894 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.797976016561737",
- "latitude": "59.987765087888036",
- "address": "Тулонская аллея, 11",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-11-19-06-33-num.jpg",
- "trainings": 1
- },
- {
- "id": 11895,
- "name": "№11895 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.6001125574112",
- "latitude": "55.63447047221865",
- "address": "Чертановская улица, 2к2с3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-11-19-06-15-izg.jpg",
- "trainings": 0
- },
- {
- "id": 11896,
- "name": "№11896 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "34.570697",
- "latitude": "56.174397",
- "address": "Тверская улица",
- "city_id": 8643,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-12-20-06-33--cl.jpg",
- "trainings": 0
- },
- {
- "id": 11897,
- "name": "№11897 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.058949552476406",
- "latitude": "47.42050096896216",
- "address": "Баклановский проспект, 85в",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-13-14-06-55-muw.jpg",
- "trainings": 0
- },
- {
- "id": 11898,
- "name": "№11898 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "91.31502337753773",
- "latitude": "53.83681574231771",
- "address": "улица Космонавтов, 43б",
- "city_id": 8074,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-13-15-06-57-61h.jpg",
- "trainings": 1
- },
- {
- "id": 11899,
- "name": "№11899 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.9900576248765",
- "latitude": "57.01085657161844",
- "address": "улица Базисная, 23А",
- "city_id": 44,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-13-17-06-03-hmr.jpg",
- "trainings": 0
- },
- {
- "id": 11900,
- "name": "№11900 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "65.5906105041504",
- "latitude": "57.15152067291111",
- "address": "Мельникайте 46а",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-13-20-06-14-qd5.jpg",
- "trainings": 0
- },
- {
- "id": 11901,
- "name": "№11901 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "65.58926380052907",
- "latitude": "57.150293399999995",
- "address": "Мельникайте 52",
- "city_id": 141,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-13-20-06-47-i9p.jpg",
- "trainings": 0
- },
- {
- "id": 11902,
- "name": "№11902 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.369362533092502",
- "latitude": "60.00218459825228",
- "address": "Политехническая ул., 27",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-15-12-06-16-ge4.jpg",
- "trainings": 2
- },
- {
- "id": 11903,
- "name": "№11903 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "42.10575163364411",
- "latitude": "47.63832470896086",
- "address": "ул Гришина",
- "city_id": 8447,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-15-14-06-38-rc_.jpg",
- "trainings": 1
- },
- {
- "id": 11904,
- "name": "№11904 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "28.254969120025635",
- "latitude": "36.842966775096386",
- "address": "242 Sokak ",
- "city_id": 9214,
- "country_id": 62,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-15-19-06-38-hef.jpeg",
- "trainings": 1
- },
- {
- "id": 11905,
- "name": "№11905 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.56698549208264",
- "latitude": "56.88899718368856",
- "address": "Донбасская 18",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-15-20-06-10-z2g.jpg",
- "trainings": 0
- },
- {
- "id": 11906,
- "name": "№11906 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "60.56717880590077",
- "latitude": "56.88894833293967",
- "address": "Донбасская 16",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-15-20-06-20-fh5.jpg",
- "trainings": 0
- },
- {
- "id": 11907,
- "name": "№11907 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.170496851205826",
- "latitude": "60.11950962114558",
- "address": "Школьная улица, 76",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-16-15-06-59-voq.jpg",
- "trainings": 0
- },
- {
- "id": 11908,
- "name": "№11908 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "37.31295425187384",
- "latitude": "55.8296320568582",
- "address": "Губайловский Экопарк",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-17-10-06-40-drq.jpg",
- "trainings": 0
- },
- {
- "id": 11909,
- "name": "№11909 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.39166064475522",
- "latitude": "55.874636815126316",
- "address": "70 летия Победы 3",
- "city_id": 66,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-17-10-06-08-lhe.jpg",
- "trainings": 1
- },
- {
- "id": 11910,
- "name": "№11910 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "38.75597834587098",
- "latitude": "55.06123106448373",
- "address": "Коломна, улица Весенняя дом 26",
- "city_id": 60,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-17-22-06-53-22f.jpg",
- "trainings": 0
- },
- {
- "id": 11911,
- "name": "№11911 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.48327990154937",
- "latitude": "48.704031163895436",
- "address": "Улица Степана Разина",
- "city_id": 18,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-19-16-06-50-crp.jpg",
- "trainings": 1
- },
- {
- "id": 11912,
- "name": "№11912 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "60.63704571279232",
- "latitude": "56.81438057733746",
- "address": "Мичурина 230, корпус 10",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-20-18-06-41-jr6.jpeg",
- "trainings": 0
- },
- {
- "id": 11913,
- "name": "№11913 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.597929835319523",
- "latitude": "53.92867321989645",
- "address": "улица Чернышевского, 14",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-21-09-06-23-udi.jpg",
- "trainings": 0
- },
- {
- "id": 11914,
- "name": "№11914 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.790324568748478",
- "latitude": "59.99233552987861",
- "address": "Пролетарская, 2",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-21-12-06-17-c-_.jpg",
- "trainings": 1
- },
- {
- "id": 11915,
- "name": "№11915 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.678751890696354",
- "latitude": "58.137264443713846",
- "address": "улица Сибирская 15 двор за горбатым",
- "city_id": 7420,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-22-10-06-47-3cd.jpg",
- "trainings": 1
- },
- {
- "id": 11916,
- "name": "№11916 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "35.89278023693328",
- "latitude": "56.866789092363064",
- "address": " Набережная Афанасия Никитина, 80",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-23-10-06-58-mdq.jpg",
- "trainings": 1
- },
- {
- "id": 11917,
- "name": "№11917 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.91116902977228",
- "latitude": "43.179801908552506",
- "address": "Бостандыкский Парк",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-23-20-06-34-wzw.jpg",
- "trainings": 1
- },
- {
- "id": 11918,
- "name": "№11918 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.925600329204826",
- "latitude": "47.21967037639572",
- "address": "Петровская улица 104Г",
- "city_id": 133,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-24-11-06-20-dep.jpg",
- "trainings": 0
- },
- {
- "id": 11919,
- "name": "№11919 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "35.83817606305525",
- "latitude": "56.874236734598036",
- "address": "Петербургское шоссе 71",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-24-12-06-01-39l.jpg",
- "trainings": 0
- },
- {
- "id": 11920,
- "name": "№11920 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "28.246981501579288",
- "latitude": "36.835234606905615",
- "address": "266 sokak",
- "city_id": 9214,
- "country_id": 62,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-25-10-06-30-1ve.jpeg",
- "trainings": 1
- },
- {
- "id": 11921,
- "name": "№11921 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "27.562890797853473",
- "latitude": "53.90521949442891",
- "address": "улица Янки Купалы, 25",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-25-13-06-08-h-m.jpg",
- "trainings": 0
- },
- {
- "id": 11922,
- "name": "№11922 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "29.776157140731815",
- "latitude": "59.98686083696244",
- "address": "Петровская улица, 8к5",
- "city_id": 69,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-25-18-06-13-jke.jpg",
- "trainings": 1
- },
- {
- "id": 11923,
- "name": "№11923 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "33.45855748499162",
- "latitude": "44.60930685252178",
- "address": "Набережная Парка Победы, 19/2",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-26-09-06-56-hjt.jpg",
- "trainings": 0
- },
- {
- "id": 11924,
- "name": "№11924 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.452222612177145",
- "latitude": "44.60869286169617",
- "address": "Набережная Парка Победы 2",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-26-09-06-58-0yr.jpg",
- "trainings": 0
- },
- {
- "id": 11925,
- "name": "№11925 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.454091704879836",
- "latitude": "44.595033188678805",
- "address": "Проспект Октябрьской Революции 27",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-26-09-06-02-fg4.jpg",
- "trainings": 0
- },
- {
- "id": 11926,
- "name": "№11926 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "61.73234283915719",
- "latitude": "57.61106856722255",
- "address": "Школьная улица 1",
- "city_id": 8168,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-26-10-06-25-be9.jpg",
- "trainings": 0
- },
- {
- "id": 11927,
- "name": "№11927 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "33.46143564129307",
- "latitude": "44.595178095855445",
- "address": "Адмирала Юмашева 13в",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-26-12-06-31-wnq.jpeg",
- "trainings": 0
- },
- {
- "id": 11928,
- "name": "№11928 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "33.46076654801437",
- "latitude": "44.59292205381982",
- "address": "Адмирала Юмашева 16",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-26-21-06-05-qse.jpeg",
- "trainings": 0
- },
- {
- "id": 11929,
- "name": "№11929 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "49.10446560014886",
- "latitude": "55.82396550574916",
- "address": "улица Бондаренко 15/1",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-27-13-06-05-yot.jpg",
- "trainings": 0
- },
- {
- "id": 11930,
- "name": "№11930 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.28367492556572",
- "latitude": "55.96519358980611",
- "address": "улица Ворошилова, 106",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-27-17-06-55-mrf.jpg",
- "trainings": 0
- },
- {
- "id": 11931,
- "name": "№11931 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.41747122865673",
- "latitude": "59.970966382824166",
- "address": "Львовская улица 8",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-28-15-06-10-lbx.jpg",
- "trainings": 0
- },
- {
- "id": 11932,
- "name": "№11932 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "30.280189914603856",
- "latitude": "59.9567472287262",
- "address": "Петроградский остров",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-28-15-06-11-tse.jpg",
- "trainings": 0
- },
- {
- "id": 11934,
- "name": "№11934 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "33.61581444740296",
- "latitude": "44.52853882526264",
- "address": "Крестовского 66",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-28-21-06-19-_fx.jpeg",
- "trainings": 0
- },
- {
- "id": 11935,
- "name": "№11935 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "30.534088",
- "latitude": "59.663247",
- "address": "ул. Почтовая 9",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-29-05-06-27-2yd.jpg",
- "trainings": 1
- },
- {
- "id": 11936,
- "name": "№11936 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.9112179800868",
- "latitude": "43.17904081680143",
- "address": "Бостандыкский Парк",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-30-11-06-34-nix.jpg",
- "trainings": 1
- },
- {
- "id": 11937,
- "name": "№11937 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.09001111940598",
- "latitude": "55.82440433020129",
- "address": "Сосновая роща",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-30-14-06-30-38l.jpg",
- "trainings": 1
- },
- {
- "id": 11938,
- "name": "№11938 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "43.90100777149201",
- "latitude": "55.37360276062231",
- "address": "мкр. Кирилловский, ул. Школьная, д. 4 (школа)",
- "city_id": 5,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-30-18-06-29-cz8.jpg",
- "trainings": 0
- },
- {
- "id": 11939,
- "name": "№11939 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.89985710382462",
- "latitude": "55.37361342926931",
- "address": "мкр. Кирилловский, ул. Школьная, д. 4 (школа)",
- "city_id": 5,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/06/2022-06-30-18-06-38-_sr.jpg",
- "trainings": 0
- },
- {
- "id": 11940,
- "name": "№11940 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.78774053603411",
- "latitude": "59.69659112673903",
- "address": "Дачная улица, 6",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-01-13-07-34-gso.jpg",
- "trainings": 1
- },
- {
- "id": 11941,
- "name": "№11941 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.699473274842674",
- "latitude": "55.8114471",
- "address": "Краснобогатырская 24",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-02-15-07-51-qpp.jpg",
- "trainings": 0
- },
- {
- "id": 11942,
- "name": "№11942 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "28.230561017990116",
- "latitude": "36.44002287639274",
- "address": "Navar.Kodrigkton",
- "city_id": 9220,
- "country_id": 64,
- "comments_count": 4,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-02-17-07-35-y_0.jpeg",
- "trainings": 1
- },
- {
- "id": 11943,
- "name": "№11943 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "36.13298892931198",
- "latitude": "51.6744358430365",
- "address": "1я Ламоновская парк оз. Ермошкино",
- "city_id": 70,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-03-19-07-10-gvd.jpg",
- "trainings": 1
- },
- {
- "id": 11944,
- "name": "№11944 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "43.0183686",
- "latitude": "44.0383868",
- "address": "Улица пальмиро Тольятти, 65",
- "city_id": 735,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-03-19-07-22-mnb.jpg",
- "trainings": 0
- },
- {
- "id": 11945,
- "name": "№11945 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "34.143334804134575",
- "latitude": "60.9127196716712",
- "address": "проспект Ленина 33/2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-05-21-07-36-6kk.jpg",
- "trainings": 0
- },
- {
- "id": 11946,
- "name": "№11946 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "49.184090495109565",
- "latitude": "55.80381964556579",
- "address": "Сибирский тракт 3",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-07-12-07-03-eui.jpg",
- "trainings": 0
- },
- {
- "id": 11947,
- "name": "№11947 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "42.72677432833007",
- "latitude": "43.94266789656872",
- "address": "Промышленная 3а",
- "city_id": 561,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-07-16-07-57-ptk.jpeg",
- "trainings": 0
- },
- {
- "id": 11948,
- "name": "№11948 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.10010023763024",
- "latitude": "47.48053832412259",
- "address": " Парк на ул. Мацоты",
- "city_id": 789,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-08-08-07-29-xwu.jpg",
- "trainings": 0
- },
- {
- "id": 11949,
- "name": "№11949 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.099407005963876",
- "latitude": "47.480657443470974",
- "address": " Парк на ул. Мацоты",
- "city_id": 789,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-08-08-07-18-u-6.jpg",
- "trainings": 0
- },
- {
- "id": 11950,
- "name": "№11950 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "42.71735429763794",
- "latitude": "43.91189149276992",
- "address": "Проспект Победы 25",
- "city_id": 561,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-08-11-07-57-vvd.jpeg",
- "trainings": 0
- },
- {
- "id": 11951,
- "name": "№11951 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "64.0860895845994",
- "latitude": "67.51639030765358",
- "address": "ул. Пирогова, д. 1-Б",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-08-19-07-32-hwq.jpg",
- "trainings": 0
- },
- {
- "id": 11952,
- "name": "№11952 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "64.07009741729587",
- "latitude": "67.52336444422842",
- "address": "ул. Суворова, СОШ #13",
- "city_id": 753,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-08-19-07-22-vuo.jpg",
- "trainings": 0
- },
- {
- "id": 11954,
- "name": "№11954 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.47370433866309",
- "latitude": "55.78573476532936",
- "address": "ул. Маршала Тухачевского 32к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-10-08-07-49-chn.jpeg",
- "trainings": 0
- },
- {
- "id": 11955,
- "name": "№11955 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.65215265733553",
- "latitude": "55.86988572403511",
- "address": "Чукотский проезд ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-10-14-07-54-gb6.jpg",
- "trainings": 0
- },
- {
- "id": 11957,
- "name": "№11957 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "20.98719597794116",
- "latitude": "52.197005140295005",
- "address": "Park Wyględowski, Białej Floty 8, 02-654 Warszawa",
- "city_id": 7596,
- "country_id": 16,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-10-22-07-19-hie.png",
- "trainings": 0
- },
- {
- "id": 11958,
- "name": "№11958 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-95.63984155665823",
- "latitude": "29.894323101116214",
- "address": "Copperfield Middlegate Village, Houston, TX",
- "city_id": 8843,
- "country_id": 18,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-10-22-07-34-zq6.jpg",
- "trainings": 1
- },
- {
- "id": 11959,
- "name": "№11959 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "40.47240771353245",
- "latitude": "56.16903648071412",
- "address": "улица Комиссарова, 35А",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-11-10-07-04-amj.jpg",
- "trainings": 0
- },
- {
- "id": 11960,
- "name": "№11960 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-74.07838166666666",
- "latitude": "40.71287866666667",
- "address": "72 Virginia avenue",
- "city_id": 9221,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-11-16-07-07-kgi.jpeg",
- "trainings": 1
- },
- {
- "id": 11961,
- "name": "№11961 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "40.4821065813303",
- "latitude": "56.17099471417084",
- "address": "улица Юбилейная, 70",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-12-16-07-40-s_e.jpg",
- "trainings": 0
- },
- {
- "id": 11962,
- "name": "№11962 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.60019710659981",
- "latitude": "55.119926442867886",
- "address": "проспект Маркса, 67",
- "city_id": 796,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-13-17-07-37-lvm.jpg",
- "trainings": 0
- },
- {
- "id": 11963,
- "name": "№11963 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.82205998897553",
- "latitude": "55.92737189175697",
- "address": "Грабина 13",
- "city_id": 63,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-13-19-07-59-mwe.jpg",
- "trainings": 1
- },
- {
- "id": 11964,
- "name": "№11964 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.243171384482736",
- "latitude": "60.02420715378356",
- "address": "Комендантский 37 к1 ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-13-21-07-20-u7o.jpeg",
- "trainings": 1
- },
- {
- "id": 11965,
- "name": "№11965 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.21363114499764",
- "latitude": "59.988616968184694",
- "address": "Яхтенная улица 8к1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-13-21-07-47-8pa.jpg",
- "trainings": 0
- },
- {
- "id": 11966,
- "name": "№11966 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "56.338657736778266",
- "latitude": "58.00153201970331",
- "address": "Агатовая 32",
- "city_id": 100,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-13-22-07-38-i-h.jpg",
- "trainings": 1
- },
- {
- "id": 11967,
- "name": "№11967 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.36480303502886",
- "latitude": "45.2829636203667",
- "address": "парк им. Пушкина ",
- "city_id": 7997,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-14-16-07-36-pme.jpg",
- "trainings": 0
- },
- {
- "id": 11968,
- "name": "№11968 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "49.17249262332917",
- "latitude": "55.75721072778916",
- "address": "Комарова",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-14-17-07-29-s60.jpeg",
- "trainings": 0
- },
- {
- "id": 11969,
- "name": "№11969 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "82.93441724723381",
- "latitude": "54.98704545577841",
- "address": "Лес",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-15-17-07-31-qq1.jpg",
- "trainings": 0
- },
- {
- "id": 11970,
- "name": "№11970 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "82.91151072222421",
- "latitude": "54.996542722850315",
- "address": "Стартовая 1",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-15-17-07-40-xti.jpg",
- "trainings": 0
- },
- {
- "id": 11971,
- "name": "№11971 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.028654741547097",
- "latitude": "52.39138512678045",
- "address": "Ильича, 51",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-16-16-07-29-9eb.jpg",
- "trainings": 1
- },
- {
- "id": 11972,
- "name": "№11972 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "31.01963805467955",
- "latitude": "52.35624249499746",
- "address": "Жемчужная, 3",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-16-22-07-30-l12.jpg",
- "trainings": 0
- },
- {
- "id": 11973,
- "name": "№11973 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "31.0199037390186",
- "latitude": "52.35490875341014",
- "address": "Кристалловская, 20",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-16-22-07-36-nwf.jpg",
- "trainings": 0
- },
- {
- "id": 11975,
- "name": "№11975 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "31.030073761940002",
- "latitude": "52.39377057254813",
- "address": "Ильича, 20",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-18-08-07-40-zvo.jpg",
- "trainings": 1
- },
- {
- "id": 11976,
- "name": "№11976 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "31.01809233427048",
- "latitude": "52.43072196265843",
- "address": "ул. Артёма, 4 А",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-18-08-07-00-shv.jpg",
- "trainings": 0
- },
- {
- "id": 11977,
- "name": "№11977 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.76217588782311",
- "latitude": "52.59098370328059",
- "address": "Брянская область, Трубчевский район, Трубчевск, ул. Володарского, 4В",
- "city_id": 7430,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-18-19-07-10-ouy.jpg",
- "trainings": 1
- },
- {
- "id": 11978,
- "name": "№11978 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.68571617448108",
- "latitude": "55.87517377001204",
- "address": "Парк Торфянка",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-20-15-07-30-n-z.jpg",
- "trainings": 0
- },
- {
- "id": 11979,
- "name": "№11979 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-74.06897664070131",
- "latitude": "40.71152018943996",
- "address": "Berry Lane Park",
- "city_id": 9221,
- "country_id": 18,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-20-17-07-09-vvm.jpeg",
- "trainings": 1
- },
- {
- "id": 11980,
- "name": "№11980 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.47755990177393",
- "latitude": "56.17102887177504",
- "address": "улица Егорова, 10А",
- "city_id": 17,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-21-21-07-05-co7.jpg",
- "trainings": 0
- },
- {
- "id": 11981,
- "name": "№11981 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.48178958876452",
- "latitude": "55.788174618371706",
- "address": "ул. Маршала Тухачевского",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-21-23-07-24-y5v.jpg",
- "trainings": 0
- },
- {
- "id": 11982,
- "name": "№11982 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "-73.98043155670167",
- "latitude": "40.72677093147629",
- "address": "Tompkins square park",
- "city_id": 655,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-22-00-07-29-vqo.jpeg",
- "trainings": 1
- },
- {
- "id": 11984,
- "name": "№11984 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "132.90033418504828",
- "latitude": "42.84838651687139",
- "address": "Северный проспект 29",
- "city_id": 679,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-22-04-07-38-tvm.jpg",
- "trainings": 1
- },
- {
- "id": 11985,
- "name": "№11985 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "65.32465710784892",
- "latitude": "55.42961087711194",
- "address": "ЦПКиО",
- "city_id": 601,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-23-06-07-33-es2.jpeg",
- "trainings": 0
- },
- {
- "id": 11986,
- "name": "№11986 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "94.7084113",
- "latitude": "55.9797311",
- "address": "Сурикова 23",
- "city_id": 7940,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-23-08-07-04-w8r.jpg",
- "trainings": 1
- },
- {
- "id": 11987,
- "name": "№11987 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "131.9061005149164",
- "latitude": "43.16126554491832",
- "address": "Волжская улица ",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-23-13-07-12-sen.jpg",
- "trainings": 1
- },
- {
- "id": 11988,
- "name": "№11988 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "29.09224866948306",
- "latitude": "59.898874290792136",
- "address": "улица Соколова, 4",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-23-15-07-22-n11.jpg",
- "trainings": 0
- },
- {
- "id": 11989,
- "name": "№11989 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.40079237535793",
- "latitude": "59.96039455723658",
- "address": "Свердловская набережная",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-25-14-07-32-2dg.jpg",
- "trainings": 0
- },
- {
- "id": 11990,
- "name": "№11990 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-74.04437541961671",
- "latitude": "40.70664458191497",
- "address": "Columbus monument",
- "city_id": 9221,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-27-01-07-58-zys.jpeg",
- "trainings": 1
- },
- {
- "id": 11991,
- "name": "№11991 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.34336388111115",
- "latitude": "60.01391506606731",
- "address": "пр. Мориса Тореза",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-27-18-07-01-39u.jpg",
- "trainings": 0
- },
- {
- "id": 11992,
- "name": "№11992 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.69063028693199",
- "latitude": "47.288535394616346",
- "address": "бульвар Комарова, 8",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-28-09-07-14-4tk.jpg",
- "trainings": 1
- },
- {
- "id": 11993,
- "name": "№11993 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.342352134157412",
- "latitude": "60.01352959023753",
- "address": "Манчестерская улица",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-28-20-07-45-z6l.jpg",
- "trainings": 0
- },
- {
- "id": 11994,
- "name": "№11994 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "50.10087647976376",
- "latitude": "40.521833150000006",
- "address": "26 saylı məktəb / buzovna ",
- "city_id": 358,
- "country_id": 2,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-29-18-07-39-mrn.jpeg",
- "trainings": 0
- },
- {
- "id": 11996,
- "name": "№11996 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.449347673165256",
- "latitude": "55.80258940155683",
- "address": "Живописная улица 52 с1Е",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-31-07-07-41-zip.jpg",
- "trainings": 0
- },
- {
- "id": 11997,
- "name": "№11997 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.44904551906165",
- "latitude": "55.80220998358453",
- "address": "Живописная улица 52 с1Е",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-31-07-07-05-azz.jpg",
- "trainings": 0
- },
- {
- "id": 11998,
- "name": "№11998 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.77275025844575",
- "latitude": "55.805188410809954",
- "address": "Никитинская 31",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/07/2022-07-31-11-07-42-jnr.jpg",
- "trainings": 0
- },
- {
- "id": 11999,
- "name": "№11999 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "24.175368806686404",
- "latitude": "56.91170388314075",
- "address": "Rīga, Maskacas iela 254 k-6",
- "city_id": 429,
- "country_id": 13,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-03-02-08-31-ews.jpg",
- "trainings": 1
- },
- {
- "id": 12000,
- "name": "№12000 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "60.67452605813741",
- "latitude": "55.755025793078495",
- "address": "бульвар Гайдара, 26 96",
- "city_id": 7427,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-05-16-08-18-fyj.jpg",
- "trainings": 1
- },
- {
- "id": 12001,
- "name": "№12001 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.95791912847866",
- "latitude": "55.827727454619996",
- "address": "Московский бульвар 6А",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-05-20-08-46-vla.jpg",
- "trainings": 1
- },
- {
- "id": 12002,
- "name": "№12002 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.959892",
- "latitude": "44.839203",
- "address": "Городской Округ Судак",
- "city_id": 8397,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-06-13-08-28-jtf.jpg",
- "trainings": 0
- },
- {
- "id": 12003,
- "name": "№12003 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.426493167877204",
- "latitude": "55.76004203694879",
- "address": "Крылатские холмы",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-07-15-08-29-wil.jpeg",
- "trainings": 0
- },
- {
- "id": 12004,
- "name": "№12004 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.964480",
- "latitude": "44.843400",
- "address": "улица Ушакова",
- "city_id": 8397,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-07-19-08-30-aja.jpg",
- "trainings": 0
- },
- {
- "id": 12005,
- "name": "№12005 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "34.964697",
- "latitude": "44.841098",
- "address": "Набережная улица",
- "city_id": 8397,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-07-19-08-24-ir_.jpg",
- "trainings": 0
- },
- {
- "id": 12006,
- "name": "№12006 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "23.274662196636204",
- "latitude": "42.712357414183174",
- "address": "Западна порта към Западен парк",
- "city_id": 7439,
- "country_id": 39,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-07-20-08-34-kec.jpg",
- "trainings": 0
- },
- {
- "id": 12007,
- "name": "№12007 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.136026442050937",
- "latitude": "59.84822762620977",
- "address": "Петергофское шоссе, 57",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-08-12-08-07-mwa.jpg",
- "trainings": 0
- },
- {
- "id": 12008,
- "name": "№12008 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.178239047527317",
- "latitude": "59.853769763089474",
- "address": "Доблести, 24 к1",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-08-12-08-17-ywo.jpg",
- "trainings": 0
- },
- {
- "id": 12009,
- "name": "№12009 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.65810191631318",
- "latitude": "55.81367126990291",
- "address": "Павла Корчагина 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-08-16-08-37-hrf.jpg",
- "trainings": 0
- },
- {
- "id": 12010,
- "name": "№12010 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.414235472679145",
- "latitude": "55.753977713002215",
- "address": "Крылатские холмы",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-09-10-08-15-n8u.jpeg",
- "trainings": 0
- },
- {
- "id": 12011,
- "name": "№12011 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.417995929718025",
- "latitude": "55.755798014798096",
- "address": "Крылатские холмы",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-09-10-08-00-4am.jpeg",
- "trainings": 0
- },
- {
- "id": 12012,
- "name": "№12012 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "127.5227710604668",
- "latitude": "50.269399689538545",
- "address": "Красноармейская 130",
- "city_id": 625,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-09-11-08-22-s25.png",
- "trainings": 0
- },
- {
- "id": 12013,
- "name": "№12013 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.82527327537537",
- "latitude": "55.80223374724248",
- "address": "Сиреневый бульвар 58",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-09-18-08-27-pne.jpg",
- "trainings": 0
- },
- {
- "id": 12014,
- "name": "№12014 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "39.69216853380204",
- "latitude": "43.629356234291194",
- "address": "Мамайка, пляж Куба",
- "city_id": 129,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-09-23-08-50-xna.jpg",
- "trainings": 0
- },
- {
- "id": 12015,
- "name": "№12015 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.23006176061973",
- "latitude": "55.1705707",
- "address": "Строителей 18к1",
- "city_id": 373,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-10-18-08-46-hxo.jpg",
- "trainings": 0
- },
- {
- "id": 12016,
- "name": "№12016 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.64338319871953",
- "latitude": "60.03154825",
- "address": "Песчанка",
- "city_id": 25,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-12-13-08-19-itm.jpg",
- "trainings": 1
- },
- {
- "id": 12017,
- "name": "№12017 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "76.89093880355358",
- "latitude": "43.188398432595726",
- "address": "Большая Алматинка набережная",
- "city_id": 404,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-12-16-08-30-glp.jpg",
- "trainings": 0
- },
- {
- "id": 12018,
- "name": "№12018 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.19266288776254",
- "latitude": "55.41086686768205",
- "address": "Москва, поселение Михайло-Ярцевское, квартал № 92",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-13-14-08-23-rnc.jpg",
- "trainings": 1
- },
- {
- "id": 12019,
- "name": "№12019 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-71.55194878578187",
- "latitude": "-33.00919432042541",
- "address": "14 norte ",
- "city_id": 9222,
- "country_id": 56,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-14-03-08-22-i_j.jpeg",
- "trainings": 1
- },
- {
- "id": 12020,
- "name": "№12020 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.77580819424577",
- "latitude": "55.80547297840658",
- "address": "Щёлковский проезд 7А с2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-15-14-08-59-cj7.jpg",
- "trainings": 0
- },
- {
- "id": 12021,
- "name": "№12021 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.95888475875373",
- "latitude": "55.79812179283432",
- "address": "проспект Ленина 61",
- "city_id": 9,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-15-15-08-29-ezl.jpg",
- "trainings": 0
- },
- {
- "id": 12022,
- "name": "№12022 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.77569286445668",
- "latitude": "55.80723236472656",
- "address": "Щёлковский проезд 13А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-15-18-08-50-meq.jpg",
- "trainings": 0
- },
- {
- "id": 12023,
- "name": "№12023 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "83.29864272425978",
- "latitude": "55.47224155069762",
- "address": "Лесной переулок 12",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-16-08-08-59-a3k.jpg",
- "trainings": 1
- },
- {
- "id": 12025,
- "name": "№12025 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "30.487982722858593",
- "latitude": "59.9418923011171",
- "address": "проспект Наставников 14 к1 литБ",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-16-22-08-52-lva.jpg",
- "trainings": 0
- },
- {
- "id": 12026,
- "name": "№12026 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.492137286103734",
- "latitude": "59.94768589612246",
- "address": "проспект Наставников 25 к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-17-20-08-17-xdr.jpg",
- "trainings": 0
- },
- {
- "id": 12027,
- "name": "№12027 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-71.54929876327516",
- "latitude": "-33.000673729798486",
- "address": "25 norte ",
- "city_id": 9222,
- "country_id": 56,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-18-04-08-51-lcx.jpeg",
- "trainings": 0
- },
- {
- "id": 12028,
- "name": "№12028 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-71.5478825569153",
- "latitude": "-32.99535581636108",
- "address": "Guardiamarina",
- "city_id": 9222,
- "country_id": 56,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-18-05-08-18-qub.jpeg",
- "trainings": 1
- },
- {
- "id": 12029,
- "name": "№12029 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "-71.54807567596437",
- "latitude": "-32.99302519153064",
- "address": "Guardiamarina",
- "city_id": 9222,
- "country_id": 56,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-18-05-08-12-ojh.jpeg",
- "trainings": 1
- },
- {
- "id": 12030,
- "name": "№12030 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "41.00486383777205",
- "latitude": "57.02909467281497",
- "address": " Парк 1905 г аттракционы",
- "city_id": 44,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-18-07-08-19-rby.jpg",
- "trainings": 1
- },
- {
- "id": 12031,
- "name": "№12031 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "1.2610721233087132",
- "latitude": "41.114382892198954",
- "address": "Таррагона, пляж Миракл",
- "city_id": 7790,
- "country_id": 10,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-18-10-08-46-0md.jpg",
- "trainings": 1
- },
- {
- "id": 12032,
- "name": "№12032 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "30.4254486",
- "latitude": "54.5119008",
- "address": "Стадион льнокомбинат",
- "city_id": 7386,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-18-18-08-15-py5.jpg",
- "trainings": 0
- },
- {
- "id": 12033,
- "name": "№12033 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "37.55759995870904",
- "latitude": "55.70501135325578",
- "address": "Воробьевы горы",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-18-20-08-57-1an.jpg",
- "trainings": 0
- },
- {
- "id": 12034,
- "name": "№12034 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "133.04695487022403",
- "latitude": "42.76997463680252",
- "address": "п. Врангель, пляж \"Коровка\"",
- "city_id": 679,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-19-04-08-54-tuh.jpeg",
- "trainings": 0
- },
- {
- "id": 12035,
- "name": "№12035 Маленькая Легендарная",
- "class_id": 1,
- "type_id": 6,
- "longitude": "32.402117550373084",
- "latitude": "35.03935000858707",
- "address": "Площадка на пляже в Полисе",
- "city_id": 9219,
- "country_id": 70,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-19-11-08-47-y2t.jpg",
- "trainings": 1
- },
- {
- "id": 12036,
- "name": "№12036 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "104.27501231035312",
- "latitude": "52.289085084363386",
- "address": "улица Марата 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-19-14-08-53-dux.jpg",
- "trainings": 0
- },
- {
- "id": 12037,
- "name": "№12037 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "104.27744041206714",
- "latitude": "52.28725603786544",
- "address": "Rossiyskaya Street 23Б",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-19-15-08-37-gmf.jpg",
- "trainings": 0
- },
- {
- "id": 12038,
- "name": "№12038 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "42.23792552947999",
- "latitude": "51.19115187242136",
- "address": "ул. Пушкина, д. 11 \"А\"",
- "city_id": 8383,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-19-18-08-26-eoh.jpg",
- "trainings": 1
- },
- {
- "id": 12039,
- "name": "№12039 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "52.335334718227394",
- "latitude": "54.905987346928036",
- "address": "ул. Гафури 18",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-20-14-08-45-ly1.jpg",
- "trainings": 0
- },
- {
- "id": 12040,
- "name": "№12040 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "52.33246877789498",
- "latitude": "54.90433423008843",
- "address": "ул. Герцена 80Б",
- "city_id": 647,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-20-15-08-38-5fx.jpg",
- "trainings": 0
- },
- {
- "id": 12041,
- "name": "№12041 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.73165076971055",
- "latitude": "55.8096410872651",
- "address": "Открытое шоссе 6к9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-20-17-08-31-ueu.jpg",
- "trainings": 0
- },
- {
- "id": 12042,
- "name": "№12042 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "25.274519920349125",
- "latitude": "54.69288437829768",
- "address": "baltas tiltas ",
- "city_id": 433,
- "country_id": 14,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-20-18-08-28-w6e.jpg",
- "trainings": 0
- },
- {
- "id": 12043,
- "name": "№12043 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "30.410591594249023",
- "latitude": "59.92135388366628",
- "address": " Заневский парк",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-20-20-08-08-h_w.jpg",
- "trainings": 0
- },
- {
- "id": 12044,
- "name": "№12044 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.67349243164063",
- "latitude": "55.78801807879118",
- "address": "Старослободская 23",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-21-11-08-22-unh.jpg",
- "trainings": 0
- },
- {
- "id": 12045,
- "name": "№12045 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.67461091279984",
- "latitude": "55.78917024174194",
- "address": "Песочный переулок 2а",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-21-14-08-23-bd4.jpg",
- "trainings": 0
- },
- {
- "id": 12046,
- "name": "№12046 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "31.00951731204987",
- "latitude": "52.39378086050251",
- "address": "Пляж \"Новобелицкий\"",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-22-15-08-38-bs4.jpg",
- "trainings": 1
- },
- {
- "id": 12047,
- "name": "№12047 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.520679054578586",
- "latitude": "43.779171784681814",
- "address": "Арташатская улица 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-23-07-08-08-dyd.jpg",
- "trainings": 1
- },
- {
- "id": 12048,
- "name": "№12048 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "38.77056688070297",
- "latitude": "55.07413992781407",
- "address": "Коломна, улица Студенческая дом 21",
- "city_id": 60,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-23-20-08-50-ir0.jpg",
- "trainings": 0
- },
- {
- "id": 12049,
- "name": "№12049 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "82.95713996190122",
- "latitude": "55.17315309947517",
- "address": "Новоуральская улица 15/5",
- "city_id": 7426,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-24-02-08-20-21s.jpg",
- "trainings": 0
- },
- {
- "id": 12050,
- "name": "№12050 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.920586177670316",
- "latitude": "43.41913682031008",
- "address": "улица Бестужева 2/1А",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-24-23-08-05-n-n.jpg",
- "trainings": 1
- },
- {
- "id": 12051,
- "name": "№12051 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "49.846853613853455",
- "latitude": "40.412425930815154",
- "address": "Парк Айна Султанова",
- "city_id": 358,
- "country_id": 2,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-25-18-08-14-ldw.jpeg",
- "trainings": 0
- },
- {
- "id": 12052,
- "name": "№12052 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.68310546875",
- "latitude": "55.73638916286441",
- "address": "Парк Айна Султанова ",
- "city_id": 358,
- "country_id": 2,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-25-18-08-21-z5k.jpeg",
- "trainings": 0
- },
- {
- "id": 12053,
- "name": "№12053 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "39.7719295841109",
- "latitude": "64.54152480003978",
- "address": "Морской проспект, 69",
- "city_id": 7383,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-26-06-08-02-d0o.jpg",
- "trainings": 0
- },
- {
- "id": 12054,
- "name": "№12054 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.59417121877908",
- "latitude": "55.60006492244081",
- "address": "Кировоградская ул., 42, корп. 2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-26-15-08-20-1vh.jpg",
- "trainings": 0
- },
- {
- "id": 12055,
- "name": "№12055 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "135.05354795604944",
- "latitude": "48.53052512644425",
- "address": "улица Тихоокеанская, 136",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-27-02-08-37-rad.jpg",
- "trainings": 1
- },
- {
- "id": 12056,
- "name": "№12056 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "60.5774591",
- "latitude": "56.81070645",
- "address": "Чкалова 18",
- "city_id": 39,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-28-07-08-09-0hk.jpeg",
- "trainings": 0
- },
- {
- "id": 12057,
- "name": "№12057 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "92.80782580020197",
- "latitude": "56.01528072377139",
- "address": "Корнеева 50",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-31-13-08-24-poy.jpg",
- "trainings": 1
- },
- {
- "id": 12058,
- "name": "№12058 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "92.81796163896159",
- "latitude": "56.01503751895413",
- "address": "Менжинского 15",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/08/2022-08-31-13-08-25-dyw.jpg",
- "trainings": 1
- },
- {
- "id": 12059,
- "name": "№12059 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "46.0267674925126",
- "latitude": "51.51949357530981",
- "address": "Набережная улица, лестница",
- "city_id": 116,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-01-09-09-35-bhp.jpg",
- "trainings": 1
- },
- {
- "id": 12060,
- "name": "№12060 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "41.0136897303546",
- "latitude": "57.019091877208105",
- "address": " Школа 63 ",
- "city_id": 44,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-02-07-09-16-xns.jpg",
- "trainings": 0
- },
- {
- "id": 12061,
- "name": "№12061 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "135.08983220905066",
- "latitude": "48.53308170132269",
- "address": "улица Шатова, 4",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-02-11-09-29-qbe.jpg",
- "trainings": 0
- },
- {
- "id": 12062,
- "name": "№12062 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "124.22831654555469",
- "latitude": "13.5810479212426",
- "address": "Virac Town Center, Virac, Catanduanes",
- "city_id": 9002,
- "country_id": 55,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-02-18-09-56-d39.jpg",
- "trainings": 0
- },
- {
- "id": 12063,
- "name": "№12063 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "131.86539670464757",
- "latitude": "43.10051753655386",
- "address": "Верхнепортовая улица 41В",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-03-07-09-24-6uh.jpg",
- "trainings": 0
- },
- {
- "id": 12064,
- "name": "№12064 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "131.8770860547937",
- "latitude": "43.112557885943474",
- "address": "улица Арсеньева ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-03-09-09-46-md4.jpg",
- "trainings": 0
- },
- {
- "id": 12065,
- "name": "№12065 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.27853128690019",
- "latitude": "44.97207782701146",
- "address": "улица Верхняя дорога 151 к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-03-20-09-20-xxa.jpg",
- "trainings": 0
- },
- {
- "id": 12066,
- "name": "№12066 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "135.05387485027313",
- "latitude": "48.53128423062645",
- "address": "улица Тихоокеанская, 136",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-04-03-09-05-ajx.jpg",
- "trainings": 1
- },
- {
- "id": 12067,
- "name": "№12067 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.82583546566457",
- "latitude": "55.81589387147433",
- "address": "Хабаровская, д.5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-06-16-09-02-oya.jpg",
- "trainings": 1
- },
- {
- "id": 12069,
- "name": "№12069 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.8327647",
- "latitude": "55.72762135",
- "address": "Косинская 4к2 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-07-14-09-41-ycr.jpg",
- "trainings": 0
- },
- {
- "id": 12070,
- "name": "№12070 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.21381974325585",
- "latitude": "59.942143548226255",
- "address": "улица Кораблестроителей 16",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-07-18-09-29-nwd.jpg",
- "trainings": 0
- },
- {
- "id": 12071,
- "name": "№12071 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "39.908421635627754",
- "latitude": "59.19653214734931",
- "address": "Маршала Конева 2В",
- "city_id": 19,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-08-10-09-00-zev.jpg",
- "trainings": 0
- },
- {
- "id": 12072,
- "name": "№12072 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "49.17347967624665",
- "latitude": "55.79705849361818",
- "address": "Сеченова 5",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-08-13-09-36-s-l.jpeg",
- "trainings": 0
- },
- {
- "id": 12073,
- "name": "№12073 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "142.64922022819522",
- "latitude": "46.92443697610703",
- "address": "Троицкое, улица Советская 6",
- "city_id": 630,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-09-00-09-29-ri4.jpg",
- "trainings": 0
- },
- {
- "id": 12074,
- "name": "№12074 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "49.178946018218994",
- "latitude": "55.803720151942876",
- "address": "Новаторов, 2А",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-09-12-09-55-zix.jpeg",
- "trainings": 0
- },
- {
- "id": 12075,
- "name": "№12075 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.71511226892471",
- "latitude": "55.78587954990508",
- "address": "Малая Семёновская 15/17",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-09-19-09-51-md6.jpg",
- "trainings": 0
- },
- {
- "id": 12076,
- "name": "№12076 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "30.344657451798042",
- "latitude": "59.9867683",
- "address": "Парголовская 8",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-10-13-09-24-ive.jpg",
- "trainings": 0
- },
- {
- "id": 12077,
- "name": "№12077 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "27.481471282371793",
- "latitude": "53.87021071966192",
- "address": "Алибегова 5",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-10-20-09-32-hap.jpg",
- "trainings": 0
- },
- {
- "id": 12078,
- "name": "№12078 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "27.484080791473392",
- "latitude": "53.86932464854429",
- "address": "Проспект газеты Правда 10",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-10-20-09-36-vqx.jpg",
- "trainings": 0
- },
- {
- "id": 12079,
- "name": "№12079 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "49.16680097579957",
- "latitude": "55.787571681892075",
- "address": "Аделя Кутуя, 3А",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-10-23-09-44-43l.jpg",
- "trainings": 0
- },
- {
- "id": 12080,
- "name": "№12080 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.53184939863939",
- "latitude": "55.66381002183932",
- "address": "улица Воронцовские Пруды 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-11-13-09-14-ntf.jpg",
- "trainings": 0
- },
- {
- "id": 12081,
- "name": "№12081 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "104.1507124900818",
- "latitude": "51.52130013560758",
- "address": "мкр. Гагарина, 153",
- "city_id": 8479,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-13-01-09-07-_9e.jpg",
- "trainings": 0
- },
- {
- "id": 12082,
- "name": "№12082 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.88878194987774",
- "latitude": "54.994194581931644",
- "address": "Горский микрорайон, 84",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-14-04-09-23-qrr.jpg",
- "trainings": 1
- },
- {
- "id": 12083,
- "name": "№12083 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "36.87374353408814",
- "latitude": "55.743818084231926",
- "address": "Супонево 16",
- "city_id": 670,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-14-09-09-27-n_e.jpg",
- "trainings": 1
- },
- {
- "id": 12085,
- "name": "№12085 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.855437733232975",
- "latitude": "55.75505069760906",
- "address": "Ulitsa Voytovicha, 3",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-14-13-09-11-tvk.jpg",
- "trainings": 1
- },
- {
- "id": 12086,
- "name": "№12086 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.85153143107891",
- "latitude": "55.753093002068006",
- "address": "Ulitsa Dzerzhinskogo, 5 корпус 2",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-14-13-09-35-svh.jpg",
- "trainings": 1
- },
- {
- "id": 12087,
- "name": "№12087 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.54210906547356",
- "latitude": "55.46641657958931",
- "address": "Микрорайон Родники 8",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-14-21-09-20-6ix.jpg",
- "trainings": 0
- },
- {
- "id": 12088,
- "name": "№12088 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "135.10695576667788",
- "latitude": "48.52107433696522",
- "address": "Краснодарский переулок, 19А",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-16-06-09-18-ryj.jpg",
- "trainings": 0
- },
- {
- "id": 12089,
- "name": "№12089 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.94469557932564",
- "latitude": "56.42183740606012",
- "address": "улица Баграмяна 18",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-16-16-09-37-jsj.jpg",
- "trainings": 0
- },
- {
- "id": 12090,
- "name": "№12090 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.960537493228916",
- "latitude": "52.45517090734335",
- "address": "г. Гомель, пр-т Космонавтов, 1Б",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-20-15-09-14-tro.jpg",
- "trainings": 0
- },
- {
- "id": 12091,
- "name": "№12091 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.64879632741213",
- "latitude": "55.88863198590533",
- "address": "Широкая улица, 1 корпус 1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-20-16-09-22-y4s.jpg",
- "trainings": 0
- },
- {
- "id": 12092,
- "name": "№12092 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "40.3389397859246",
- "latitude": "43.16071478551323",
- "address": "Тополевая улица",
- "city_id": 392,
- "country_id": 8,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-20-18-09-58-ueo.jpg",
- "trainings": 0
- },
- {
- "id": 12093,
- "name": "№12093 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "33.69198918342591",
- "latitude": "67.60767163980218",
- "address": "Россия, Мурманская область, Кировск, улица 50 лет Октября",
- "city_id": 56,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-20-20-09-25-5zi.jpg",
- "trainings": 0
- },
- {
- "id": 12094,
- "name": "№12094 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.70969420671463",
- "latitude": "55.806269218965156",
- "address": "Краснобогатырская 79",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-21-13-09-35-24u.jpg",
- "trainings": 0
- },
- {
- "id": 12095,
- "name": "№12095 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.86275077611208",
- "latitude": "55.766344206563325",
- "address": "Prospekt Mira, 29",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-21-15-09-51-ths.jpg",
- "trainings": 0
- },
- {
- "id": 12096,
- "name": "№12096 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.73925215005875",
- "latitude": "55.81227868853418",
- "address": "Тюменский проезд 3к1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-21-15-09-12-uot.jpg",
- "trainings": 0
- },
- {
- "id": 12097,
- "name": "№12097 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.740365266799934",
- "latitude": "55.810954861865966",
- "address": "Тюменский проезд 3к5",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-21-16-09-38-vaz.jpg",
- "trainings": 0
- },
- {
- "id": 12098,
- "name": "№12098 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.8792474269867",
- "latitude": "55.744089847223286",
- "address": "Супонево",
- "city_id": 670,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-22-14-09-03-rga.jpg",
- "trainings": 0
- },
- {
- "id": 12099,
- "name": "№12099 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-82.37073540687561",
- "latitude": "23.13152007723789",
- "address": "Avenida Salvador Allende / Marquez Gonzalez",
- "city_id": 9225,
- "country_id": 84,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-25-05-09-44-xos.jpeg",
- "trainings": 1
- },
- {
- "id": 12100,
- "name": "№12100 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.85705577582121",
- "latitude": "55.678152865799795",
- "address": "Привольная улица, 6532",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-25-22-09-45-v7t.jpg",
- "trainings": 1
- },
- {
- "id": 12101,
- "name": "№12101 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.85930648446083",
- "latitude": "55.684070580354906",
- "address": "улица Тарханская, 4 корпус 2 строение 3",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-25-23-09-42-egg.jpg",
- "trainings": 1
- },
- {
- "id": 12102,
- "name": "№12102 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-82.37961888313295",
- "latitude": "23.131273419588947",
- "address": " Quinta de los molinos",
- "city_id": 9225,
- "country_id": 84,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-26-22-09-18-fnc.jpg",
- "trainings": 0
- },
- {
- "id": 12103,
- "name": "№12103 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "49.20893847942352",
- "latitude": "55.752084871290855",
- "address": "Проспект Победы, 33",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-27-13-09-59-8k4.jpeg",
- "trainings": 0
- },
- {
- "id": 12104,
- "name": "№12104 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.8534334525466",
- "latitude": "55.763066677316225",
- "address": "Ulitsa Lesnaya, 8А",
- "city_id": 111,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-28-22-09-50-1j6.jpg",
- "trainings": 0
- },
- {
- "id": 12105,
- "name": "№12105 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.66633311536376",
- "latitude": "55.70298712738558",
- "address": "улица Трофимова 2/1",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-30-14-09-36-c2a.jpg",
- "trainings": 0
- },
- {
- "id": 12106,
- "name": "№12106 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "63.65132882507738",
- "latitude": "53.21057862345805",
- "address": "Набережная 56/10",
- "city_id": 416,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-30-14-09-40-pai.jpg",
- "trainings": 0
- },
- {
- "id": 12107,
- "name": "№12107 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "42.25158870220185",
- "latitude": "51.18277634358319",
- "address": " Ул.Советская д.8",
- "city_id": 8383,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-30-17-09-54-wdk.jpg",
- "trainings": 0
- },
- {
- "id": 12108,
- "name": "№12108 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.66629741565153",
- "latitude": "55.703181998511",
- "address": "улица Лобанова 9 ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/09/2022-09-30-22-09-14-xoy.jpg",
- "trainings": 0
- },
- {
- "id": 12109,
- "name": "№12109 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "135.04393726587298",
- "latitude": "48.481073823439274",
- "address": "Хабаровск",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-01-09-10-37-qi_.jpg",
- "trainings": 0
- },
- {
- "id": 12127,
- "name": "№12127 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.826455377042286",
- "latitude": "41.686727857979314",
- "address": "Ialbuzi Street, 4",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-02-01-10-27-ap2.jpg",
- "trainings": 0
- },
- {
- "id": 12128,
- "name": "№12128 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "135.04299983382225",
- "latitude": "48.5369017806835",
- "address": "улица Профессора Даниловского, 24а",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-02-11-10-20-u3d.jpg",
- "trainings": 0
- },
- {
- "id": 12131,
- "name": "№12131 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.86868474632501",
- "latitude": "41.69002129345335",
- "address": "17 Shindiseli Gmiri Street",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-02-12-10-42-v8o.jpg",
- "trainings": 0
- },
- {
- "id": 12132,
- "name": "№12132 Большая Советская",
- "class_id": 3,
- "type_id": 1,
- "longitude": "73.07610035124628",
- "latitude": "49.80219317657786",
- "address": "Ул. Воинов-Интернационалистов 29/2",
- "city_id": 412,
- "country_id": 11,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-02-13-10-15-0wk.jpg",
- "trainings": 0
- },
- {
- "id": 12133,
- "name": "№12133 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "44.805649146437645",
- "latitude": "41.700633801653964",
- "address": "PR23+8XQ",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-02-15-10-53-swq.jpg",
- "trainings": 0
- },
- {
- "id": 12134,
- "name": "№12134 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.66055594730943",
- "latitude": "55.69967546989135",
- "address": "улица Лобанова 12",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-02-18-10-58-pv8.jpg",
- "trainings": 0
- },
- {
- "id": 12135,
- "name": "№12135 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "44.749348908662796",
- "latitude": "41.709420947761956",
- "address": "Ilia Chavchavadze Avenue, 76",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-02-18-10-13-cit.jpg",
- "trainings": 0
- },
- {
- "id": 12136,
- "name": "№12136 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "82.8635483980179",
- "latitude": "54.990698753533096",
- "address": "Школа №132",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-03-17-10-40-kg5.jpg",
- "trainings": 0
- },
- {
- "id": 12137,
- "name": "№12137 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.881130531430244",
- "latitude": "41.695299602265194",
- "address": "Ramanoz Khomleli Street, 4",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-03-19-10-42-skp.jpg",
- "trainings": 0
- },
- {
- "id": 12138,
- "name": "№12138 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.88179571926594",
- "latitude": "41.698535021723735",
- "address": "Saint Mary's Church",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-05-17-10-56-qdo.jpg",
- "trainings": 0
- },
- {
- "id": 12139,
- "name": "№12139 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.880777820944786",
- "latitude": "41.69855504857347",
- "address": "35, 35",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-05-17-10-06-kva.jpg",
- "trainings": 0
- },
- {
- "id": 12140,
- "name": "№12140 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "30.953389406204227",
- "latitude": "52.41154275966927",
- "address": "г. Гомель, Речицкий проспект, 43. На месте бассейна \"Дельфин\".",
- "city_id": 374,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-08-22-10-03-4vw.jpg",
- "trainings": 0
- },
- {
- "id": 12141,
- "name": "№12141 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-82.38540172576904",
- "latitude": "23.127741232301133",
- "address": "Museo nacional del deporte ",
- "city_id": 9225,
- "country_id": 84,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-09-02-10-36-xtg.jpeg",
- "trainings": 0
- },
- {
- "id": 12142,
- "name": "№12142 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "37.30064526203768",
- "latitude": "55.73716121730962",
- "address": " ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-09-14-10-12-b3y.jpg",
- "trainings": 0
- },
- {
- "id": 12143,
- "name": "№12143 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.85958937555551",
- "latitude": "41.691904790349184",
- "address": "30, 30",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-10-17-10-49-9lx.jpg",
- "trainings": 0
- },
- {
- "id": 12144,
- "name": "№12144 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "28.976705127570316",
- "latitude": "41.00175535058278",
- "address": "Catladikapi parki",
- "city_id": 8718,
- "country_id": 62,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-12-09-10-58-rgb.jpg",
- "trainings": 1
- },
- {
- "id": 12145,
- "name": "№12145 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "49.20552670955659",
- "latitude": "55.75340715316183",
- "address": "Рихарда Зорге, 47",
- "city_id": 48,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-12-16-10-28-zos.jpeg",
- "trainings": 0
- },
- {
- "id": 12146,
- "name": "№12146 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.46679436415434",
- "latitude": "55.55514646812666",
- "address": "улица Василия Ощепкова, 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-12-21-10-19-z0u.jpg",
- "trainings": 0
- },
- {
- "id": 12147,
- "name": "№12147 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "18.875128211208878",
- "latitude": "42.281467722795966",
- "address": " StreetWorkout Place https://maps.app.goo.gl/jPiizss6HqS4nZAx6?g_st=ic",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-13-19-10-24-5c6.jpg",
- "trainings": 1
- },
- {
- "id": 12148,
- "name": "№12148 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "135.03777489066124",
- "latitude": "48.53812631186082",
- "address": "улица Стрельникова, 12",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-16-04-10-23-shp.jpg",
- "trainings": 0
- },
- {
- "id": 12150,
- "name": "№12150 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "135.07947653532028",
- "latitude": "48.48378867882075",
- "address": "улица Карла Маркса, 64",
- "city_id": 144,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-17-03-10-40-apm.jpg",
- "trainings": 0
- },
- {
- "id": 12151,
- "name": "№12151 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.24873733481218",
- "latitude": "37.84082618679125",
- "address": "Kadınlar Denizi",
- "city_id": 9226,
- "country_id": 62,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-20-15-10-43-or6.jpg",
- "trainings": 1
- },
- {
- "id": 12152,
- "name": "№12152 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.85493540763856",
- "latitude": "41.69329853754047",
- "address": "ბეგიაშვილის ქუჩა",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-20-16-10-20-xkw.jpg",
- "trainings": 0
- },
- {
- "id": 12153,
- "name": "№12153 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.85737185925245",
- "latitude": "41.69672506942902",
- "address": "8, 8",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-20-16-10-56-rwl.jpg",
- "trainings": 0
- },
- {
- "id": 12154,
- "name": "№12154 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "36.87671005725861",
- "latitude": "55.74482301809756",
- "address": "Супонево",
- "city_id": 670,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-20-17-10-16-txt.jfif",
- "trainings": 1
- },
- {
- "id": 12155,
- "name": "№12155 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "33.57077927655885",
- "latitude": "44.606018565203456",
- "address": "Второй Обороны, 116",
- "city_id": 535,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-21-14-10-51-t1e.jpg",
- "trainings": 0
- },
- {
- "id": 12156,
- "name": "№12156 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "29.11962552774275",
- "latitude": "36.65057201108545",
- "address": "Fethiye Parki Ici Yolu ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-24-16-10-22-gd0.jpg",
- "trainings": 1
- },
- {
- "id": 12157,
- "name": "№12157 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-81.27046644687654",
- "latitude": "23.143260456578282",
- "address": "Parque de diversiones ",
- "city_id": 9227,
- "country_id": 84,
- "comments_count": 5,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-27-16-10-48-z7d.jpeg",
- "trainings": 1
- },
- {
- "id": 12158,
- "name": "№12158 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.23168271778377",
- "latitude": "54.87925975633241",
- "address": "Фестивальный проезд 17",
- "city_id": 7401,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles//img/avatar_default.jpg",
- "trainings": 0
- },
- {
- "id": 12161,
- "name": "№12161 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.85673619668333",
- "latitude": "55.67395905082859",
- "address": "Сосновая улица вл10/2 к9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-28-22-10-14-k7a.jpg",
- "trainings": 0
- },
- {
- "id": 12162,
- "name": "№12162 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.85626327875299",
- "latitude": "55.6737565760414",
- "address": "Сосновая улица вл10/2 к10",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-29-15-10-19-xnc.jpg",
- "trainings": 0
- },
- {
- "id": 12163,
- "name": "№12163 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "131.94272711352573",
- "latitude": "43.21156324815877",
- "address": "улица Серова ",
- "city_id": 16,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-08-10-09-e9f.jpg",
- "trainings": 1
- },
- {
- "id": 12164,
- "name": "№12164 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.245918810367584",
- "latitude": "55.67842225033158",
- "address": "улица Северная, 5",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-15-10-53-lyy.jpg",
- "trainings": 1
- },
- {
- "id": 12165,
- "name": "№12165 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.24720627069473",
- "latitude": "55.67838633250119",
- "address": "улица Северная, дом 8",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-15-10-04-ng4.jpg",
- "trainings": 1
- },
- {
- "id": 12166,
- "name": "№12166 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.247910015285015",
- "latitude": "55.67839068045084",
- "address": "улица Северная, 6",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-15-10-41-u-o.jpg",
- "trainings": 1
- },
- {
- "id": 12167,
- "name": "№12167 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.24770952016115",
- "latitude": "55.678722068407964",
- "address": "улица Северная, 12",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-15-10-16-p7s.jpg",
- "trainings": 1
- },
- {
- "id": 12168,
- "name": "№12168 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "37.25055534392595",
- "latitude": "55.6783458776422",
- "address": "улица Северная, 20",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 2,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-15-10-21-ixo.jpg",
- "trainings": 1
- },
- {
- "id": 12169,
- "name": "№12169 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.251715399324894",
- "latitude": "55.67948275667053",
- "address": "улица Северная, 26",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-15-10-47-qor.jpg",
- "trainings": 1
- },
- {
- "id": 12170,
- "name": "№12170 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.25396476686001",
- "latitude": "55.67975175397423",
- "address": "улица Любы Новоселовой бульвар, 8",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-15-10-54-c3a.jpg",
- "trainings": 1
- },
- {
- "id": 12171,
- "name": "№12171 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.25617457181215",
- "latitude": "55.67935610234515",
- "address": "улица Любы Новоселовой бульвар, дом 12а",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-15-10-06-lhe.jpg",
- "trainings": 1
- },
- {
- "id": 12172,
- "name": "№12172 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.2531346231699",
- "latitude": "55.681596122060625",
- "address": "Неизвестная дорога",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-15-10-27-kua.jpg",
- "trainings": 1
- },
- {
- "id": 12173,
- "name": "№12173 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.24986735731363",
- "latitude": "55.680099954342566",
- "address": "улица Северная, 30",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-15-10-22-nlt.jpg",
- "trainings": 1
- },
- {
- "id": 12174,
- "name": "№12174 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.24819902330637",
- "latitude": "55.679599958815245",
- "address": "улица Северная, 14",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-16-10-05-pgk.jpg",
- "trainings": 1
- },
- {
- "id": 12175,
- "name": "№12175 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.248868234455585",
- "latitude": "55.67818935097132",
- "address": "улица Садовая, 28а",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-16-10-51-3gm.jpg",
- "trainings": 1
- },
- {
- "id": 12176,
- "name": "№12176 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.24987708032131",
- "latitude": "55.677265490579536",
- "address": "улица Садовая, 22",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-16-10-47-h1o.jpg",
- "trainings": 1
- },
- {
- "id": 12177,
- "name": "№12177 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.25193299353123",
- "latitude": "55.67612797995027",
- "address": "улица Маршала Жукова, 1 стр1",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-16-10-10-xbh.jpg",
- "trainings": 1
- },
- {
- "id": 12179,
- "name": "№12179 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.24931750446558",
- "latitude": "55.67658189168112",
- "address": "улица Садовая, 22а 10",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-30-16-10-02-zpy.jpg",
- "trainings": 1
- },
- {
- "id": 12180,
- "name": "№12180 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "37.256455197930336",
- "latitude": "55.68162201858482",
- "address": "улица Любы Новоселовой бульвар, 5А",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-31-11-10-00-nb5.jpg",
- "trainings": 1
- },
- {
- "id": 12181,
- "name": "№12181 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "37.25917764008045",
- "latitude": "55.68033038491228",
- "address": "улица Маршала Жукова, 23",
- "city_id": 91,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-31-12-10-10-c1e.jpg",
- "trainings": 1
- },
- {
- "id": 12182,
- "name": "№12182 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.883805364370346",
- "latitude": "41.688415658312294",
- "address": "კალოუბნის ქუჩა #32",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-31-15-10-43-qsy.jpg",
- "trainings": 0
- },
- {
- "id": 12183,
- "name": "№12183 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "44.888805337250226",
- "latitude": "41.68604606522698",
- "address": "III მასივი X კვ. #35ბ-ს მოპირდაპირედ",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-31-16-10-23-oxq.jpg",
- "trainings": 0
- },
- {
- "id": 12184,
- "name": "№12184 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.88579288125038",
- "latitude": "41.688230130134734",
- "address": "Kaloubani Street, 36a",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/10/2022-10-31-16-10-42-obb.jpg",
- "trainings": 0
- },
- {
- "id": 12186,
- "name": "№12186 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-3.719689347505224",
- "latitude": "40.415427890288335",
- "address": "Paseo de la Virgen del Puerto 3B",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-02-16-11-18--yr.jpg",
- "trainings": 0
- },
- {
- "id": 12187,
- "name": "№12187 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-3.7230997908323102",
- "latitude": "40.42057921493015",
- "address": "M-30 ",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-02-16-11-22-_z1.jpg",
- "trainings": 1
- },
- {
- "id": 12188,
- "name": "№12188 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "39.74592804908753",
- "latitude": "47.23105834837791",
- "address": "Парк революции",
- "city_id": 112,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-03-12-11-55-rsd.jpg",
- "trainings": 1
- },
- {
- "id": 12189,
- "name": "№12189 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.88157778978348",
- "latitude": "41.709137615142915",
- "address": "T'bilisi",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-03-16-11-07-fd-.jpg",
- "trainings": 0
- },
- {
- "id": 12190,
- "name": "№12190 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.88214708864689",
- "latitude": "41.70677779637436",
- "address": "Varketili's Central Park",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-03-16-11-59-07g.jpg",
- "trainings": 0
- },
- {
- "id": 12191,
- "name": "№12191 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.87592738121747",
- "latitude": "41.707204312246574",
- "address": "Swedish-Georgian Friendship Corner",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-03-16-11-43-b8n.jpg",
- "trainings": 0
- },
- {
- "id": 12192,
- "name": "№12192 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.87218502908945",
- "latitude": "41.70155975637545",
- "address": "PV2C+JX8",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-03-16-11-39-9w0.jpg",
- "trainings": 0
- },
- {
- "id": 12193,
- "name": "№12193 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.87224403768778",
- "latitude": "41.69899013034433",
- "address": "თბილისი",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-03-16-11-07-y7i.jpg",
- "trainings": 0
- },
- {
- "id": 12194,
- "name": "№12194 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.873547591269016",
- "latitude": "41.69680017219691",
- "address": "4a, 4a",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-03-16-11-07-dop.jpg",
- "trainings": 0
- },
- {
- "id": 12195,
- "name": "№12195 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.45742708444595",
- "latitude": "55.89853807938652",
- "address": "улица Кудрявцева, 2А",
- "city_id": 145,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-06-11-11-37-j-s.jpg",
- "trainings": 0
- },
- {
- "id": 12196,
- "name": "№12196 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "30.339462943375114",
- "latitude": "59.72961555709703",
- "address": "Привокзальная улица, 27",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-06-16-11-16-mov.jpg",
- "trainings": 0
- },
- {
- "id": 12197,
- "name": "№12197 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "25.22052884221921",
- "latitude": "54.73108414855479",
- "address": "Vilnius. Pašilaičiai",
- "city_id": 433,
- "country_id": 14,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-07-19-11-37-b2o.jpg",
- "trainings": 1
- },
- {
- "id": 12200,
- "name": "№12200 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "28.78290840807962",
- "latitude": "41.035308377682334",
- "address": "Nurettin Sen Parki Ici Yolu ",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-14-19-11-35-ubo.jpg",
- "trainings": 0
- },
- {
- "id": 12201,
- "name": "№12201 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "28.906385456153696",
- "latitude": "40.98073887397198",
- "address": "Kennedy Cd. ",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-15-13-11-15-_df.jpg",
- "trainings": 0
- },
- {
- "id": 12202,
- "name": "№12202 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "28.99608987386245",
- "latitude": "41.041318285317196",
- "address": "Macka Demokrasi Parki Ici Yolu ",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-16-12-11-28-ikh.jpg",
- "trainings": 0
- },
- {
- "id": 12203,
- "name": "№12203 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.55660989135504",
- "latitude": "59.82572056005758",
- "address": "Советский проспект, 36к2",
- "city_id": 2,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-17-08-11-37-6l_.jpg",
- "trainings": 1
- },
- {
- "id": 12204,
- "name": "№12204 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "27.564214468002323",
- "latitude": "53.842206592348724",
- "address": "сад Гашкевича",
- "city_id": 377,
- "country_id": 5,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-18-11-11-50-_h8.jpeg",
- "trainings": 0
- },
- {
- "id": 12205,
- "name": "№12205 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-80.20442247390748",
- "latitude": "25.83377144660972",
- "address": "Northwest 5th court",
- "city_id": 653,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-18-19-11-29-rvk.jpg",
- "trainings": 1
- },
- {
- "id": 12206,
- "name": "№12206 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-80.11960029602052",
- "latitude": "25.85729263085012",
- "address": "North shore park",
- "city_id": 653,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-18-19-11-09-tnf.jpg",
- "trainings": 1
- },
- {
- "id": 12207,
- "name": "№12207 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "-80.1203895476072",
- "latitude": "25.83104335",
- "address": "53rd street park",
- "city_id": 653,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-18-20-11-14-fmz.jpg",
- "trainings": 1
- },
- {
- "id": 12208,
- "name": "№12208 Большая Легендарная",
- "class_id": 3,
- "type_id": 6,
- "longitude": "-80.13037204742433",
- "latitude": "25.778947793578375",
- "address": "ocean court",
- "city_id": 653,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-18-21-11-16-rse.jpg",
- "trainings": 1
- },
- {
- "id": 12209,
- "name": "№12209 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "-80.13152539730073",
- "latitude": "25.775208893773456",
- "address": "ocean court",
- "city_id": 653,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-18-21-11-36-sdr.jpg",
- "trainings": 1
- },
- {
- "id": 12210,
- "name": "№12210 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "-80.13135910034181",
- "latitude": "25.765846635590634",
- "address": "South Beach Park",
- "city_id": 653,
- "country_id": 18,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-18-22-11-15-g2h.jpg",
- "trainings": 1
- },
- {
- "id": 12211,
- "name": "№12211 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.280272960315365",
- "latitude": "36.34632486427762",
- "address": "Кумлуджа",
- "city_id": 9217,
- "country_id": 62,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-21-15-11-42-n-4.jpg",
- "trainings": 0
- },
- {
- "id": 12212,
- "name": "№12212 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.269103475644513",
- "latitude": "36.316589842958514",
- "address": "Кумлуджа",
- "city_id": 9217,
- "country_id": 62,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-21-15-11-46-rxc.jpg",
- "trainings": 0
- },
- {
- "id": 12213,
- "name": "№12213 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "100.86917567226921",
- "latitude": "12.896064329341751",
- "address": "VVW9+CM8, Jomtien Beach Rd, Pattaya City, Bang Lamung District, Chon Buri 20150",
- "city_id": 9232,
- "country_id": 72,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-22-17-11-11-cs9.jpg",
- "trainings": 1
- },
- {
- "id": 12214,
- "name": "№12214 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "100.8682680130005",
- "latitude": "12.917984241992073",
- "address": "Паттайя, Банламунг, Чонбури 20150",
- "city_id": 9232,
- "country_id": 72,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-22-17-11-50-jcj.jpg",
- "trainings": 0
- },
- {
- "id": 12215,
- "name": "№12215 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "43.840423679800985",
- "latitude": "56.30604504136397",
- "address": "улица Лесной Городок 5Б",
- "city_id": 86,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-26-21-11-08-4nt.jpg",
- "trainings": 0
- },
- {
- "id": 12216,
- "name": "№12216 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "-95.6093680858612",
- "latitude": "29.92809435486814",
- "address": "Cypress, Houston, TX",
- "city_id": 8843,
- "country_id": 18,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-27-01-11-44--il.jpg",
- "trainings": 1
- },
- {
- "id": 12217,
- "name": "№12217 Маленькая Советская",
- "class_id": 1,
- "type_id": 1,
- "longitude": "-95.62341481447221",
- "latitude": "29.778348868913657",
- "address": "Memorial Drive, Houston, TX",
- "city_id": 8843,
- "country_id": 18,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-27-01-11-26-qyz.jpg",
- "trainings": 1
- },
- {
- "id": 12218,
- "name": "№12218 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "38.50703716278076",
- "latitude": "52.60679243454506",
- "address": "Ани Гайтеровой улица, 1",
- "city_id": 7809,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-28-01-11-00-jrh.jpg",
- "trainings": 0
- },
- {
- "id": 12219,
- "name": "№12219 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "82.9044586690543",
- "latitude": "55.03993793947373",
- "address": "Челюскинцев 15",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/11/2022-11-28-09-11-08-bqp.jpg",
- "trainings": 0
- },
- {
- "id": 12220,
- "name": "№12220 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "30.660512742810035",
- "latitude": "36.876339702622154",
- "address": "Dumlupinar Blv. ",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-02-10-12-38-yjb.jpg",
- "trainings": 0
- },
- {
- "id": 12221,
- "name": "№12221 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "82.90195226669313",
- "latitude": "54.99401936499015",
- "address": "Горский 55",
- "city_id": 89,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-04-13-12-13-fhy.jpg",
- "trainings": 1
- },
- {
- "id": 12222,
- "name": "№12222 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "69.2620676135376",
- "latitude": "41.27065850791294",
- "address": "Abdulla Kahhar 9-o'tish ko'chasi ",
- "city_id": 528,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-05-16-12-32-d4s.jpg",
- "trainings": 0
- },
- {
- "id": 12223,
- "name": "№12223 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "51.68174564901856",
- "latitude": "61.843326489172625",
- "address": "улица ПМК ",
- "city_id": 132,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-07-17-12-20-2_j.jpg",
- "trainings": 1
- },
- {
- "id": 12224,
- "name": "№12224 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "132.2287550568581",
- "latitude": "43.37361910103939",
- "address": "котовского 34",
- "city_id": 8056,
- "country_id": 17,
- "comments_count": 3,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-10-06-12-22-ior.jpg",
- "trainings": 2
- },
- {
- "id": 12225,
- "name": "№12225 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "92.90977299213411",
- "latitude": "56.01434896434969",
- "address": "остров Татышева",
- "city_id": 68,
- "country_id": 17,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-10-19-12-29-c4r.jpg",
- "trainings": 0
- },
- {
- "id": 12226,
- "name": "№12226 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "48.07394098179875",
- "latitude": "46.341161539193486",
- "address": "Звёздная улица 61",
- "city_id": 7,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-12-16-12-19-jkm.jpg",
- "trainings": 1
- },
- {
- "id": 12227,
- "name": "№12227 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "100.54433763027191",
- "latitude": "13.731945510039008",
- "address": "Парк Люмпини",
- "city_id": 7739,
- "country_id": 72,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-18-12-12-27-4up.jpg",
- "trainings": 0
- },
- {
- "id": 12228,
- "name": "№12228 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "100.54311983305527",
- "latitude": "13.72821786010235",
- "address": "Парк Люмпини",
- "city_id": 7739,
- "country_id": 72,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-18-12-12-42-vq0.jpg",
- "trainings": 0
- },
- {
- "id": 12229,
- "name": "№12229 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "100.49561257170355",
- "latitude": "13.7474497790966",
- "address": "Saranrom Park",
- "city_id": 7739,
- "country_id": 72,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-18-12-12-58-mik.jpg",
- "trainings": 0
- },
- {
- "id": 12230,
- "name": "№12230 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "100.50262391567232",
- "latitude": "13.749645165198805",
- "address": "Rommaninat Park",
- "city_id": 7739,
- "country_id": 72,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-18-12-12-28-rxa.jpg",
- "trainings": 0
- },
- {
- "id": 12231,
- "name": "№12231 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "38.0567691",
- "latitude": "55.954618",
- "address": "Комсомольская д. 18",
- "city_id": 143,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-18-22-12-18-e91.jpg",
- "trainings": 0
- },
- {
- "id": 12232,
- "name": "№12232 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "44.75221116095781",
- "latitude": "41.72142038932144",
- "address": "კარტოზიას ქუჩა #1",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-19-22-12-31-hqw.jpg",
- "trainings": 1
- },
- {
- "id": 12233,
- "name": "№12233 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "44.75304398685694",
- "latitude": "41.724663502857524",
- "address": "Alexander Kazbegi Avenue, 29a",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-19-22-12-58-8w9.jpg",
- "trainings": 0
- },
- {
- "id": 12234,
- "name": "№12234 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.72027543932199",
- "latitude": "41.721220191763955",
- "address": "24, 24",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-19-22-12-14-we4.jpg",
- "trainings": 0
- },
- {
- "id": 12235,
- "name": "№12235 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.07409618971055",
- "latitude": "38.396440174643466",
- "address": "Mehmet Ali Akman, 17/1. Sk. No:6",
- "city_id": 9233,
- "country_id": 62,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-22-15-12-11-xnm.jpg",
- "trainings": 1
- },
- {
- "id": 12236,
- "name": "№12236 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "27.100059033168115",
- "latitude": "38.4048187920677",
- "address": "Çankaya, 131. Sk. 16 A Konak",
- "city_id": 9233,
- "country_id": 62,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-22-15-12-54-b51.jpg",
- "trainings": 0
- },
- {
- "id": 12237,
- "name": "№12237 Большая Современная",
- "class_id": 3,
- "type_id": 2,
- "longitude": "28.805699394058937",
- "latitude": "47.03695107576351",
- "address": " Alunelul park",
- "city_id": 504,
- "country_id": 22,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2022/12/2022-12-31-16-12-14-dzm.jpg",
- "trainings": 0
- },
- {
- "id": 12241,
- "name": "№12241 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.767670407891266",
- "latitude": "41.72681472791268",
- "address": "Alexander Kazbegi Avenue, 3a",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2023/01/2023-01-06-00-01-10-2dk.jpg",
- "trainings": 0
- },
- {
- "id": 12242,
- "name": "№12242 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "44.76699650287628",
- "latitude": "41.72707170903708",
- "address": "Vazha Pshavela Avenue, 4",
- "city_id": 396,
- "country_id": 8,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2023/01/2023-01-06-00-01-16-vzt.jpg",
- "trainings": 0
- },
- {
- "id": 12243,
- "name": "№12243 Средняя Советская",
- "class_id": 2,
- "type_id": 1,
- "longitude": "37.55375313878545",
- "latitude": "55.675119457748885",
- "address": "Профсоюзная улица 44 к6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2023/01/2023-01-07-09-01-40--hy.jpg",
- "trainings": 1
- },
- {
- "id": 12244,
- "name": "№12244 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.554702659213845",
- "latitude": "55.67293250746386",
- "address": "улица Гарибальди 23 к4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2023/01/2023-01-07-10-01-27-eqw.jpg",
- "trainings": 1
- },
- {
- "id": 12245,
- "name": "№12245 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "31.315673458330433",
- "latitude": "58.5440734391208",
- "address": "Большая Московская 126",
- "city_id": 14,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2023/01/2023-01-07-21-01-05-lmy.jpg",
- "trainings": 0
- },
- {
- "id": 12246,
- "name": "№12246 Большая Хомуты",
- "class_id": 3,
- "type_id": 3,
- "longitude": "104.14884567260744",
- "latitude": "51.52441871009053",
- "address": "Байкальская ул.",
- "city_id": 8479,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2023/01/2023-01-08-04-01-42--fh.jpg",
- "trainings": 0
- },
- {
- "id": 12247,
- "name": "№12247 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.55630894118854",
- "latitude": "55.676815176822814",
- "address": "улица Архитектора Власова 13 к4",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2023/01/2023-01-08-13-01-12-j6k.jpg",
- "trainings": 1
- },
- {
- "id": 12248,
- "name": "№12248 Средняя Хомуты",
- "class_id": 2,
- "type_id": 3,
- "longitude": "37.51230724868408",
- "latitude": "55.64036315317103",
- "address": "улица Академика Арцимовича 9",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2023/01/2023-01-08-14-01-19-fqa.jpg",
- "trainings": 0
- },
- {
- "id": 12249,
- "name": "№12249 Маленькая Хомуты",
- "class_id": 1,
- "type_id": 3,
- "longitude": "37.64555303371708",
- "latitude": "55.859137977842",
- "address": "Ивовая, дом 6",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2023/01/2023-01-09-13-01-54-pug.jpg",
- "trainings": 0
- },
- {
- "id": 12252,
- "name": "№12252 Маленькая Современная",
- "class_id": 1,
- "type_id": 2,
- "longitude": "65.34077452999998",
- "latitude": "55.43528365999998",
- "address": " Центральный парк культуры и отдыха ",
- "city_id": 601,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2023/01/2023-01-10-17-01-32-eyh.jpg",
- "trainings": 0
- },
- {
- "id": 12253,
- "name": "№12253 Средняя Современная",
- "class_id": 2,
- "type_id": 2,
- "longitude": "103.86010909067411",
- "latitude": "13.362000124808608",
- "address": "Preah Ang Chek Preah Ang Chorm Shrine",
- "city_id": 9237,
- "country_id": 86,
- "comments_count": 1,
- "preview": "https://workout.su/uploads/userfiles/2023/01/2023-01-11-19-01-25-mud.jpg",
- "trainings": 0
- },
- {
- "id": 12254,
- "name": "№12254 Средняя Легендарная",
- "class_id": 2,
- "type_id": 6,
- "longitude": "37.568851081975225",
- "latitude": "55.54994024982633",
- "address": "Улица Изюмская 47к2",
- "city_id": 1,
- "country_id": 17,
- "comments_count": 0,
- "preview": "https://workout.su/uploads/userfiles/2023/01/2023-01-11-23-01-12-lzo.jpg",
- "trainings": 1
- }
-]
diff --git a/SwiftUI-WorkoutApp/Screens/Parks/Map/ParksMapScreen.swift b/SwiftUI-WorkoutApp/Screens/Parks/Map/ParksMapScreen.swift
index beabea12..b6ba86e2 100644
--- a/SwiftUI-WorkoutApp/Screens/Parks/Map/ParksMapScreen.swift
+++ b/SwiftUI-WorkoutApp/Screens/Parks/Map/ParksMapScreen.swift
@@ -11,7 +11,6 @@ struct ParksMapScreen: View {
@EnvironmentObject private var parksManager: ParksManager
@StateObject private var viewModel = ViewModel()
@State private var presentation = Presentation.map
- @State private var isLoading = false
@State private var sheetItem: SheetItem?
/// Отфильтрованные по выбранному городу и активным фильтрам площадки
@@ -35,37 +34,43 @@ struct ParksMapScreen: View {
parksContent
.overlay { noParksFoundView }
}
- .loadingOverlay(if: isLoading || viewModel.newParkState.isProcessingNewPark)
+ .loadingOverlay(if: parksManager.isLoading || viewModel.newParkState.isProcessingNewPark)
.background(Color.swBackground)
.onFirstAppear {
viewModel.userCityDidChange(defaults.mainUserInfo)
}
+ .onChange(of: defaults.mainUserCityId) { _ in
+ viewModel.userCityDidChange(defaults.mainUserInfo)
+ }
.onChange(of: sheetItem) { [oldItem = sheetItem] newValue in
if case .createNewPark = oldItem, newValue == nil {
viewModel.finishCreatingNewPark()
}
}
- .onChange(of: defaults.mainUserCityId) { _ in
- viewModel.userCityDidChange(defaults.mainUserInfo)
- }
.onChange(of: viewModel.newParkState) { newState in
if case let .ready(model) = newState {
sheetItem = .createNewPark(model)
}
}
- .task { await askForParks() }
+ .task {
+ do {
+ try await parksManager.loadParksIfNeeded()
+ } catch {
+ SWAlert.shared.presentDefaultUIKit(error)
+ }
+ }
.sheet(item: $sheetItem) { makeContentView(for: $0) }
.toolbar {
ToolbarItemGroup(placement: .topBarLeading) {
Group {
filterButton
Button {
- Task { await askForParks(refresh: true) }
+ onRefresh()
} label: {
Icons.Regular.refresh.view
}
}
- .disabled(isLoading)
+ .disabled(parksManager.isLoading)
}
ToolbarItem(placement: .topBarTrailing) {
rightBarButton
@@ -76,6 +81,24 @@ struct ParksMapScreen: View {
}
.navigationViewStyle(.stack)
}
+
+ private func onRefresh() {
+ Task {
+ do {
+ try await parksManager.loadParksIfNeeded(refresh: true)
+ } catch {
+ SWAlert.shared.presentDefaultUIKit(error)
+ }
+ }
+ }
+
+ private func onCheckForRecentUpdates() async {
+ do {
+ try await parksManager.checkForRecentUpdates()
+ } catch {
+ SWAlert.shared.presentDefaultUIKit(error)
+ }
+ }
}
private extension ParksMapScreen {
@@ -196,68 +219,12 @@ private extension ParksMapScreen {
isFilterEdited: defaults.parksFilter.isEdited,
isFilteredParksEmpty: filteredParks.isEmpty,
didParksManagerLoad: parksManager.didLoad,
- isLoading: isLoading
+ isLoading: parksManager.isLoading
)
)
}
}
- /// Заполняем/обновляем дефолтный список площадок
- func askForParks(refresh: Bool = false) async {
- if !filteredParks.isEmpty, !refresh { return }
- guard !parksManager.fullList.isEmpty else {
- // Заполняем дефолтный список площадок контентом из `json`-файла
- do {
- try parksManager.makeDefaultList()
- } catch {
- SWAlert.shared.presentDefaultUIKit(error)
- }
- // Если прошло больше одного дня с момента предыдущего обновления, делаем обновление
- if parksManager.needUpdateDefaultList {
- await askForParks(refresh: true)
- }
- return
- }
- await getUpdatedParks()
- }
-
- func deletePark(id: Int) {
- sheetItem = nil
- do {
- try parksManager.deletePark(with: id)
- } catch {
- SWAlert.shared.presentDefaultUIKit(error)
- }
- }
-
- func updatePark(_ park: Park) {
- do {
- try parksManager.manuallyUpdatePark(park)
- } catch {
- SWAlert.shared.presentDefaultUIKit(error)
- }
- }
-
- /// Проверяем недавние обновления списка площадок
- ///
- /// Запрашиваем обновление за прошедшие 5 минут
- func checkForRecentUpdates() async {
- defaults.setUserNeedUpdate(true)
- await getUpdatedParks(from: DateFormatterService.fiveMinutesAgoDateString)
- }
-
- func getUpdatedParks(from dateString: String? = nil) async {
- isLoading = true
- do {
- try await parksManager.getUpdatedParks(with: defaults, from: dateString)
- } catch ClientError.noConnection {
- SWAlert.shared.presentNoConnection(false)
- } catch {
- SWAlert.shared.presentDefaultUIKit(error)
- }
- isLoading = false
- }
-
@ViewBuilder
var rightBarButton: some View {
if defaults.isAuthorized {
@@ -265,7 +232,7 @@ private extension ParksMapScreen {
Icons.Regular.plus.view
.symbolVariant(.circle)
}
- .disabled(!viewModel.canCreateNewPark || isLoading)
+ .disabled(!viewModel.canCreateNewPark || parksManager.isLoading)
}
}
@@ -280,7 +247,7 @@ private extension ParksMapScreen {
.createNew(model),
refreshClbk: {
Task {
- await checkForRecentUpdates()
+ await onCheckForRecentUpdates()
}
}
)
@@ -309,8 +276,25 @@ private extension ParksMapScreen {
NavigationView {
ParkDetailScreen(
park: park,
- onEdit: updatePark,
- onDelete: deletePark
+ onEdit: { park in
+ Task {
+ do {
+ try await parksManager.updateParkAsync(park)
+ } catch {
+ SWAlert.shared.presentDefaultUIKit(error)
+ }
+ }
+ },
+ onDelete: { id in
+ sheetItem = nil
+ Task {
+ do {
+ try await parksManager.deleteParkAsync(id: id)
+ } catch {
+ SWAlert.shared.presentDefaultUIKit(error)
+ }
+ }
+ }
)
}
.navigationViewStyle(.stack)
diff --git a/SwiftUI-WorkoutApp/Services/ParksManager.swift b/SwiftUI-WorkoutApp/Services/ParksManager.swift
index 99b6aebb..ba6acd2e 100644
--- a/SwiftUI-WorkoutApp/Services/ParksManager.swift
+++ b/SwiftUI-WorkoutApp/Services/ParksManager.swift
@@ -19,6 +19,8 @@ final class ParksManager: ObservableObject {
@Published private(set) var fullList = [Park]()
/// Загружены ли данные
@Published private(set) var didLoad = false
+ /// Состояние загрузки
+ @Published private(set) var isLoading = false
/// Нужно ли обновить список площадок
///
/// Обновляем, если прошло больше дня с момента предыдущего обновления
@@ -33,33 +35,6 @@ final class ParksManager: ObservableObject {
.assign(to: &$didLoad)
}
- /// Подготавливает дефолтный список площадок при загрузке приложения
- ///
- /// Достает список площадок из `JSON-файла` в памяти приложения
- func makeDefaultList() throws {
- fullList = if swStorage.documentExists {
- try swStorage.get()
- } else {
- try Bundle.main.decodeJson(
- [Park].self,
- fileName: "oldParks",
- extension: "json"
- )
- }
- }
-
- /// Загружает обновленный список площадок
- /// - Parameters:
- /// - authHelper: Содержит токен авторизации и умеет делать логаут
- /// - dateString: Дата, с которой нужно загрузить обновленные площадки.
- /// Если передать `nil`, использует дефолтную дату (предыдущее ручное обновление площадок)
- func getUpdatedParks(with authHelper: AuthHelper, from dateString: String? = nil) async throws {
- let updatedParks = try await SWClient(with: authHelper).getUpdatedParks(
- from: dateString ?? lastParksUpdateDateString
- )
- try updateDefaultList(with: updatedParks)
- }
-
/// Обновляет выбранную площадку
/// - Parameter park: Площадка с новыми данными
func manuallyUpdatePark(_ park: Park) throws {
@@ -88,9 +63,96 @@ final class ParksManager: ObservableObject {
fullList.removeAll(where: { $0.id == id })
try saveParksInMemory()
}
+
+ // MARK: - Новые методы для рефакторинга
+
+ /// Основная логика загрузки и обновления площадок
+ /// - Parameter refresh: Принудительное обновление
+ func loadParksIfNeeded(refresh: Bool = false) async throws {
+ // Если список не пустой и не требуется обновление, выходим
+ if !fullList.isEmpty, !refresh { return }
+ // Загружаем сохранённые площадки из памяти (если есть)
+ try? makeDefaultList()
+ // Если после загрузки из памяти список всё ещё пустой, загружаем с сервера
+ if fullList.isEmpty {
+ try await loadInitialParks()
+ }
+ // Проверяем, нужны ли обновления
+ guard needUpdateDefaultList else { return }
+ try await updateParks()
+ }
+
+ /// Постраничная загрузка площадок с сервера
+ private func loadInitialParks() async throws {
+ isLoading = true
+ defer { isLoading = false }
+ let client = SWClient(with: DefaultsService())
+ var page = 1
+ let pageSize = 500
+ while true {
+ let parksPage = try await client.getParksPageByPage(page: page, pageSize: pageSize)
+ if parksPage.isEmpty {
+ break
+ }
+ fullList.append(contentsOf: parksPage)
+ page += 1
+ }
+ }
+
+ /// Обновление площадок с сервера
+ private func updateParks(from dateString: String? = nil) async throws {
+ isLoading = true
+ defer { isLoading = false }
+ try await getUpdatedParks(with: DefaultsService(), from: dateString)
+ }
+
+ /// Проверка недавних обновлений (за последние 5 минут)
+ func checkForRecentUpdates() async throws {
+ DefaultsService().setUserNeedUpdate(true)
+ try await updateParks(from: DateFormatterService.fiveMinutesAgoDateString)
+ }
+
+ /// Асинхронное удаление площадки
+ func deleteParkAsync(id: Int) async throws {
+ try deletePark(with: id)
+ }
+
+ /// Асинхронное обновление площадки
+ func updateParkAsync(_ park: Park) async throws {
+ try manuallyUpdatePark(park)
+ }
}
private extension ParksManager {
+ /// Подготавливает дефолтный список площадок при загрузке приложения
+ ///
+ /// Пытается загрузить сохраненный список площадок из памяти приложения
+ func makeDefaultList() throws {
+ fullList = if swStorage.documentExists {
+ try swStorage.get()
+ } else {
+ []
+ }
+ }
+
+ /// Загружает обновленный список площадок
+ /// - Parameters:
+ /// - authHelper: Содержит токен авторизации и умеет делать логаут
+ /// - dateString: Дата, с которой нужно загрузить обновленные площадки.
+ /// Если передать `nil`, использует дефолтную дату (предыдущее ручное обновление площадок)
+ func getUpdatedParks(with authHelper: AuthHelper, from dateString: String? = nil) async throws {
+ let updatedParks = try await SWClient(with: authHelper).getUpdatedParks(
+ from: dateString ?? lastParksUpdateDateString
+ )
+ try updateDefaultList(with: updatedParks)
+ }
+
+ /// Публичный метод для массового присваивания fullList и сохранения
+ func setFullList(_ parks: [Park]) throws {
+ fullList = parks
+ try saveParksInMemory()
+ }
+
/// Обновляем дефолтный список площадок
func updateDefaultList(with updatedParks: [Park]) throws {
guard !updatedParks.isEmpty else { return }
diff --git a/WorkoutAppUITests/WorkoutAppUITests.swift b/WorkoutAppUITests/WorkoutAppUITests.swift
index 24d986b0..1fd30bcc 100644
--- a/WorkoutAppUITests/WorkoutAppUITests.swift
+++ b/WorkoutAppUITests/WorkoutAppUITests.swift
@@ -109,7 +109,13 @@ private extension WorkoutAppUITests {
var profileTabButton: XCUIElement { tabbar.buttons.element(boundBy: 3) }
var eventsTabButton: XCUIElement { tabbar.buttons.element(boundBy: 1) }
var authorizeButton: XCUIElement { app.buttons["authorizeButton"] }
- var loginField: XCUIElement { app.textFields["loginField"] }
+ var loginField: XCUIElement {
+ let id = "loginField"
+ let oldElement = app.textViews[id]
+ let modernElement = app.textFields[id]
+ return oldElement.exists ? oldElement : modernElement
+ }
+
var passwordField: XCUIElement { app.secureTextFields["passwordField"] }
var loginButton: XCUIElement { app.buttons["loginButton"] }
var searchUsersButton: XCUIElement { app.buttons["searchUsersButton"] }
diff --git a/fastlane/Appfile b/fastlane/Appfile
index da7204db..9055a781 100644
--- a/fastlane/Appfile
+++ b/fastlane/Appfile
@@ -1,4 +1,5 @@
-app_identifier("com.FGU.WorkOut") # The bundle identifier of your app
+app_identifier("com.oleg991.SW-Parks") # The bundle identifier of your app
+itc_team_id("127738690") # Team ID for "Oleg Eremenko"
# apple_id("[[APPLE_ID]]") # Your Apple Developer Portal username
diff --git a/fastlane/Fastfile b/fastlane/Fastfile
index ae345d9f..9399d161 100644
--- a/fastlane/Fastfile
+++ b/fastlane/Fastfile
@@ -11,13 +11,53 @@
#
# Uncomment the line if you want fastlane to automatically update itself
-# update_fastlane
+update_fastlane
default_platform(:ios)
platform :ios do
- desc "Generate new localized screenshots"
+ desc "Сгенерировать новые локализованные скриншоты"
lane :screenshots do
capture_screenshots(scheme: "WorkoutAppUITests")
end
+
+ desc "Загрузить существующие скриншоты в App Store Connect"
+ lane :upload_screenshots do
+ upload_to_app_store(
+ skip_metadata: true,
+ skip_screenshots: false,
+ force: true,
+ submit_for_review: false,
+ reject_if_possible: false,
+ overwrite_screenshots: true,
+ run_precheck_before_submit: false,
+ skip_binary_upload: true
+ )
+ end
+
+ desc "Выполнить первые 2 команды вместе"
+ lane :make_and_upload_screenshots do
+ screenshots
+ upload_screenshots
+ end
+
+ desc "Собрать и отправить сборку в TestFlight"
+ lane :release do
+ build_app(
+ scheme: "SwiftUI-WorkoutApp",
+ export_method: "app-store",
+ output_directory: "fastlane/builds",
+ export_options: {
+ provisioningProfiles: {
+ "com.oleg991.SW-Parks" => "SwiftUI-WorkoutApp App Store (fastlane)"
+ }
+ }
+ )
+ upload_to_testflight(
+ skip_waiting_for_build_processing: true,
+ apple_id: ENV["FASTLANE_APPLE_ID"]
+ )
+ # Удаляем файлы сборки после успешной публикации
+ clean_build_artifacts
+ end
end
diff --git a/fastlane/README.md b/fastlane/README.md
index a0e96bca..fc419038 100644
--- a/fastlane/README.md
+++ b/fastlane/README.md
@@ -21,7 +21,31 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do
[bundle exec] fastlane ios screenshots
```
-Generate new localized screenshots
+Сгенерировать новые локализованные скриншоты
+
+### ios upload_screenshots
+
+```sh
+[bundle exec] fastlane ios upload_screenshots
+```
+
+Загрузить существующие скриншоты в App Store Connect
+
+### ios make_and_upload_screenshots
+
+```sh
+[bundle exec] fastlane ios make_and_upload_screenshots
+```
+
+Выполнить первые 2 команды вместе
+
+### ios release
+
+```sh
+[bundle exec] fastlane ios release
+```
+
+Собрать и отправить сборку в TestFlight
----
diff --git a/fastlane/Snapfile b/fastlane/Snapfile
index 8c721c41..dd8f5bfb 100644
--- a/fastlane/Snapfile
+++ b/fastlane/Snapfile
@@ -1,5 +1,5 @@
# A list of devices you want to take the screenshots from
-devices(["iPhone 16 Pro Max", "iPad Pro 13-inch (M4)"])
+devices(["iPhone 15 Pro Max", "iPad Pro (12.9-inch) (6th generation)"])
# A list of languages which should be used. See https://docs.fastlane.tools/actions/snapshot/#available-language-codes
languages(["en-US", "ru"])
@@ -31,5 +31,9 @@ scheme("WorkoutAppUITests")
# remove the '#' to clear all previously generated screenshots before creating new ones
clear_previous_screenshots(true)
+skip_package_dependencies_resolution(true)
+disable_package_automatic_updates(true)
+output_simulator_logs(true)
+
# For more information about all available options run
# fastlane action snapshot
diff --git a/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-0-parksMap.png b/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-0-parksMap.png
new file mode 100644
index 00000000..f4853e3e
Binary files /dev/null and b/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-0-parksMap.png differ
diff --git a/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-1-parksList.png b/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-1-parksList.png
new file mode 100644
index 00000000..aa736334
Binary files /dev/null and b/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-1-parksList.png differ
diff --git a/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-2-parkDetails.png b/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-2-parkDetails.png
new file mode 100644
index 00000000..80d97cd1
Binary files /dev/null and b/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-2-parkDetails.png differ
diff --git a/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-3-pastEvents.png b/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-3-pastEvents.png
new file mode 100644
index 00000000..e362b8f1
Binary files /dev/null and b/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-3-pastEvents.png differ
diff --git a/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-4-eventDetails.png b/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-4-eventDetails.png
new file mode 100644
index 00000000..b99cbc0b
Binary files /dev/null and b/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-4-eventDetails.png differ
diff --git a/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-5-profile.png b/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-5-profile.png
new file mode 100644
index 00000000..f5d2d54d
Binary files /dev/null and b/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (6th generation)-5-profile.png differ
diff --git a/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-0-parksMap.png b/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-0-parksMap.png
deleted file mode 100644
index 7c1deebc..00000000
Binary files a/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-0-parksMap.png and /dev/null differ
diff --git a/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-1-parksList.png b/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-1-parksList.png
deleted file mode 100644
index 9e0f2953..00000000
Binary files a/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-1-parksList.png and /dev/null differ
diff --git a/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-2-parkDetails.png b/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-2-parkDetails.png
deleted file mode 100644
index cd41d042..00000000
Binary files a/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-2-parkDetails.png and /dev/null differ
diff --git a/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-3-pastEvents.png b/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-3-pastEvents.png
deleted file mode 100644
index 4ea6b62b..00000000
Binary files a/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-3-pastEvents.png and /dev/null differ
diff --git a/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-4-eventDetails.png b/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-4-eventDetails.png
deleted file mode 100644
index 3fb318d5..00000000
Binary files a/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-4-eventDetails.png and /dev/null differ
diff --git a/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-5-profile.png b/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-5-profile.png
deleted file mode 100644
index d55d726f..00000000
Binary files a/fastlane/screenshots/en-US/iPad Pro 13-inch (M4)-5-profile.png and /dev/null differ
diff --git a/fastlane/screenshots/en-US/iPhone 15 Pro Max-0-parksMap.png b/fastlane/screenshots/en-US/iPhone 15 Pro Max-0-parksMap.png
new file mode 100644
index 00000000..fad08d90
Binary files /dev/null and b/fastlane/screenshots/en-US/iPhone 15 Pro Max-0-parksMap.png differ
diff --git a/fastlane/screenshots/en-US/iPhone 15 Pro Max-1-parksList.png b/fastlane/screenshots/en-US/iPhone 15 Pro Max-1-parksList.png
new file mode 100644
index 00000000..9a440360
Binary files /dev/null and b/fastlane/screenshots/en-US/iPhone 15 Pro Max-1-parksList.png differ
diff --git a/fastlane/screenshots/en-US/iPhone 15 Pro Max-2-parkDetails.png b/fastlane/screenshots/en-US/iPhone 15 Pro Max-2-parkDetails.png
new file mode 100644
index 00000000..0207418c
Binary files /dev/null and b/fastlane/screenshots/en-US/iPhone 15 Pro Max-2-parkDetails.png differ
diff --git a/fastlane/screenshots/en-US/iPhone 15 Pro Max-3-pastEvents.png b/fastlane/screenshots/en-US/iPhone 15 Pro Max-3-pastEvents.png
new file mode 100644
index 00000000..61e8f92a
Binary files /dev/null and b/fastlane/screenshots/en-US/iPhone 15 Pro Max-3-pastEvents.png differ
diff --git a/fastlane/screenshots/en-US/iPhone 15 Pro Max-4-eventDetails.png b/fastlane/screenshots/en-US/iPhone 15 Pro Max-4-eventDetails.png
new file mode 100644
index 00000000..cb384528
Binary files /dev/null and b/fastlane/screenshots/en-US/iPhone 15 Pro Max-4-eventDetails.png differ
diff --git a/fastlane/screenshots/en-US/iPhone 15 Pro Max-5-profile.png b/fastlane/screenshots/en-US/iPhone 15 Pro Max-5-profile.png
new file mode 100644
index 00000000..f7f29072
Binary files /dev/null and b/fastlane/screenshots/en-US/iPhone 15 Pro Max-5-profile.png differ
diff --git a/fastlane/screenshots/en-US/iPhone 16 Pro Max-0-parksMap.png b/fastlane/screenshots/en-US/iPhone 16 Pro Max-0-parksMap.png
deleted file mode 100644
index 48ef99f2..00000000
Binary files a/fastlane/screenshots/en-US/iPhone 16 Pro Max-0-parksMap.png and /dev/null differ
diff --git a/fastlane/screenshots/en-US/iPhone 16 Pro Max-1-parksList.png b/fastlane/screenshots/en-US/iPhone 16 Pro Max-1-parksList.png
deleted file mode 100644
index 8d18280c..00000000
Binary files a/fastlane/screenshots/en-US/iPhone 16 Pro Max-1-parksList.png and /dev/null differ
diff --git a/fastlane/screenshots/en-US/iPhone 16 Pro Max-2-parkDetails.png b/fastlane/screenshots/en-US/iPhone 16 Pro Max-2-parkDetails.png
deleted file mode 100644
index ed1aecab..00000000
Binary files a/fastlane/screenshots/en-US/iPhone 16 Pro Max-2-parkDetails.png and /dev/null differ
diff --git a/fastlane/screenshots/en-US/iPhone 16 Pro Max-3-pastEvents.png b/fastlane/screenshots/en-US/iPhone 16 Pro Max-3-pastEvents.png
deleted file mode 100644
index 6b3723c3..00000000
Binary files a/fastlane/screenshots/en-US/iPhone 16 Pro Max-3-pastEvents.png and /dev/null differ
diff --git a/fastlane/screenshots/en-US/iPhone 16 Pro Max-4-eventDetails.png b/fastlane/screenshots/en-US/iPhone 16 Pro Max-4-eventDetails.png
deleted file mode 100644
index e0758d40..00000000
Binary files a/fastlane/screenshots/en-US/iPhone 16 Pro Max-4-eventDetails.png and /dev/null differ
diff --git a/fastlane/screenshots/en-US/iPhone 16 Pro Max-5-profile.png b/fastlane/screenshots/en-US/iPhone 16 Pro Max-5-profile.png
deleted file mode 100644
index 3bb248a2..00000000
Binary files a/fastlane/screenshots/en-US/iPhone 16 Pro Max-5-profile.png and /dev/null differ
diff --git a/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-0-parksMap.png b/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-0-parksMap.png
new file mode 100644
index 00000000..9c4a11f6
Binary files /dev/null and b/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-0-parksMap.png differ
diff --git a/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-1-parksList.png b/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-1-parksList.png
new file mode 100644
index 00000000..76974461
Binary files /dev/null and b/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-1-parksList.png differ
diff --git a/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-2-parkDetails.png b/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-2-parkDetails.png
new file mode 100644
index 00000000..e526b767
Binary files /dev/null and b/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-2-parkDetails.png differ
diff --git a/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-3-pastEvents.png b/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-3-pastEvents.png
new file mode 100644
index 00000000..9931097a
Binary files /dev/null and b/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-3-pastEvents.png differ
diff --git a/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-4-eventDetails.png b/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-4-eventDetails.png
new file mode 100644
index 00000000..28b9218e
Binary files /dev/null and b/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-4-eventDetails.png differ
diff --git a/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-5-profile.png b/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-5-profile.png
new file mode 100644
index 00000000..c524d450
Binary files /dev/null and b/fastlane/screenshots/ru/iPad Pro (12.9-inch) (6th generation)-5-profile.png differ
diff --git a/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-0-parksMap.png b/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-0-parksMap.png
deleted file mode 100644
index 786b5c84..00000000
Binary files a/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-0-parksMap.png and /dev/null differ
diff --git a/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-1-parksList.png b/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-1-parksList.png
deleted file mode 100644
index 426d2dd4..00000000
Binary files a/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-1-parksList.png and /dev/null differ
diff --git a/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-2-parkDetails.png b/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-2-parkDetails.png
deleted file mode 100644
index 961cfb94..00000000
Binary files a/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-2-parkDetails.png and /dev/null differ
diff --git a/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-3-pastEvents.png b/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-3-pastEvents.png
deleted file mode 100644
index 4ab3dd34..00000000
Binary files a/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-3-pastEvents.png and /dev/null differ
diff --git a/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-4-eventDetails.png b/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-4-eventDetails.png
deleted file mode 100644
index cfa3e40f..00000000
Binary files a/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-4-eventDetails.png and /dev/null differ
diff --git a/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-5-profile.png b/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-5-profile.png
deleted file mode 100644
index f0baa169..00000000
Binary files a/fastlane/screenshots/ru/iPad Pro 13-inch (M4)-5-profile.png and /dev/null differ
diff --git a/fastlane/screenshots/ru/iPhone 15 Pro Max-0-parksMap.png b/fastlane/screenshots/ru/iPhone 15 Pro Max-0-parksMap.png
new file mode 100644
index 00000000..f44d676e
Binary files /dev/null and b/fastlane/screenshots/ru/iPhone 15 Pro Max-0-parksMap.png differ
diff --git a/fastlane/screenshots/ru/iPhone 15 Pro Max-1-parksList.png b/fastlane/screenshots/ru/iPhone 15 Pro Max-1-parksList.png
new file mode 100644
index 00000000..5d7e2e6e
Binary files /dev/null and b/fastlane/screenshots/ru/iPhone 15 Pro Max-1-parksList.png differ
diff --git a/fastlane/screenshots/ru/iPhone 15 Pro Max-2-parkDetails.png b/fastlane/screenshots/ru/iPhone 15 Pro Max-2-parkDetails.png
new file mode 100644
index 00000000..decf460d
Binary files /dev/null and b/fastlane/screenshots/ru/iPhone 15 Pro Max-2-parkDetails.png differ
diff --git a/fastlane/screenshots/ru/iPhone 15 Pro Max-3-pastEvents.png b/fastlane/screenshots/ru/iPhone 15 Pro Max-3-pastEvents.png
new file mode 100644
index 00000000..b6886f19
Binary files /dev/null and b/fastlane/screenshots/ru/iPhone 15 Pro Max-3-pastEvents.png differ
diff --git a/fastlane/screenshots/ru/iPhone 15 Pro Max-4-eventDetails.png b/fastlane/screenshots/ru/iPhone 15 Pro Max-4-eventDetails.png
new file mode 100644
index 00000000..9abf230c
Binary files /dev/null and b/fastlane/screenshots/ru/iPhone 15 Pro Max-4-eventDetails.png differ
diff --git a/fastlane/screenshots/ru/iPhone 15 Pro Max-5-profile.png b/fastlane/screenshots/ru/iPhone 15 Pro Max-5-profile.png
new file mode 100644
index 00000000..ae7c1dc1
Binary files /dev/null and b/fastlane/screenshots/ru/iPhone 15 Pro Max-5-profile.png differ
diff --git a/fastlane/screenshots/ru/iPhone 16 Pro Max-0-parksMap.png b/fastlane/screenshots/ru/iPhone 16 Pro Max-0-parksMap.png
deleted file mode 100644
index 96a4f436..00000000
Binary files a/fastlane/screenshots/ru/iPhone 16 Pro Max-0-parksMap.png and /dev/null differ
diff --git a/fastlane/screenshots/ru/iPhone 16 Pro Max-1-parksList.png b/fastlane/screenshots/ru/iPhone 16 Pro Max-1-parksList.png
deleted file mode 100644
index 5877923b..00000000
Binary files a/fastlane/screenshots/ru/iPhone 16 Pro Max-1-parksList.png and /dev/null differ
diff --git a/fastlane/screenshots/ru/iPhone 16 Pro Max-2-parkDetails.png b/fastlane/screenshots/ru/iPhone 16 Pro Max-2-parkDetails.png
deleted file mode 100644
index b971ae13..00000000
Binary files a/fastlane/screenshots/ru/iPhone 16 Pro Max-2-parkDetails.png and /dev/null differ
diff --git a/fastlane/screenshots/ru/iPhone 16 Pro Max-3-pastEvents.png b/fastlane/screenshots/ru/iPhone 16 Pro Max-3-pastEvents.png
deleted file mode 100644
index 102cc406..00000000
Binary files a/fastlane/screenshots/ru/iPhone 16 Pro Max-3-pastEvents.png and /dev/null differ
diff --git a/fastlane/screenshots/ru/iPhone 16 Pro Max-4-eventDetails.png b/fastlane/screenshots/ru/iPhone 16 Pro Max-4-eventDetails.png
deleted file mode 100644
index 6da90d29..00000000
Binary files a/fastlane/screenshots/ru/iPhone 16 Pro Max-4-eventDetails.png and /dev/null differ
diff --git a/fastlane/screenshots/ru/iPhone 16 Pro Max-5-profile.png b/fastlane/screenshots/ru/iPhone 16 Pro Max-5-profile.png
deleted file mode 100644
index 3546bd42..00000000
Binary files a/fastlane/screenshots/ru/iPhone 16 Pro Max-5-profile.png and /dev/null differ