Этот сайт использует файлы cookies. Продолжая просмотр страниц сайта, вы соглашаетесь с использованием файлов cookies. Если вам нужна дополнительная информация, пожалуйста, посетите страницу Политика файлов Cookie
Subscribe
Прямой эфир
Cryptocurrencies: 9041 / Markets: 116301
Market Cap: $ 3 165 531 890 582 / 24h Vol: $ 147 845 082 057 / BTC Dominance: 58.451824903787%

Н Новости

Использование ChatGPT o3-mini и DeepSeek при создании iOS приложения Countries “Страны Мира”

Что делает “животворящая” конкуренция?

Появление “думающей” DeepSeek, позволило бесплатным подписчикам ChatGPT получить доступ к “рассуждающей” ChatGPT o3-mini.

Сразу же появилось желание испытать этот ИИ, тем более что у меня уже есть “Опыт создания iOS приложения Countries с помощью Claude 3.5 Sonnet, ChatGPT 4.o1, ChatGPT 4.o-preview и Gemini 2.0 Flash”.

В приведенном выше посте я предложила всем ИИ создать довольно простое на первый взгляд тестовое iOS приложение Countries, которое показывает все страны Мира по регионам (Европа, Азия, Латинская Америка и т.д.) и для каждой страны её название и флаг, a также численность населения population, размер ВВП (валового внутреннего продукта) gdp и расположение страны на карте Мира.

Использовались данные Всемирного банка (World Bank), но мы не сообщали ИИ ни сайты, ни структуры данных, всё это ИИ должен найти сам и использовать их при создании iOS приложения.

Раньше я отдавала предпочтение Clause 3.5 Sonnet при создании iOS приложений, прибегая к ChatGPT 4.o1 для решения отдельных проблем.

Но при разработке этого конкретного iOS приложения Clause 3.5 Sonnet оказался совершенно беспомощным при декодировании нестандартных JSON данных API Всемирного Банка, поставляющих информацию о странах, и пришлось обратиться за помощью к ChatGPT 4.o1, Gemini 2.0 Flash и ChatGPT 4.o-preview.

Они решили эту проблему по-разному:

  • ChatGPT 4.o1 - с первого захода,

  • Gemini 1.5 Flash, также, как и Clause 3.5 Sonnet, не справилась с этой задачей,

  • Gemini 2.0 Flash - со второго захода,

  • ChatGPT 4.o-preview сразу предложил блестящее оригинальное решение.

Кроме того, все 3 ИИ: ChatGPT 4.o1, Gemini 2.0 Flash и ChatGPT 4.o-preview предлагали для многопоточной выборки данных из сети старый CGD (Central Grand Dispatch), так что приходилось дополнительно рефакторить код до современного async / await.

Так что опыт создания такого тестового iOS приложения с помощью Clause 3.5 Sonnet + ChatGPT 4.o1 у меня уже был.

Но появление “рассуждающих” DeepSeek и ChatGPT o3-mini (даже в бесплатном варианте) изменили всё. Они реально выводят разработку iOS приложений на более высокий уровень.

Вот решение, которое предложил ChatGPT o3-mini:

22d80c1744cff75a35cfd2ef4e357048.gif

A вот что предложил DeepSeek:

7f28bc0bcc3267f950bdf1d9a4585be2.gif

Забегая вперед скажу, что это тестовое приложение интересно тем, что API Всемирного банка предоставляет “странную” нестандартную структуру JSON данных на верхнем уровне, a также есть логические ошибки несоответствия при проектировании этого API, когда одинаковые параметры в JSON данных имею различные ТИПЫ, что может затруднить их декодирование. Было интересно посмотреть, как ИИ справится с этой “человеческой” нелогичностью.

Кроме того, в современном Swift сейчас действуют 3 способа работы с многопоточной выборкой данных:

  1. Старый GCD (Grand Central Dispatch) c callbacks

  2. Новый async / await

  3. Продвинутый Swift 6 strict concurrency, который предотвращает “гонку данных” (data races) на этапе компиляции за счет использования акторов actor и изоляции isolation.

Будет интересно понять, какой из них выберет ИИ и сможет ли перейти на самый продвинутый.

Появление задания по отображению страны Мира на карте также было предложено не случайно. Разработка приложения велась для iOS 17, a на WWDC 2023 был представлен новый MapKit APIs для SwiftUI Map. С появлением новых API интеграция карт Map в приложение SwiftUI стала еще проще в iOS 17. Недостатком является то, что вам, возможно, придется переписать некоторые части интеграции карт в существующем приложении SwiftUI. Будет интересно, смогут ли наши ИИ внедрить в приложение Countries совершенно новый Map API для iOS 17.

Примечание. Если хотите больше знать о Swift 6 strict concurrency прочтите статью Concurrency Step-by-Step: A Network Request или её перевод на русский язык “Многопоточность по шагам: Сетевой запрос”.

По итогам ChatGPT o3-mini:

  1. Без каких либо проблем справился с декодированием JSON данных, удивив некоторыми изобретательными решениями.

  2. Использовал современную async / await систему работы с многопоточностью

  3. Предложил несколько вариантов перехода на Swift 6 strict concurrency с помощью @MainActor и маркировки функций выборки как nonisolated или использования Task.detached.

  4. Сначала предложил для карты старый API с Map (coordinateRegion: $region, annotationItems: [country]) и MapMaker, но после получения соответствующих предупреждений перешел на новый API c Map (position: $position) и Maker.

  5. Использовал CLGeocoder() для получения более точных географических координат столицы страны и Task.detached для запуска в фоновом режиме.

  6. Рассуждения краткие, по делу и длятся от 1 до 25 секунд, среднее время 8 секунд.

  7. Могу рекомендовать в качестве превосходного обучающего материала для iOS разработчиков.

По итогам DeepSeek:

  1. Без каких либо проблем справился с декодированием JSON данных, но застрял при установлении соответствия страны country и дополнительной информации о численности населения population и ВВП gdp, что объясняется “логическими ошибками” проектирования API Всемирного Банка

  2. Использовал современную async / await систему работы с многопоточностью

  3. Предложил для Swift 6 strict concurrency использовать @MainActor для View Model, a после замечаний добавил маркировку функций выборки fetch как nonisolated.

  4. Сначала предложил старый Map API с Map (coordinateRegion: $region, annotationItems: [country]) и MapMaker, но после получения соответствующих предупреждений довольно успешно перешел на новый API c Map (position: $position) и Maker.

  5. Использовал CLGeocoder() для получения более точных географических координат столицы страны и Task.detached для запуска в фоновом режиме.

  6. Плохо держит контекст: иногда для отработанных уже кусков кода предлагает код с предыдущими ошибками, так что результирующий код приложения на каждом этапе приходится собирать по кусочкам.

  7. Рассуждения очень пространные и длинные, но очень "живые" и любопытные, иногда правда сомнительные. Рассуждения длятся от 184 до 18 секунд, среднее время 50 секунд. A кроме того, последнее время часто можно видеть сообщение “Сервер занят. Пожалуйста, попробуйте позже.”:

f44dbb2fbe04d4e9f9eebefc44e1deda.png

Начинающим iOS программистам рекомендую использовать с крайней осторожностью в качестве обучающего материала - слишком много неоднозначных рассуждений относительно архитектуры iOS приложений.

Хотя по функциональным возможностям полученные ChatGPT o3-mini и DeepSeek iOS приложения приблизительно равны, код их абсолютно разный. Оба ИИ способны удивить не тривиальным изобретательным кодом. Качество кода можно оценить на Github CountryChatGPTo3 и CoutryDeepSeek.

Но использование DeepSeek потребовало больше времени и усилий программиста, работа ChatGPT o3-mini при меньших усилиях просто филигранна.

Так что приоритетным ИИ при разработке iOS приложений для меня на настоящий момент будет ChatGPT o3-mini.

Создание iOS приложения Countries для отображения стран Мира с помощью ChatGPT 03-mini

Итак, давайте попросим ChatGPT 03-mini создать полноценного iOS приложения Countries для отображения стран Мира по категориям с использованием SwiftUI и данных Всемирного Банка. При этом мы не будем сообщать ни сайты, ни структуры данных, всё это ИИ должен найти сам и использовать при создании приложения.

Создай iOS приложение, которое показывает страны Мира по категориям. Используй информацию Всемирного Банка.

Мы использовали режим “Reason”, который обещает применять логические выводы для получения результата, и “Search”, который позволит ИИ искать ответы в интернете:

fc090d3b955538d00a15592b24688a59.png

В результате мы получаем рассуждения, которые длятся 1 секунду:

204fdcf989cb9b74219dd89c2c1612bf.pngИ вот их перевод

Создание приложения

Я думаю о создании SwiftUI iOS приложения для демонстрации стран Мира по категориям, используя API Всемирного банка для таких данных, как название страны, регион и уровень дохода.

Формулирование структуры

Я пишу код SwiftUI приложения с моделью Country: Codable и ViewModel, использующей async/await для выборки списков стран из API Всемирного банка, классифицируя их по уровню дохода или региону.

Собираем всё вместе

Я работаю над декодированием второго элемента JSON, в котором перечислены страны countries с такими полями, как id, iso2Code, region, incomeLevel, capitalCity, longitude и latitude. Это включает определение структуры struct Country: Codable.

Преобразование данных

Я собираю по кусочкам структуру struct Country: Codable с такими полями, как id, iso2Code, name, region, incomeLevel, capitalCity, longitude и latitude. Также рассматриваю модель API ответа Response для декодирования JSON.

Создание моделей ответов Response

Я разрабатываю собственный декодер decoder для обработки массива JSON API Всемирного банка, сосредоточившись на втором элементе, содержащем данные о странах, и включив метаданные для управления страницами.

Компиляция данных о стране

Я собираю View Model в SwiftUI для выборки данных из API Всемирного банка, группирую страны по уровню дохода и готовлю View для их представления в категоризированных разделах.

Запуск приложения

Я создаю Swift приложение для отображения стран Мира по уровню дохода, используя разделы Section и категории, при этом предоставляя в распоряжение пользователя DetailView для более полной информации о стране.

Ниже приведен пример того, как можно создать приложение SwiftUI iOS, которое выбирает список стран Мира из API Всемирного банка, а затем отображает их, организованных по «категории» (в этом примере мы группируем их по уровню дохода incomeLevel).

URL для выборки стран Мира - это country endpoint API Всемирного банка (по адресу https://api.worldbank.org/v2/country?format=json), который возвращает двухэлементный разнородный массив JSON:

  • Первый элемент — это метаданные (например, количество страниц), а

  • Второй элемент — массив записей о странах.

    Мы можем создать пользовательский декодер decoder для «декодирования» этого массива верхнего уровня.

Ниже приведен полный код примера со следующими частями:

1. Модели данных (Data Model)

Создайте модель для страны. API возвращает такие поля, как id, name, region, incomeLevel и т. д. Мы также создаем вспомогательную модель для декодирования «странного» JSON массива верхнего уровня:

код Data Model
import Foundation

// MARK: - Models

// This struct is used to decode the top-level array.
// We ignore the first element (metadata) and then decode the second element as an array of Country.
struct CountryResponse: Codable {
    let countries: [Country]
    
    // Custom initializer to decode the top-level array.
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        // Decode (and ignore) the metadata.
        _ = try container.decode(Meta.self)
        // Now decode the countries array.
        countries = try container.decode([Country].self)
    }
}

// Metadata about the response (we don't use it in this sample).
struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: String
    let total: Int
}

// The Country model - note that we use the "id" field from the API as the unique identifier.
struct Country: Codable, Identifiable {
    // The API's "id" is the country code.
    let id: String
    let iso2Code: String
    let name: String
    let region: Category
    let incomeLevel: Category
    let lendingType: Category
    let capitalCity: String
    let longitude: String
    let latitude: String
}

// A helper type for nested category fields (like region, incomeLevel, etc.)
struct Category: Codable {
    let id: String
    let value: String
}

2. View Model

View Model отвечает за выборку данных из API Всемирного банка, а затем за группировку стран по (в данном случае) уровню дохода incomeLevel. Вы можете выбрать любую понравившуюся вам категоризацию (например, по региону region).

код View Miodel
import Foundation
import SwiftUI

class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    // Group countries by income level (or any category)
    @Published var groupedCountries: [String: [Country]] = [:]
    
    // Using async/await (requires iOS 15+)
    @MainActor
    func fetchCountries() async {
        // Request more than the default per_page (here 300) to get most of the countries.
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            print("Invalid URL")
            return
        }
        
        do {
            let (data, _) = try await URLSession.shared.data(from: url)
            let response = try JSONDecoder().decode(CountryResponse.self, from: data)
            countries = response.countries
            // Group by income level (for example, "High income", "Low income", etc.)
            groupedCountries = Dictionary(grouping: countries, by: { $0.incomeLevel.value })
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
}

3. SwiftUI Views

Основной ContentView: список List, отображающий разделы Section (уровни дохода incomeLevel) с названиями стран. Нажатие на страну открывает подробный CountryDetailView.

код Views
import SwiftUI

struct ContentView: View {
    @StateObject var viewModel = CountriesViewModel()
    
    var body: some View {
        NavigationView {
          List {
              // Sort the keys (income levels) alphabetically
              ForEach(viewModel.groupedCountries.keys.sorted(), id: \.self) { incomeLevel in
                 Section(header: Text(incomeLevel)) {
                     if let countries = viewModel.groupedCountries[incomeLevel] {
                       ForEach(countries) { country in
                          NavigationLink(destination: CountryDetailView(country: country)) {
                                    Text(country.name)
                          }
                       }
                     }
                 }
              }
          }
          .navigationTitle("World Countries")
          // Use the .task modifier to call our async fetch function on appear.
          .task {
              await viewModel.fetchCountries()
          }
        }
    }
}

Подробный CountryDetailView показывает дополнительную информацию о выбранной стране.

struct CountryDetailView: View {
    let country: Country
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
                HStack {
                    Text("Region:")
                    Spacer()
                    Text(country.region.value)
                }
                HStack {
                    Text("Income Level:")
                    Spacer()
                    Text(country.incomeLevel.value)
                }
                HStack {
                    Text("ISO Code:")
                    Spacer()
                    Text(country.iso2Code)
                }
            }
            
            Section(header: Text("Location")) {
                HStack {
                    Text("Latitude:")
                    Spacer()
                    Text(country.latitude)
                }
                HStack {
                    Text("Longitude:")
                    Spacer()
                    Text(country.longitude)
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Собираем все вместе

В главном файле вашего проекта Xcode (обычно помеченном @main) вы можете установить ContentView в качестве стартовой точки:

@main
struct WorldBankCountriesApp: App {
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}

Примечание: в этом примере используется синтаксис iOS 15+ async/await. Если вам нужна поддержка более ранних версий, вы можете использовать Combine или URLSession callbacks..

(См. также руководство Hacking with Swift по посылке и получению Codable данных с помощью URLSession для похожего шаблона. HACKINGWITHSWIFT.COM)

Объяснение

  1. Выборка и декодирование данных:

View Model выбирает данные из API endpoint Всемирного банка. Поскольку ответ response JSON представляет собой массив (сначала метаданные, затем фактический массив стран), для декодирования стран используется пользовательский init(from decoder: Decoder) в структуре CountryResponse.

(Подробнее о структурах, полученных в результате выборки см. в документации API Всемирного банка DATAHELPDESK.WORLDBANK.ORG.)

  1. Группировка и отображение данных:

После выборки страны countries группируются по уровню дохода incomeLevel с помощью Swift метода Dictionary(grouping:by:). В View каждая группа отображается как отдельный раздел Section. Это дает категориальное представление стран мира. (Для аналогичного подхода к группировке и отображению данных API в SwiftUI см. примеры выборки данных SwiftUI DEV.TO.)

  1. Async/Await:

Использование async/await обеспечивает отзывчивость UI во время выполнения сетевого запроса.

Этот пример дает отправную точку. Вы можете изменить логику группировки (например, по региону region или уровню дохода incomeLevel) или добавить больше деталей в CountryDetailView по мере необходимости.

Ссылки

HACKINGWITHSWIFT.COM – Статья на Hacking with Swift “Sending/receiving Codable data with URLSession and SwiftUI”) (“Посылка /получение Codable данных с помощью URLSession и SwiftUI”)

DATAHELPDESK.WORLDBANK.ORG – Базовые структуры вызовов API Всемирного банка

Этот пример должен помочь вам начать создавать iOS SwiftUI приложение, которое отображает страны Мира, организованные по категориям, с использованием данных API Всемирного банка. Удачного кодирования!

Версия 1. Запускаем приложение. Получаем результат:

5f25d90f646805abb6ea84820b5654ea.png

В списке стран мы получили НЕ только реальные страны Мира, но и агрегаты AGGREGATES, что для нас не желательно. Кроме того, мы хотим заносить страны в ту или иную категорию НЕ по уровню дохода incomeLevel, a по географическим регионам region.

Что касается кода, то ChatGPT o3-mini справился прекрасно. Несмотря на “странную” нестандартную структуру JSON данных на верхнем уровне, представляющую собой массив из 2-х разнородных элементов, ChatGPT o3-mini, используя пользовательский init (from decoder: Decoder) в структуре CountryResponse, получил правильные данные о странах countries. Выборка данных из сети выполнена с помощью современной async / await системы работы с многопоточностью.

Показ реальных стран (НЕ агрегатов) и группировка по регионам region

Давайте попросим ChatGPT o3-mini показать нам только реальные страны и сгруппировать их по регионам.

13b52eded3fb7c526e66e74e5a52116b.png

Покажи только реальные страны в списке стран и сгруппируйте их по регионам region

В результате мы получаем рассуждения, которые длятся 19 секунд:

4d5e0cd43a9c0767ae15a8f42b4e9884.pngИ вот их перевод:

Уточнение списка

Я размышляю над тем, что представляет собой «реальная страна», фильтруя агрегированные сущности, такие как «Арабский мир» ("Arab World") или «Европа и Центральная Азия» ("Europe & Central Asia" ) из API Всемирного банка, сосредоточившись исключительно на суверенных государствах.

Определение агрегатов

Я изучаю структуру JSON API Всемирного банка, чтобы определить поля, которые различают агрегированные сущности. Например, регионы, такие как «NA» или «Aggregates», вероятно, указывают на несуверенные сущности, которые можно отфильтровать, чтобы сосредоточиться на реальных суверенных государствах.

Определение агрегатов

Хорошо, дайте подумать. Агрегаты в API Всемирного банка обычно имеют значение region «Aggregates». Фильтрация их и сущностей с «NA» в качестве region.id кажется многообещающим. Код Swift может эффективно с этим справиться.

Уточнение модели

Хорошо, дайте подумать. Я дорабатываю View Model, чтобы отфильтровать агрегаты, гарантируя, что после декодирования страны не будут их содержать

countries = response.countries.filter { $0.region.value != "Aggregates" }.

Организация по региону

Я группирую реальные страны по регионам, используя словарь Dictionary в View Model. Обновляю ContentView заголовками header разделов Sections для регионов region и размещаю список соответствующих стран под каждым заголовком. Прогресс стабильный и продуманный.

Ниже приведен обновленный пример, который выбирает данные по странам Всемирного банка, отфильтровывает несуверенные "агрегаты" (т. е. оставляет только "реальные" страны Мира), а затем группирует их по регионам region. В этом примере мы предполагаем, что любая страна, значение региона region которой равно "Aggregates", должна быть исключена.

Код разделен на три части:

1. Модели данных(Data Model)

Определите свои модели, как и прежде. Ответ response верхнего уровня — это массив unkeyedContainer, который мы декодируем, игнорируя первый элемент (метаданные), а затем декодируем список стран:

код Data Model
import Foundation

// MARK: - Models

struct CountryResponse: Codable {
    let countries: [Country]
    
    // Custom initializer to decode the top-level array.
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        // Decode and ignore metadata.
        _ = try container.decode(Meta.self)
        // Decode the countries array.
        countries = try container.decode([Country].self)
    }
}

struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: String
    let total: Int
}

struct Country: Codable, Identifiable {
    let id: String            // This is the country code.
    let iso2Code: String
    let name: String
    let region: Category
    let incomeLevel: Category
    let lendingType: Category
    let capitalCity: String
    let longitude: String
    let latitude: String
}

struct Category: Codable {
    let id: String
    let value: String
}

2. View Model

Теперь View Model выбирает данные, отфильтровывает все страны со значением region.value равным “Aggregates” (которые Всемирный банк использует для нереальных групп стран), а затем группирует оставшиеся страны по регионам region.

код View Model
import Foundation
import SwiftUI

class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    // Group real countries by region.
    @Published var groupedCountries: [String: [Country]] = [:]
    
    @MainActor
    func fetchCountries() async {
        // Use a per_page parameter high enough to include most countries.
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            print("Invalid URL")
            return
        }
        
        do {
            let (data, _) = try await URLSession.shared.data(from: url)
            let response = try JSONDecoder().decode(CountryResponse.self, from: data)
            
            // Filter out aggregates - only include countries whose region value is not "Aggregates"
            let realCountries = response.countries.filter { $0.region.value != "Aggregates" }
            self.countries = realCountries
            
            // Group the filtered countries by region.
            groupedCountries = Dictionary(grouping: realCountries, by: { $0.region.value })
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
}

3. SwiftUI Views

Основной List View:

Список стран сгруппирован в разделы Section по регионам (с названием региона в качестве заголовка). Нажатие на конкретную страну покажет подробную дополнительную информацию о стране в CountryDetailView.

код ContentView и CountryDetailView :
import SwiftUI

struct ContentView: View {
    @StateObject var viewModel = CountriesViewModel()
    
    var body: some View {
        NavigationView {
            List {
                // Sort region names alphabetically.
                ForEach(viewModel.groupedCountries.keys.sorted(), id: \.self) { region in
                   Section(header: Text(region)) {
                      if let countriesInRegion = viewModel.groupedCountries[region] {
                        ForEach(countriesInRegion) { country in
                          NavigationLink(destination: CountryDetailView(country: country)) {
                                    Text(country.name)
                          }
                        }
                      }
                   }
                }
            }
            .navigationTitle("World Countries")
            .task {
                await viewModel.fetchCountries()
            }
        }
    }
}

Подробный CountryDetailView: показывает дополнительную информацию о выбранной стране.

struct CountryDetailView: View {
    let country: Country
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
                HStack {
                    Text("Region:")
                    Spacer()
                    Text(country.region.value)
                }
                HStack {
                    Text("Income Level:")
                    Spacer()
                    Text(country.incomeLevel.value)
                }
                HStack {
                    Text("ISO Code:")
                    Spacer()
                    Text(country.iso2Code)
                }
            }
            
            Section(header: Text("Location")) {
                HStack {
                    Text("Latitude:")
                    Spacer()
                    Text(country.latitude)
                }
                HStack {
                    Text("Longitude:")
                    Spacer()
                    Text(country.longitude)
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Объяснение

  1. Фильтрация реальных стран:

В методе View Model fetchCountries() после декодирования JSON мы отфильтровываем все страны, значение value региона region которых равно «Aggregates». Этот шаг гарантирует, что в вашем списке появятся только суверенные государства.

  1. Группировка по региону:

Оставшиеся страны затем группируются в словарь с помощью Dictionary(grouping:by:) с ключом region.value.

  1. Отображение данных:

SwiftUI список List использует раздел Section для каждого региона region, а нажатие на строку показывает подробное CountryDetailView c дополнительной информацией о стране.

В этом примере показано, как отображать только «реальные» страны, сгруппированные по региону. При необходимости вы можете дополнительно настроить критерии фильтрации. Удачного кодирования!

Версия 2. Запускаем приложение. Получаем результат:

18dc1e6e000bd0151825064033eee917.png

Сейчас в списке стран только реальные страны Мира, нет никаких агрегатов AGGREGATES. Кроме того, страны сгруппированы по географическим регионам region.

Что касается кода, то ChatGPT o3-mini справился прекрасно.

Добавляем численность населения population и ВВП gdp

Теперь мы хотим добавить численность населения population и ВВП gdp для каждой страны:

7b1ebc7916ca515a1d5e5b09830c5906.png

добавь численность населения population и ВВП gdp и флаг к каждой стране. Используй эмодзи для флага.

В результате мы получаем рассуждения, которые длятся 25 секунд:

8ed3b7c707064556ca29c0d638225830.pngИ вот их перевод:

Обогащение данных

Чтобы обогатить набор данных по странам данными о населении, ВВП и флаге, я использую API Всемирного банка. Население и ВВП берутся из определенных endpoints, а эмодзи флага выводится из кода страны.

Оценка эффективности API

Я рассматриваю либо отдельные вызовы для данных каждой страны, что требует больших затрат, либо массовый вызов indicator endpoint для оптимизации обработки путем объединения результатов.

Расширение модели

Я интегрирую поля population и gdp для населения и ВВП в модель страны Country, одновременно выводя эмодзи флага из ISO2 кода с помощью расширения extension Swift. Этот подход прост и эффективен.

Преобразование выбранных данных

Я думаю о получении данных о населении population и ВВП gdp путем выполнения раздельных API вызовов для множества стран, а затем анализа выбранных JSON данных с целью создания словаря для эффективного преобразования данных.

Реализация многопоточных вызовов

Объединение многопоточных выборок данных для населения population и ВВП gdp в View Model. Эти значения пока отсутствуют в модели страны Country, поэтому их можно передать непосредственно в View для интеграции.

Улучшение модели

Я думаю о добавлении дополнительных свойств для населения population и ВВП gdp в модель страны Country. Эти значения, извлеченные из разных endpoints, можно было бы предоставить отдельно или интегрировать с помощью вычисляемых свойств для ясности.

Улучшение обработки данных

Я думаю о том, следует ли добавлять дополнительные Optional переменные var для населения population и ВВП gdp в структуру страны Country, хранящуюся отдельно в View Model. Этот подход поддерживает четкую, управляемую структуру данных.

Настройка View Model

Я помещаю данные о населении population и ВВП gdp в словари внутри View Model, которые обновляются сразу же после выборки стран. Это обеспечивает организованное и актуальное управление данными.

Управление данными

Я настраиваю View Model для хранения данных о населении population и ВВП gdp в словарях. Это включает многопоточную выборку этих значений после выборки данных о странах, что обеспечивает плавный и организованный процесс выборки.

Улучшение обработки данных

Я настраиваю View Model для управления данными о населении population и ВВП gdp в словарях Dictionary, синхронизированных с идентификаторами соответствующих им стран, что обеспечивает эффективный и организованный поиск данных.

Обеспечение согласованности

Использование id с трехбуквенным ISO кодом для стран countries упрощает точную “привязку” данных о населении population и ВВП gdp из API Всемирного банка.

Точное сопоставление данных

Обеспечение того, чтобы трехбуквенные ISO коды в структуре страны Country правильно соответствовали countryiso3code API Всемирного банка для точной “привязки” данных о населении population и ВВП gdp.

Эффективная организация данных

Создание новых структур для данных о населении population и ВВП gdp для упрощения сопоставления по коду страны, что обеспечивает согласованность с API ответами response. Такой подход приведет к более четкой обработке и анализу данных.

Точная “привязка” данных

Я работаю над структурами для обработки данных о населении population и ВВП gdp, обеспечивая точную “привязку” данных по коду страны. Такой подход оптимизирует ясность и анализ данных.

Обновление модели

Я добавляю асинхронные async запросы для выборки данных о населении population и ВВП gdp, “привязывая” результаты выборки по коду страны с соответствующими словарями для эффективного управления данными и анализа.

Создание асинхронных функций

Я совершенствую асинхронные async функции для выборки данных о населении population и ВВП gdp по странам, декодирую их в словари и обрабатываю ошибки для обеспечения точности данных.

Улучшение UI

Я работаю над отображением населения population, ВВП gdp и эмодзи флага для каждой страны в View. Использование расширения String для эмодзи флага обеспечивает безупречное, интуитивно понятное представление данных.

Форматирование значений ВВП

Я создаю основной View со списком List для четкого отображения отформатированных данных о ВВП gdp и населении population, включая отсутствующие данные как «N/A», используя number formatters и условный рендеринг.

Ниже приведен обновленный полный пример. В этой версии мы:

  • Получаем список «реальных» стран (фильтруя агрегаты “Aggregates”)

  • В многопоточном режиме получаем последние данные о населении (индикатор «SP.POP.TOTL») и ВВП (индикатор «NY.GDP.MKTP.CD») для каждой страны (используя данные за последний год, например, 2022)

  • Вычисляем эмодзи флага из двухбуквенного ISO кода страны

  • Отображаем флаг, название, население и ВВП каждой страны в списке (сгруппированном по регионам)

1. Модели данных Data Model

Мы используем ту же модель Country (декодирование из массива верхнего уровня) и добавляем расширение extension для преобразования флагов в эмодзи. Мы также определяем простые модели для ответов response индикаторов Indicator.

код Data Model
import Foundation

// MARK: - Models
// This struct is used to decode the top-level array.
// We ignore the first element (metadata) and then decode the second element as an array of Country.
struct CountryResponse: Codable {
    let countries: [Country]
    
    // Custom initializer to decode the top-level array.
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        // Decode (and ignore) the metadata.
        _ = try container.decode(Meta.self)
        // Now decode the countries array.
        countries = try container.decode([Country].self)
    }
}
// Metadata about the response (we don't use it in this sample).
struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: String
    let total: Int
}
// The Country model - note that we use the "id" field from the API as the unique identifier.
struct Country: Codable, Identifiable {
    // The API's "id" is the country code.
    let id: String
    let iso2Code: String
    let name: String
    let region: Category
    let incomeLevel: Category
    let lendingType: Category
    let capitalCity: String
    let longitude: String
    let latitude: String
}
// A helper type for nested category fields (like region, incomeLevel, etc.)
struct Category: Codable {
    let id: String
    let value: String
}
//------
// MARK: - Indicator API Models
// Response to decode indicator data
struct IndicatorResponse: Codable {
    let data: [IndicatorData]
    
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        _ = try container.decode(Meta.self)
        data = try container.decode([IndicatorData].self)
    }
}
struct IndicatorData: Codable {
    let indicator: Indicator?
    let country: IndicatorCountry?
    let countryiso3code: String?
    let date: String?
    let value: Double?
    let unit: String?
    let obs_status: String?
    let decimal: Int?
}
struct Indicator: Codable {
    let id: String?
    let value: String?
}
struct IndicatorCountry: Codable {
    let id: String?
    let value: String?
}
// MARK: - Flag Emoji Extension
extension String {
    /// Converts a 2-letter country code into its corresponding flag emoji.
    var flagEmoji: String {
        self.uppercased().unicodeScalars.compactMap { scalar -> String? in
            guard let flagScalar = UnicodeScalar(127397 + scalar.value) else { return nil }
            return String(flagScalar)
        }.joined()
    }
}

2. View Model

View Model теперь выбирает список стран countries, фильтрует агрегаты “Aggregates”,, а затем — используя async let — выбирает последние данные о населении population и ВВП gdp для всех стран из endpoint индикатора. Мы сохраняем эти значения в словарях (ключом к которым служит трехбуквенный код страны), чтобы View могло их найти.

код View Model:
import SwiftUI
class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    // Group real countries by region.
    @Published var groupedCountries: [String: [Country]] = [:]
    
    // Indicator dictionaries: country id -> value
    @Published var populationData: [String: Int] = [:]
    @Published var gdpData: [String: Double] = [:]
    
    @MainActor
    func fetchCountries() async {
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            print("Invalid URL")
            return
        }
        
        do {
            let (data, _) = try await URLSession.shared.data(from: url)
            let response = try JSONDecoder().decode(CountryResponse.self, from: data)
            
            // Filter out non‑sovereign aggregates (assume region value "Aggregates" means not a real country)
            let realCountries = response.countries.filter { $0.region.value != "Aggregates" }
            self.countries = realCountries
            groupedCountries = Dictionary(grouping: realCountries, by: { $0.region.value })
            
            // Fetch population and GDP concurrently.
            async let popResult = fetchPopulation()
            async let gdpResult = fetchGDP()
            _ = try await (popResult, gdpResult)
            
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
    
    // Fetch population (indicator "SP.POP.TOTL") for year 2022.
    func fetchPopulation() async throws {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL?format=json&per_page=500&date=2022") else { return }
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(IndicatorResponse.self, from: data)
        var dict: [String: Int] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = Int(value)
            }
        }
        await MainActor.run { self.populationData = dict }
    }
    
    // Fetch GDP (indicator "NY.GDP.MKTP.CD") for year 2022.
    func fetchGDP() async throws {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/NY.GDP.MKTP.CD?format=json&per_page=500&date=2022") else { return }
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(IndicatorResponse.self, from: data)
        var dict: [String: Double] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = value
            }
        }
        await MainActor.run { self.gdpData = dict }
    }
}

3. SwiftUI Views

В списке List теперь отображаются эмодзи флага каждой страны (вычисляется на основе двухбуквенного ISO кода), название, население population и ВВП gdp. Если значение недоступно, то отображается «N/A».

Основной View со списком List (сгруппирован по регионам):

Код ContentView и CountryDetailView
import SwiftUI

struct ContentView: View {
    @StateObject var viewModel = CountriesViewModel()
    
    var body: some View {
        NavigationView {
            List {
                ForEach(viewModel.groupedCountries.keys.sorted(), id: \.self) { region in
                    Section(header: Text(region)) {
                        if let countries = viewModel.groupedCountries[region] {
                            ForEach(countries) { country in
                                NavigationLink(destination: CountryDetailView(
                                     country: country,
                                     population: viewModel.populationData[country.id],
                                                                              
                                     gdp: viewModel.gdpData[country.id])) {
                                    HStack {
                                        // Flag emoji from iso2Code
                                        Text(country.iso2Code.flagEmoji)
                                            .font(.largeTitle)
                                        VStack(alignment: .leading) {
                                            Text(country.name)
                                                .font(.headline)
                                            HStack {
                                                if let 
                                               pop = viewModel.populationData[country.id] {
                                                    Text("Population: \(pop)")
                                                } else {
                                                    Text("Population: N/A")
                                                }
                                                Spacer()
                                                if let gdp = viewModel.gdpData[country.id] {
                                                    Text("GDP: \(gdp, specifier: "%.0f")")
                                                } else {
                                                    Text("GDP: N/A")
                                                }
                                            }
                                            .font(.subheadline)
                                            .foregroundColor(.secondary)
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .navigationTitle("World Countries")
            .task {
                await viewModel.fetchCountries()
            }
        }
    }
}

Detail View (с дополнительной информацией):

struct CountryDetailView: View {
    let country: Country
    let population: Int?
    let gdp: Double?
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Flag:")
                    Spacer()
                    Text(country.iso2Code.flagEmoji)
                        .font(.largeTitle)
                }
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
                HStack {
                    Text("Region:")
                    Spacer()
                    Text(country.region.value)
                }
                HStack {
                    Text("Income Level:")
                    Spacer()
                    Text(country.incomeLevel.value)
                }
                HStack {
                    Text("ISO Code:")
                    Spacer()
                    Text(country.iso2Code)
                }
            }
            
            Section(header: Text("Indicators")) {
                HStack {
                    Text("Population:")
                    Spacer()
                    if let pop = population {
                        Text("\(pop)")
                    } else {
                        Text("N/A")
                    }
                }
                HStack {
                    Text("GDP (USD):")
                    Spacer()
                    if let gdp = gdp {
                        Text("\(gdp, specifier: "%.0f")")
                    } else {
                        Text("N/A")
                    }
                }
            }
            
            Section(header: Text("Location")) {
                HStack {
                    Text("Latitude:")
                    Spacer()
                    Text(country.latitude)
                }
                HStack {
                    Text("Longitude:")
                    Spacer()
                    Text(country.longitude)
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Объяснение

Эмодзи флаг:

Расширение extension строки String преобразует двухбуквенный ISO код (например, «US») в соответствующий эмодзи флаг. Это используется как в списке List, так и в подробном CountryDetailView.

Население и ВВП:

Отдельные асинхронные async функции вызывают endpoints индикатора Всемирного банка для населения population и ВВП gdp за указанный год (в данном примере 2022). Результаты сохраняются в словарях, имеющих ключи по трехбуквенному коду страны.

(Этот подход по стилю похож на примеры использования URLSession с async/await

HACKINGWITHSWIFT.COM.)

Отображение данных:

В главном списке List для каждой страны отображаются флаг, название, население и ВВП (если доступно). В подробном CountryDetailView отображаются те же данные вместе с дополнительными полями.

В этом примере показано, как обогатить список стран реальными данными о населении и ВВП вместе с флаговым эмодзи в виде флага. Удачного кодирования!

Версия 3. Запускаем приложение. Получаем результат:

Выдается ошибка:

Error fetching countries: typeMismatch(Swift.String, Swift.DecodingError.Context(codingPath: [_CodingKey(stringValue: "Index 0", intValue: 0), CodingKeys(stringValue: "per_page", intValue: nil)], debugDescription: "Expected to decode String but found number instead.", underlyingError: nil))

(Ошибка при выборке стран: typeMismatch(Swift.String, Swift.DecodingError.Context(codingPath: [_CodingKey(stringValue: "Index 0", intValue: 0), CodingKeys(stringValue: "per_page", intValue: nil)], debugDescription: "Ожидается декодирование строки String, но вместо этого найдено число.", underlyingError: nil))

Поэтому информация о численности населения Population и ВВП GDP показывается как N/A как в основном списке стран, так и в дополнительной информации о стране.

6d422e0a486ac79313998407873859f2.png

Это опять связано с декодированием метаданных индикатора endpoint Indicator.

У нас используется одна и та же Модель Meta для метаданных:

// Metadata about the response (we don't use it in this sample).
struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: String
    let total: Int

Как для endpoint country при выборке стран:

 struct CountryResponse: Codable {
    let countries: [Country]
    
    // Custom initializer to decode the top-level array.
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        // Decode (and ignore) the metadata.
        _ = try container.decode(Meta.self)
        // Now decode the countries array.
        countries = try container.decode([Country].self)
    }
}

… так и для endpoint Indicator при выборке численности населения и ВВП:

// MARK: - Indicator API Models
// Response to decode indicator data
struct IndicatorResponse: Codable {
    let data: [IndicatorData]
    
    init(from decoder: Decoder) throws {
        var container = try decoder.unkeyedContainer()
        _ = try container.decode(Meta.self)
        data = try container.decode([IndicatorData].self)
    }
}

Но судя по ошибке и просмотру “живых” JSON данных для численности населения, мы видим, что per_page в метаданных indicator является НЕ String, a число Int ):

69ca81b5fc5f8f5dce266aaaa9dac9ce.png

Все ИИ плохо работают с неаккуратно спроектированными человеком структурами.

И в этой ситуации ChatGPT удивила очень интересным решением.

Корректируем полe “per_page” в Индикаторе

Давайте сообщим об этом ChatGPT o3-mini:

30b8d95e7d6ad78670a41e210d518e24.png

В Meta для CountryResponse поле “per_page” является строкой String, a Meta для IndicatorResponse поле “per_page” является целым числом Int

В результате мы получаем рассуждения, которые длятся 10 секунд:

af78f60a42382a16c721ff79242883a1.pngВот их перевод:

Устранение несоответствий ТИПов

Я работаю над несоответствиями между 'per_page' как String в CountryResponse и Int в IndicatorDataResponse. Решение: пользовательский Decodable для унификации этих ТИПов.

Создание универсального ТИПа

Я разрабатываю IntOrString ТИП, который может управлять декодированием как Int, так и String. Этот подход может устранить несоответствие ТИПов 'per_page'. Теперь следующим шагом будет интеграция с ТИПом Meta.

Разработка решений

Я собираю воедино пользовательский ТИП IntOrString для декодирования per_page, специфичного для каждой endpoint. Этот адаптивный метод обеспечивает эффективное управление ТИПом Meta, поддерживая код оптимизированным и актуальным.

Повышение гибкости данных

Я создаю сообщение для устранения несоответствия в "per_page" в разных API. Реализация гибкого ТИПа для декодирования обеспечивает плавную интеграцию и согласованность данных.

Разработка решения

Я разрабатываю ТИП FlexibleInt для искусной обработки декодирования из Int или String, гарантируя, что поле Meta "per_page" останется согласованным, будь то целое число Int или строка String.

Когда API возвращает одно и то же поле, используя разные ТИПы (например, «per_page» как String в одном ответе response и как Int в другом), хорошим подходом является создание пользовательского ТИПа, который может декодировать любой из них. Например, вы можете определить ТИП (здесь он называется FlexibleInt), который пытается декодировать Int напрямую, а если это не удается, пытается декодировать String, а затем преобразовать его в Int. Затем вы используете этот ТИП в своей модели Meta.

Ниже приведен пример:

import Foundation

// A type that decodes either an Int or a String convertible to an Int.
struct FlexibleInt: Codable {
    let value: Int

    init(from decoder: Decoder) throws {
        let container = try decoder.singleValueContainer()
        if let intValue = try? container.decode(Int.self) {
            self.value = intValue
        } else if let stringValue = try? container.decode(String.self),
                  let intValue = Int(stringValue) {
            self.value = intValue
        } else {
            throw DecodingError.dataCorruptedError(
                in: container,
                debugDescription: "Expected Int or String convertible to Int"
            )
        }
    }
    
    func encode(to encoder: Encoder) throws {
        var container = encoder.singleValueContainer()
        try container.encode(value)
    }
}

// Update the Meta model to use FlexibleInt for per_page.
struct Meta: Codable {
    let page: Int
    let pages: Int
    let per_page: FlexibleInt  // now flexible
    let total: Int
}

Теперь, как в CountryResponse, так и в IndicatorDataResponse (или любом другом ответе response, который использует объект Meta), вы можете использовать этот же ТИП Meta. Такой подход гарантирует, что независимо от того, возвращает ли API «per_page» как строку String или как целое число Int, ваш код сможет декодировать его согласованно.

Объяснение

FlexibleInt:

Пользовательский ТИП сначала пытается декодировать как Int. Если это не удается, он декодирует String и преобразует его в Int. Если ни то, ни другое не работает, он выдает ошибку.

Модель Мeta:

Вместо того, чтобы определять "per_page" как фиксированный ТИП (Int или String), мы определяем его как FlexibleInt. Это позволяет использовать одну и ту же модель для обеих endpoints, где API возвращает другой ТИП для этого поля.

Это решение позволяет вашим моделям быть устойчивыми к небольшим несоответствиям API.

Версия 4. Запускаем приложение. Получаем результат:

15e34751913a2f3baa5b72bd7153651b.png

Приложение отлично работает - ошибок нет, но есть предупреждения:

266be672c8b652bc66b0e30d1c56f1dd.png

Избавляемся от предупреждений

Давайте попросим ChatGPT o3-mini разобраться с этими предупреждениями:

33c8a10a870137f45ff15e0dbea50499.png

ТИП, который “выводится из контекста” для константы ‘popResult’, это ‘()’, что может быть неожиданным. ТИП, который “выводится из контекста” для константы ‘gdpResult’, это ‘()’, что может быть неожиданным.

В результате мы получаем рассуждения, которые длятся 13 секунд:

c2ada3af7c40a5d99e449b36b8eec22b.pngВот их перевод:

Оценка выходных данных функций

Я собираю информацию о том, что fetchPopulation() и fetchGDP() возвращают Void. Это, в свою очередь, приводит к тому, что popResult и gdpResult имеют ТИП (), что неожиданно. Пришло время переосмыслить подход.

Возвращаясь к многопоточности

Я уточняю, как обрабатывать асинхронные async функции, сравнивая последовательные вызовы с try await против async let. Последовательные вызовы могут упростить обработку ТИПов и сократить количество ошибок.

Оценка вариантов

Я планирую различные способы одновременного вызова асинхронных async функций. Использование try await с ThrowingTaskGroup(of:) кажется самым простым и эффективным решением.

Управление многопоточностью

Я выясняю, как использовать асинхронные async функции и одновременно await их с помощью try await. Такой подход управляет ожидаемыми ТИПами и поддерживает эффективность обработки.

Баланс многопоточности

Я работаю над вариантами многопоточных асинхронных async вызовов функций, рассматривая передовой опыт для обеспечения эффективности и соответствия ожидаемым ТИПам. Хм, дайте подумать: эффективная многопоточность — это ключ.

Выбор решения

Я рассматриваю возможность удаления назначений для асинхронных функций, чтобы избежать предупреждений. Явные аннотации ТИПов или подчеркивания _ могут помочь. Такой подход может упростить процесс.

Разбор многопоточности

Я работаю над асинхронными вызовами функций, чтобы оптимизировать многопоточность. Явные аннотации ТИПов или подчеркивания _ могут помочь избежать предупреждений и обеспечить плавную обработку возвращаемых типов Void.

Выравнивание возвращаемых значений функций

Я гарантирую, что асинхронные вызовы функций соответствуют ожиданиям ТИПа Void. Явные аннотации ТИПов или подчеркивания _ помогают избежать предупреждений, улучшая процесс кодирования.

Предупреждение появляется, потому что ваши асинхронные async функции возвращают Void, поэтому привязка async let выводит из контекста” ТИП () (Void). Чтобы убрать предупреждение, вы можете явно аннотировать ТИП как Void или просто await их, не пытаясь захватить значение, которое вам не нужно. Например, обновите свой код следующим образом:

// In your fetchCountries() method
async let popResult: Void = fetchPopulation()
async let gdpResult: Void = fetchGDP()

try await popResult
try await gdpResult

В качестве альтернативы, если результаты вас вообще не интересуют, вы можете просто вызывать их последовательно:

try await fetchPopulation()
try await fetchGDP()

Использование явных аннотаций ТИПов (как в первом примере) дает понять, что вы ожидаете Void, и устраняет предупреждение “inferred type ()” («выведенный из контекста ТИП - ()»).

Используем второй альтернативный способ.

// Fetch population and GDP concurrently.
         //   async let popResult = fetchPopulation()
         //   async let gdpResult = fetchGDP()
             try await  fetchPopulation()
             try await fetchGDP()

У нас есть еще предупреждения:

75652e66221ec5a4694e88d0f353c4b7.png

Давайте попросим ChatGPT o3-mini разобраться с этими предупреждениями:

184f96d906ab1b7ad1668db869a607b7.png

ссылка на захваченную переменную var 'dict' в многопоточном коде, это ошибка в режиме Swift 6

В результате мы получаем рассуждения, которые длятся 17 секунд:

1eeabb080b3c77ee1b8f86a4a82b6c52.pngВот их перевод:

Устранение ошибки многопоточности

Довольно интересно, что Swift 6 отмечает проблемы с изменяемыми переменными в многопоточном коде. Чтобы исправить это,сделайте назначение локальным переменным в асинхронных замыканиях, обеспечивая неизменяемость.

Исследование проблем многопоточности

Я проверяю, является ли предупреждение Swift 6 о захвате переменной var 'dict' в многопоточном замыкании действительным. Проблема возникает во время выполнения блока MainActor.run, который захватывает изменяемую переменную 'dict'.

Смягчение изменяемости

Хм, я думаю сделать 'dict' неизменяемой переменной или скопировать её перед замыканием. Мы выполним назначение переменной за пределами замыкания, что безопасно и безошибочно. Swift 6 заставляет применять эти передовые практики.

Эта ошибка обычно возникает, когда изменяемая переменная (например, ваш локальный словарь 'dict') захватывается многопоточное замыкание. Один из способов исправить это — создать неизменяемую копию (константу let) словаря после того, как вы закончите его сборку, а затем использовать ее в замыкании MainActor. Например, обновите свои функции следующим образом:

код fetchPopulation() и fetchGDP()
func fetchPopulation() async throws {
    guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL?format=json&per_page=500&date=2022") else { return }
    let (data, _) = try await URLSession.shared.data(from: url)
    let decoded = try JSONDecoder().decode(PopulationDataResponse.self, from: data)
    var dict: [String: Int] = [:]
    for item in decoded.data {
        if let code = item.countryiso3code, let value = item.value {
            dict[code] = Int(value)
        }
    }
    // Create an immutable copy before passing it to MainActor
    let result = dict
    await MainActor.run {
        self.populationData = result
    }
}

func fetchGDP() async throws {
    guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/NY.GDP.MKTP.CD?format=json&per_page=500&date=2022") else { return }
    let (data, _) = try await URLSession.shared.data(from: url)
    let decoded = try JSONDecoder().decode(GDPDataResponse.self, from: data)
    var dict: [String: Double] = [:]
    for item in decoded.data {
        if let code = item.countryiso3code, let value = item.value {
            dict[code] = value
        }
    }
    let result = dict
    await MainActor.run {
        self.gdpData = result
    }
}

Объяснение

  • Неизменяемая копия: после создания вашего изменяемого словаря (dict) назначьте его константе (let result = dict). Это гарантирует, что замыкание, переданное в MainActor.run, захватит неизменяемое значение, что безопасно в многопоточных контекстах.

  • Замыкание MainActor.run: теперь замыкание использует result (константу let) для обновления вашего @Published свойства, избегая ошибки многопоточности.

Это должно устранить ошибку «reference to capture var 'dict'» в Swift 6 режиме.

Если я нахожусь в режиме Swift 5:

f1b736accff90af99b9271f8af76c1e7.png

… то предупреждения исчезли:


6a0f4a88915ace52306a59c8dd8b826b.png56059fdf8edd757d7742af29bef99855.png

Swift 6 concurrency

Но если я переключусь в Swift 6 режим:

79235ed0656337476c5604f35f0c0ea5.png

То вернутся не просто предупреждения, a ошибки, поскольку в режиме Swift 6 strict concurrency на уровне компиляции обнаруживаются ошибки, связанные с “гонкой данных” (data races):

cdb3a3473a0fc21a8e941a04faf92639.png22111d702da3a6d0c7a0655282ed05a1.png

Давайте сообщим об этих ошибках ChatGPT o3-mini:

cdbd80fec898247b22991c27fd28d36f.png

Посылка «self» рискует вызвать гонку данных в коде await MainActor.run {

self.populationData = result } в режиме Swift 6

В результате мы получаем рассуждения, которые длятся 6 секунд:

e76fa939142514aa52de6843e646325e.pngВот их перевод:

Управление гонками данных

Я изучаю обработку «self» в actor-изолированных замыканиях, чтобы избежать “гонок данных” (data races). Обеспечение надлежащей изоляции «self», особенно в fetchCountries, является ключевым фактором.

Определение лучшей настройки

Чтобы обеспечить безопасное назначение «self» в fetchCountries, маркировка всей View Model как @MainActor является многообещающим вариантом. Это эффективно предотвращает “гонки данных” (data races).

Обеспечение безопасности данных

Чтобы избежать “гонок данных” (data races), я рекомендую маркировать весь View Model класс class как @MainActor. Этот метод сохраняет «self» изолированным как MainActor, гарантируя безопасность обновлений свойств.

Сделаем акцент на изоляции

Хорошо, дайте-ка подумать. Маркировка всей View Model как @MainActor гарантирует, что свойства изолированы как MainActor, избегая “гонок данных” (data races) без необходимости захватывать «self» внутри MainActor.run.

Распространенное решение — убедиться, что ваша View Model уже изолирована как MainActor, чтобы вам не пришлось захватывать self внутри блока MainActor.run. Другими словами, пометьте свою View Model с помощью @MainActor. Например:

код View Model
import SwiftUI

@MainActor
class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    @Published var groupedCountries: [String: [Country]] = [:]
    @Published var populationData: [String: Int] = [:]
    @Published var gdpData: [String: Double] = [:]
    
    func fetchCountries() async {
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            print("Invalid URL")
            return
        }
        
        do {
            let (data, _) = try await URLSession.shared.data(from: url)
            let response = try JSONDecoder().decode(CountryResponse.self, from: data)
            
            // Filter out aggregates
            let realCountries = response.countries.filter { $0.region.value != "Aggregates" }
            self.countries = realCountries
            self.groupedCountries = Dictionary(grouping: realCountries, by: { $0.region.value })
            
            // Fetch population and GDP concurrently.
            try await  fetchPopulation()
            try await fetchGDP()            
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
    
    // Fetch Population (indicator "SP.POP.TOTL")
    func fetchPopulation() async throws {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL?format=json&per_page=500&date=2022") else { return }
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(PopulationDataResponse.self, from: data)
        var dict: [String: Int] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = Int(value)
            }
        }
        // Since self is already isolated to the main actor, assign directly.
        self.populationData = dict
    }
    
    // Fetch GDP (indicator "NY.GDP.MKTP.CD")
    func fetchGDP() async throws {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/NY.GDP.MKTP.CD?format=json&per_page=500&date=2022") else { return }
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(GDPDataResponse.self, from: data)
        var dict: [String: Double] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = value
            }
        }
        self.gdpData = dict
    }
}

Зачем использовать @MainActor?

Отмечая свою View Model с помощью @MainActor, вы гарантируете, что все свойства и функции в ней будут выполняться на MainActor. Таким образом, когда вы обновляете свои @Published свойства (например, populationData или gdpData), вы уже находитесь в основном потоке (main thread) и вам не нужно беспокоиться о захвате self в замыкании MainActor.run, что в Swift 6 может привести к “гонкам данных”(data races), если self НЕ изолирован.

Такой подход должен устранить предупреждение или сообщение об ошибке о “гонке данных” (data races), одновременно гарантируя безопасное обновление self на MainActor.

Версия 5. Запускаем приложение. Получаем результат:

f6f926d9e655fa099266aca06f228246.gif

Есть небольшая задержка в появлении данных на экране, которая, возможно, связана с @MainActor.

Все fetch функции выполняем на background

Давайте попробуем все fetch функции выполнить на background.

b5b181f4dda553f7b40dd4bb023fa105.png

Как запустить функцию fetch в фоновом режиме, а не в основном потоке?

В результате мы получаем рассуждения, которые длятся 6 секунд:

c72d809e17d8adbd1e5b36fb2e82576c.pngВот их перевод:

Обработка сетевых вызовов

Хорошо, дайте подумать. Задача заключается в управлении функцией fetch в View Model, которая является @MainActor, гарантируя, что обновления UI находятся в основном потоке, а сетевые вызовы — в фоновом потоке.

Размышляя о фоновом выполнении

Мне интересно, как nonisolated методы в классе @MainActor могут работать в фоновом режиме. Интересно, что маркировка их как nonisolated позволяет это сделать.

Управление nonisolated методами

Я рассматриваю возможность использования nonisolated методов для таких задач, как выборка данных и их декодирование. Просто предостерегаю от доступа к состоянию или обновлению UI из этих методов, чтобы сохранить actor изоляцию.

Навигация по nonisolated функции

Я думаю о том, чтобы маркировать функции как nonisolated в классе @MainActor, гарантируя, что обновления self будут на MainActor, избегая при этом прямого доступа к MainActor изолированным состояниям.

Балансировка выполнения

Я разбираюсь, как маркировка методов как nonisolated в классе @MainActor позволяет выполнять фоновое выполнение без прямого доступа к свойствам, MainActor изолированным.

Обеспечение безопасного потока данных

Отмечая fetch функции как nonisolated в классе @MainActor, я гарантирую, что они будут работать в фоновых потоках. Прямой доступ к MainActor свойствам не допускается; должны возвращаться только вычисленные значения.

Обеспечение безопасных обновлений

Я отмечаю, что nonisolated функции в классе @MainActor должны возвращать только вычисленные значения, а обновления должны выполняться безопасно на MainActor для поддержания принципов потокобезопасности и изоляции.

Ниже приведен пример View Model, которая помечена @MainActor (чтобы ее @Published свойства безопасно обновлялись в основном потоке), но использует nonisolated фоновые функции для выполнения выборки из сети и декодирования. Эти nonisolated функции возвращают выбранные данные, а не обновляют состояние напрямую. Затем MainActor функция loadCountries ожидает await эти результаты и обновляет состояние UI.

код view Model
@MainActor
class CountriesViewModel: ObservableObject {
    @Published var countries: [Country] = []
    // Group real countries by region.
    @Published var groupedCountries: [String: [Country]] = [:]
    
    // Indicator dictionaries: country id -> value
    @Published var populationData: [String: Int] = [:]
    @Published var gdpData: [String: Double] = [:]
    
    func loadCountries() async {
        do {
            // This network call runs off the background thread.
            let fetchedCountries = try await fetchCountriesInBackground()
            // Now update the UI on the main actor
            countries = fetchedCountries
            groupedCountries = Dictionary(grouping: fetchedCountries, 
                                                by: { $0.region.value })
            
            // Fetch population and GDP concurrently.
            // This network call runs off the background thread.
            async let popResult = fetchPopulation()
            async let gdpResult = fetchGDP()
            let (pop, gdp) = try await (popResult, gdpResult)
            // Now update the UI on the main actor
            self.populationData = pop
            self.gdpData = gdp
            
        } catch {
            print("Error fetching countries: \(error)")
        }
    }
    
    nonisolated private func fetchCountriesInBackground() async throws -> [Country] {
        guard let url = URL(string: "https://api.worldbank.org/v2/country?format=json&per_page=300") else {
            throw URLError(.badURL)
        }
        let (data, _) = try await URLSession.shared.data(from: url)
        let response = try JSONDecoder().decode(CountryResponse.self, from: data)
        // Filter out aggregates here if desired.
        return response.countries.filter { $0.region.value != "Aggregates" }
    }
    
    // Fetch population (indicator "SP.POP.TOTL") for year 2022.
    nonisolated private func fetchPopulation() async throws -> [String: Int] {
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/SP.POP.TOTL?format=json&per_page=500&date=2022") else { return [:]}
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(IndicatorResponse.self, from: data)
        var dict: [String: Int] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = Int(value)
            }
        }
              return dict
    }
    
    // Fetch GDP (indicator "NY.GDP.MKTP.CD") for year 2022.
    nonisolated private func fetchGDP() async throws ->  [String: Double]{
        guard let url = URL(string: "https://api.worldbank.org/v2/country/all/indicator/NY.GDP.MKTP.CD?format=json&per_page=500&date=2022") else { return   [:]}
        let (data, _) = try await URLSession.shared.data(from: url)
        let decoded = try JSONDecoder().decode(IndicatorResponse.self, from: data)
        var dict: [String: Double] = [:]
        for item in decoded.data {
            if let code = item.countryiso3code, let value = item.value {
                dict[code] = value
            }
        }
        return dict
    }
}

Как это работает:

  1. nonisolated функции:

  • Функции fetchCountriesInBackground(), fetchPopulation() и fetchGDP() помечены как nonisolated, поэтому они могут работать в фоновом потоке. Они выполняют сетевые вызовы и декодирование JSON без доступа к какому-либо изолированному состоянию @MainActor.

  1. loadCountries() на MainActor:

  • Функция loadCountries() — это функция @MainActor, которая вызывает эти nonisolated функции (используя await). После завершения фоновой работы она обновляет @Published свойства (например, страны countries, groupedCountries и т. д.) на MainActor.

  1. Многопоточная выборка:

  • Данные о населении и ВВП выбираются одновременно с помощью синтаксиса async let, а их результаты ожидаются await вместе.

Этот шаблон четко отделяет тяжелую работу по выборке из сети/декодированию (выполняемую вне основного потока) от обновлений UI (которые должны выполняться на MainActor). Удачного кодирования!

Версия 6. Запускаем приложение.

Получаем результат:

9a3c7bca444e24ef9b7453f20acd33af.gif

Это все, что мы можем сделать с многопоточностью.

Добавляет карту страны

6640a2f46d3969529083d6111097bf2d.png

Покажи страну на карте в CountryDetailView

В результате мы получаем рассуждения, которые длятся 8 секунд:

0d38e9e185c034dbc18b2032b60b56e5.pngВот их перевод:

Обновление View

Я интегрирую MapKit View в CountryDetailView с помощью SwiftUI. Это включает import MapKit, преобразование широты latitude и долготы longitude страны в Doubles и настройку координат региона.

Улучшение отображения

Я добавляю новый раздел Section в CountryDetailView для отображения карты. Это включает инициализацию координат региона с широтой latitude и долготой longitude страны country и включение маркера MapMarker для подсвечивания местоположения столицы страны на карте.

Обеспечение географической точности

Я убеждаюсь, что широта latitude и долгота longitude правильно преобразованы в Double для MapKit. Затем я проверяю модель данных на предмет правильной обработки ТИПов данных и создания аннотаций на карты.

Установка границ территории

Я определяю View Map(coordinateRegion: $region, annotationItems: [country]) с координатами региона, центрированного на широте latitude и долготе longitude страны, обеспечивая точность представления географических данных.

Ниже приведена обновленная версия CountryDetailView, которая добавляет View Map, показывающее местоположение страны. В этом примере мы создаем MKCoordinateRegion (используя широту и долготу из модели Country, которые хранятся в виде строк String), а затем отображаем карту с маркером в этом месте. Мы добавляем этот новый раздел Section “Map” (“Карта”) в форму Form под другими разделами Section.

Обязательно импортируйте import MapKit в свой файл.

Код CountryDetailView:
import SwiftUI
import MapKit

struct CountryDetailView: View {
    let country: Country
    let population: Int?
    let gdp: Double?
    
    // Create a region state from the country's latitude/longitude.
    @State private var region: MKCoordinateRegion
    
    init(country: Country, population: Int?, gdp: Double?) {
        self.country = country
        self.population = population
        self.gdp = gdp
        
        // Convert latitude/longitude strings to Double.
        let lat = Double(country.latitude) ?? 0.0
        let lon = Double(country.longitude) ?? 0.0
        _region = State(initialValue: MKCoordinateRegion(
            center: CLLocationCoordinate2D(latitude: lat, longitude: lon),
            span: MKCoordinateSpan(latitudeDelta: 10, longitudeDelta: 10)
        ))
    }
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Flag:")
                    Spacer()
                    Text(country.iso2Code.flagEmoji)
                        .font(.largeTitle)
                }
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
             }
            
            Section(header: Text("Map")) {
                // Display the map with a marker for the country.
                Map(coordinateRegion: $region, annotationItems: [country]) { country in
                    // For annotation, convert the coordinate strings to Double.
                    let lat = Double(country.latitude) ?? 0.0
                    let lon = Double(country.longitude) ?? 0.0
                    return MapMarker(coordinate: 
                                    CLLocationCoordinate2D(latitude: lat, longitude: lon))
                }
                .frame(height: 300)
                .clipShape(RoundedRectangle(cornerRadius: 10))
            }
            
            Section(header: Text("Indicators")) {
                HStack {
                    Text("Population:")
                    Spacer()
                    if let pop = population {
                        Text("\(pop)")
                    } else {
                        Text("N/A")
                    }
                }
                HStack {
                    Text("GDP (USD):")
                    Spacer()
                    if let gdp = gdp {
                        Text("\(gdp, specifier: "%.0f")")
                    } else {
                        Text("N/A")
                    }
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Объяснение

  1. Импорт import MapKit:

Мы импортируем import MapKit для использования SwiftUI View карты Map и соответствующих ТИПов.

  1. Координаты региона:

В инициализаторе init мы преобразуем широту latitude и долготу longitude страны country (которые хранятся в виде строк String) в значения Double. Они используются для создания начального MKCoordinateRegion с диапазоном (latitudeDelta и longitudeDelta), который определяет уровень масштабирования на карте.

Раздел карты Map Section:

Добавлен новый раздел Section с заголовком «Map». Map View ограничено состоянием region. Мы предоставляем массив [country], содержащий одну страну country, в качестве annotationItems, чтобы MapMarker отображался в координатах этой страны.

Это обновление отображает местоположение страны на карте в подробном View.

Версия 7. Запускаем приложение - получаем результат:

97025734b1ac9846d313735d3da6cd07.gif

Всё прекрасно работает, но у нас есть предупреждения:

7e8d88019b23bd4e9c95de216ab98b86.png

init(coordinateRegion:, interactionModes: ) was deprecated in iOS 17.0, use Map initializers that use MapContentBuilder instead.

(init(coordinateRegion:, interactionModes: ) устарел в iOS 17.0, вместо этого используйте инициализаторы Map с MapContentBuilder.)

eb95c68c987f3ff5d1ffd84ef91be916.png

MapMarker was deprecated in iOS 17.0, use Marker along with Map initializers that use MapContentBuilder instead.

(MapMarker устарел в iOS 17.0, вместо него используйте Marker вместе с Map инициализаторами c MapContentBuilder.)

Обновление SwiftUI Map для iOS 17

0af6641ae4599b9e3493b61e7bc329a4.png

init(coordinateRegion:, interactionModes: ) устарел в iOS 17.0, вместо этого используйте инициализаторы Map с MapContentBuilder. MapMarker устарел в iOS 17.0, вместо него используйте Marker вместе с Map инициализаторами c MapContentBuilder.

В результате мы получаем рассуждения, которые длятся 8 секунд:

fc0f2f8f3175bf5c547ff437a906d0ec.pngВот их перевод:

Рассмотрение MapCameraPosition

С новыми изменениями API в iOS 17 вместо старого MapPosition теперь используется новый MapCameraPosition. Это предполагает переход к более ориентированной на камеру обработке Map Views. Я припоминаю, что MapCameraPosition конкретно описывает положение камеры, что, по-видимому, является альтернативой устаревшим методам. Я должен подтвердить детали, но это определенно новый подход API, представленный в iOS 17.

Обновление до MapCameraPosition

В iOS 17 новый API карт Map в SwiftUI включает MapCameraPosition, заменяя старый MapPosition. Для этого требуются обновления кода. Мне нужно обеспечить использование инициализатора Map(cameraPosition: Binding<MapCameraPosition>). Новая структура MapCameraPosition включает такие свойства, как центр камеры, наклон, направление, высота и т. д.

Я думаю, что обновленный код должен правильно использовать MapCameraPosition, инициализируя его с координатами coordinates и другими параметрами. После установки мы можем привязать его к карте и включить маркеры. Позвольте мне еще раз проверить детали.

Ниже представлена ​​обновленная версия CountryDetailView, которая использует новый MapCameraPosition iOS 17. В этом примере мы используем новую @State переменную var position: MapCameraPosition. Затем мы передаем эту позицию position в новый инициализатор карты Map (position: $position). Маркер Marker также используется с его обязательными параметрами.

Убедитесь, что вы компилируете с помощью Xcode 15 (или более поздней версии), а ваш deployment target установлен ​​на iOS 17 или более позднюю версию.

код CountryDetailView:
import MapKit

struct CountryDetailView: View {
    let country: Country
    let population: Int?
    let gdp: Double?
    
    // Use the new state property for the map's position.
        @State private var position: MapCameraPosition
   
    
    init(country: Country, population: Int?, gdp: Double?) {
        self.country = country
        self.population = population
        self.gdp = gdp
        
        // Convert latitude/longitude strings to Double.
        let lat = Double(country.latitude) ?? 0.0
        let lon = Double(country.longitude) ?? 0.0
        
        // Initialize the MapPCameraPosition
                _position = State(initialValue:.region(MKCoordinateRegion(
                    center: CLLocationCoordinate2D(latitude: lat, longitude: lon), span: MKCoordinateSpan(latitudeDelta: 10, longitudeDelta: 10)
                )))
    }
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Flag:")
                    Spacer()
                    Text(country.iso2Code.flagEmoji)
                        .font(.largeTitle)
                }
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
            }
            
            Section(header: Text("Map")) {
              
                // Use the new iOS 17 Map initializer with a MapContentBuilder.
               Map (position: $position){
                   // For annotation, convert the coordinate strings to Double.
                   let lat = Double(country.latitude) ?? 0.0
                   let lon = Double(country.longitude) ?? 0.0
                   Marker ("",coordinate: CLLocationCoordinate2D(latitude: lat, longitude: lon))
                                }
                .frame(height: 300)
                .clipShape(RoundedRectangle(cornerRadius: 10))
            }
            
            Section(header: Text("Indicators")) {
                HStack {
                    Text("Population:")
                    Spacer()
                    if let pop = population {
                        Text("\(pop)")
                    } else {
                        Text("N/A")
                    }
                }
                HStack {
                    Text("GDP (USD):")
                    Spacer()
                    if let gdp = gdp {
                        Text("\(gdp, specifier: "%.0f")")
                    } else {
                        Text("N/A")
                    }
                }
            }
        }
        .navigationTitle(country.name)
    }
}

Объяснение

  • MapCameraPosition:

Мы создаем @State свойство с именем cameraPosition ТИПа MapCameraPosition. В инициализаторе мы преобразуем широту и долготу страны (представленные как строки String) в CLLocationCoordinate2D. Затем мы инициализируем камеру с этим центром, а также высотой (уровнем масштабирования), углом наклона и направлением.

  • Инициализатор карты Map:

Новый инициализатор iOS 17 Map(cameraPosition: $cameraPosition) { … } принимает привязку к MapCameraPosition и использует хвостовое замыкание для определения содержимого карты. В этом случае мы размещаем Marker в нужном месте.

  • Маркер Marker:

Инициализатору Marker теперь требуются координаты coordinate и параметр положения position (мы используем .automatic).

Это переработанное View использует MapCameraPosition, чтобы камерой вашей карты Map можно было управлять с помощью нового API iOS 17. Удачного кодирования!

У нас нет предупреждений и ошибок компиляции.

Версия 8. Запускаем приложение - Получаем результат:

2998d1204cbcf29182b27eded9915b76.gif

Местоположение столицы страны на карте

Но надо сказать, что географические координаты широта latitude и долгота longitude в структуре struct Country, полученные с помощью API Всемирного Банка и соответствующие стране Country, соответствуют местоположению, близкому к расположению столицы страны capitalCity, но не точному её местоположению:

// The Country model - note that we use the "id" field from the API as the unique identifier.
struct Country: Codable, Identifiable {
    // The API's "id" is the country code.
    let id: String
    let iso2Code: String
    let name: String
    let region: Category
    let incomeLevel: Category
    let lendingType: Category
    let capitalCity: String
    let longitude: String  // широта
    let latitude: String   // долгота
}

Давайте получим координаты точного местоположения столицы и покажем столицу на карте:

c2b82022da81a93ce57866d28dde9835.png

Добавь на карту маркер Marker столицы страны

В результате мы получаем рассуждения, которые длятся 10 секунд:

116980a3bd29aca977fc9aeec684314f.pngВот их перевод:

Уточнение информации о маркере Marker столицы

Итак, пользователь хочет добавить маркер Marker на карту Map для столицы страны. CountryDetailView уже имеет маркер Marker в центре страны с использованием положения камеры, но теперь нам нужен еще один маркер Marker для столицы. Проблема в том, что модель Country содержит только строку String для столицы «capitalCity» (название города), а не координаты coordinates (широта latitude и долгота longitude), необходимые для маркера Marker. Я думаю, нам нужно будет уточнить, где получить эти координаты coordinates — предоставляет ли их API Всемирного банка или нам нужен другой источник?

Рассматриваем маркер Marker для столицы на карте Map

Модель Country имеет координату (широта latitude и долгота longitude) для центра страны, а свойство «capitalCity» — это просто строка String с названием города, а не координаты. Это означает, что мне нужно получить координаты для столицы, но API их не предоставляет. Вариант первый: я мог бы использовать geocode для названия столицы, хотя это асинхронно и требует вызова геокодирования geocode. Вариант второй: предположим, что столица является центром страны, но это может быть неточно. Последнее может потребовать добавления решения геокодирования, например CLGeocoder.

Геокодирование маркера Marker столицы

API Всемирного банка предоставляет название столицы capitalCity, но не ее координаты, поэтому геокодирование необходимо для получения ее положения, которое будет выполнено асинхронно. Если данные недоступны, я мог бы предположить, что столица находится в центре страны, хотя это не всегда точно. Для реализации я мог бы показать, как использовать CLGeocoder для получения координат столицы. В примере я предлагаю добавить переменную состояния capitalCoordinate и использовать .task для вызова геокодирования внутри View с резервным вариантом отображения маркера Marker центра страны , если геокодирование не удается или столица для данной страны отсутствует.

Ниже приведена обновленная версия CountryDetailView, которая добавляет второй маркер Marker для столицы страны country. В этом примере мы используем новый API карт Map iOS 17 с MapCameraPosition для управления камерой карты и добавляем два маркера:

  1. Маркер в центре страны (с широтой latitude /долготы longitude страны country) и

  2. Маркер для столицы. Поскольку API Всемирного банка предоставляет только название столицы capitalCity, мы используем CLGeocoder для асинхронного получения ее координат. (Обязательно импортируйте import CoreLocation.)

Если геокодирование столицы прошло успешно, маркер добавляется с меткой Label, указывающей название столицы.

Ниже приведен полный код:
import SwiftUI
import MapKit
import CoreLocation

struct CountryDetailView: View {
    let country: Country
    let population: Int?
    let gdp: Double?
    
    // Use MapCameraPosition to control the camera.
    @State private var position: MapCameraPosition
    // Will hold the capital city coordinate after geocoding.
    @State private var capitalCoordinate: CLLocationCoordinate2D? = nil
    
    init(country: Country, population: Int?, gdp: Double?) {
        self.country = country
        self.population = population
        self.gdp = gdp
        
        // Convert the country's latitude/longitude (as Strings) to a coordinate.
        let lat = Double(country.latitude) ?? 0.0
        let lon = Double(country.longitude) ?? 0.0
        let center = CLLocationCoordinate2D(latitude: lat, longitude: lon)
        _position = State(initialValue:.region(MKCoordinateRegion( center: center, 
                    span: MKCoordinateSpan(latitudeDelta: 10, longitudeDelta: 10)
                )))
    }
    
    var body: some View {
        Form {
            Section(header: Text("General")) {
                HStack {
                    Text("Flag:")
                    Spacer()
                    Text(country.iso2Code.flagEmoji)
                        .font(.largeTitle)
                }
                HStack {
                    Text("Capital:")
                    Spacer()
                    Text(country.capitalCity)
                }
            }
            
            Section(header: Text("Indicators")) {
                HStack {
                    Text("Population:")
                    Spacer()
                    if let pop = population {
                        Text("\(pop)")
                    } else {
                        Text("N/A")
                    }
                }
                HStack {
                    Text("GDP (USD):")
                    Spacer()
                    if let gdp = gdp {
                        Text("\(gdp, specifier: "%.0f")")
                    } else {
                        Text("N/A")
                    }
                }
            }
            
            Section(header: Text("Map")) {
                // Use the new initializer that accepts a binding to MapCameraPosition.
                Map(position: $cameraPosition) {
                    // Marker for the country's center.
                   let lat = Double(country.latitude) ?? 0.0
                   let lon = Double(country.longitude) ?? 0.0
                  
                   // Marker for the country's center.
                   if country.capitalCity == "" {
                       Marker("\(country.name)", coordinate: 
                              CLLocationCoordinate2D(latitude: lat, longitude: lon))
                   }
                    
                    // If the capital city's coordinate is available, add a marker.
                    if let capitalCoordinate = capitalCoordinate {
                        Marker(coordinate: capitalCoordinate, position: .automatic) {
                            // Use a Label to indicate the capital city.
                            Label("Capital: \(country.capitalCity)", 
                                                       systemImage: "building.columns")
                        }
                    }
                }
                .frame(height: 300)
                .task {
                    await geocodeCapital()
                }
            }
        }
        .navigationTitle(country.name)
    }
    
    // Geocode the capital city name to obtain its coordinates.
     nonisolated func geocodeCapital() async {
        let geocoder = CLGeocoder()
        do {
            let placemarks = try await geocoder.geocodeAddressString(country.capitalCity)
            if let location = placemarks.first?.location {
               await MainActor.run {
                    capitalCoordinate = location.coordinate
               }
            }
        } catch {
            print("Error geocoding capital city: \(error)")
        }
    }
}

Объяснение

  • Map и Camera:

Мы инициализируем MapCameraPosition, используя широту latitude и долготу longitude страны country. Этот новый API iOS 17 позволяет нам управлять камерой через эту привязку.

  • Два маркера:

• Первый маркер Marker размещается в центре камеры (представляя координаты страны).

• Второй маркер Marker добавляется только в том случае, если координаты столицы coordinates получены с помощью геокодирования. Мы используем новый инициализатор маркера Marker, который принимает метку Label с параметром position: .automatic, чтобы позволить SwiftUI автоматически позиционировать маркер.

  • Геокодирование столицы:

В модификаторе .task в разделе Section карты Map мы вызываем geocodeCapital(). Эта функция использует CLGeocoder для асинхронного геокодирования названия столицы. В случае успеха она обновляет переменную состояния capitalCoordinate, что, в свою очередь, заставляет View добавлять маркер Marker.

Это решение использует новый API карт из iOS 17 (включая MapCameraPosition и Marker) и добавляет дополнительный маркер Marker для столицы. Удачного кодирования!

ad14d04c72ecaf1e594b4fcf953a14b4.png

запускай geocodeCapital() в фоновом режиме.

В результате мы получаем рассуждения, которые длятся 7 секунд:

Вот их перевод:

Запуск geocodeCapital() в фоновом режиме

Пользователь хочет запустить geocodeCapital() в фоновом потоке. Сейчас мы используем CLGeocoder с асинхронным API и начиная с iOS 16 доступен асинхронный метод geocodeAddressString.

Чтобы запустить geocodeCapital() в фоновом режиме, я мог бы обернуть его в Task.detached или пометить как nonisolated и вызвать его оттуда. Поскольку мы находимся в SwiftUI View, оно по умолчанию запускается на MainActor.

Запуск geocodeCapital() в фоновом режиме

Чтобы запустить geocodeCapital() в фоновом потоке, я хочу использовать Task.detached для асинхронной обработки работы геокодирования. Однако, поскольку мне нужно обновить capitalCoordinate, который является свойством @State, я должен убедиться, что обновление UI происходит на MainActor.

Итак, мой план — создать Task.detached для выполнения логики геокодирования, а затем использовать MainActor.run для обновления координат coordinate после получения результата. Но я буду осторожен с захватом self в Task.detached.

Ниже представлена ​​обновленная реализация вашей функции geocodeCapital(), которая запускает геокодирование в фоновом потоке с помощью Task.detached. В этой версии мы захватываем только необходимое значение (строку String capitalCity), чтобы Task.detached не захватывала self без необходимости. После завершения фоновой работы мы обновляем capitalCoordinate на MainActor.

код geocodeCapital():
func geocodeCapital() async {
    // Capture the capital city string so that the detached task doesn't capture self.
    let capitalCity = country.capitalCity
    
    let coordinate: CLLocationCoordinate2D? = await Task.detached { [capitalCity] in
        let geocoder = CLGeocoder()
        do {
            let placemarks = try await geocoder.geocodeAddressString(capitalCity)
            return placemarks.first?.location?.coordinate
        } catch {
            print("Error geocoding capital city: \(error)")
            return nil
        }
    }.value

    if let coordinate = coordinate {
        await MainActor.run {
            self.capitalCoordinate = coordinate
        }
    }
}

Версия 9. Запускаем приложение - Получаем результат:

d645539d63b8a9fe00043769d7dcd49c.gif

Заключение

ChatGPT o3-mini на настоящий момент является лучшим ИИ для iOS разработки.

В предложенной задаче разработки iOS приложения Countries он:

  1. Без каких либо проблем справился с декодированием JSON данных

  2. Использовал современную async / await систему работы с многопоточностью

  3. Предложил несколько вариантов перехода на Swift 6 strict concurrency с помощью @MainActor и маркировки функций выборки как nonisolated или использования Task.detached.

  4. Сначала предложил старый Map API с Map (coordinateRegion: $region, annotationItems: [country]) и MapMaker, но после получения соответствующих предупреждений перешел на новый API c Map (position: $position) и Maker.

  5. Использовал CLGeocoder() для получения более точных географических координат столицы страны и Task.detached для запуска в фоновом режиме.

  6. Рассуждения краткие, по делу и длятся от 1 до 25 секунд, среднее время 8 секунд.

  7. Могу рекомендовать в качестве обучающего материала для iOS разработчиков.

Источник

  • 12.11.25 09:37 patricialovick86

    How To Recover Your Bitcoin Without Falling Victim To Scams: A  Testimony Experience With Capital Crypto Recover Services, Contact Telegram: @Capitalcryptorecover Dear Everyone, I would like to take a moment to share my positive experience with Capital Crypto Recover Services. Initially, I was unsure if it would be possible to recover my stolen bitcoins. However, with their expertise and professionalism, I was able to fully recover my funds. Unfortunately, many individuals fall victim to scams in the cryptocurrency space, especially those involving fraudulent investment platforms. However, I advise caution, as not all recovery services are legitimate. I personally lost $273,000 worth of Bitcoin from my Binance account due to a deceptive platform. If you have suffered a similar loss, you may be considering crypto recovery, The Capital Crypto Recover is the most knowledgeable and effective Capital Crypto Recovery Services assisted me in recovering my stolen funds within 24 hours, after getting access to my wallet. Their service was not only prompt but also highly professional and effective, and many recovery services may not be trustworthy. Therefore, I highly recommend Capital Crypto Recover to you. i do always research and see reviews about their service, For assistance finding your misplaced cryptocurrency, get in touch with them, They do their jobs quickly and excellently, Stay safe and vigilant in the crypto world. Contact: [email protected]  You can reach them via email at [email protected] OR Call/Text Number +1 (336)390-6684 his contact website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 13.11.25 19:01 peggy09

    i Lost $200,000 to a phishing scam in 2022. Funds went to a mixer service. Davies traced 70% through Ethereum layers. He teamed with an exchange to freeze the rest. i got $140,000 back in six months. Hiring Davies means clear steps. You share details. He checks facts. Then, the hunt begins. Expect ups and downs, but his plan keeps it steady. you can reach out to him by sending an email to anthonydaviestech {@} gmail com

  • 13.11.25 20:05 [email protected]

    A scam cost me $72,000 in USDT. It shook me up. USDT is a stablecoin linked to the dollar. Its value stays even. I believed I found a safe path to build my wealth. At the start, all seemed fine. My account grew to $120,000 in profits. But when I tried to withdraw, the site locked me out. No way to get in. No money left. Fear took over. I felt stuck and alone. These frauds hit crypto investors often. They lure with fast riches. Then they steal your cash and disappear. Billions vanish each year from such schemes. I looked for aid in every spot. Online boards. Help chats. None helped. Then a buddy offered support. He had dealt with the same issue once. He mentioned Sylvester Bryant. My friend praised his expertise. I contacted him at once. His email is [email protected]. Sylvester Bryant changed everything. He heard my tale with no blame. His crew jumped in quickly. They checked all scam details first. One by one, they followed my lost USDT trail. They used software to track the blockchain. That is the open log of coin transfers. It reveals fund paths. Scammers try to cover their steps. Bryant's team went far. They reached out to related platforms and services. Each day brought progress. No easy ways. They shared updates with me always. Each message and talk stayed open and true. Finally, they got back every dollar. My $52,000 returned whole. The effort needed drive and resolve. Bryant's fairness shone through. He added no secret costs. Only fair pay for the job. My worry faded. I relaxed once more. Nights grew calm. My faith in recovery grew strong. If fraud stole your funds, move fast. Contact Sylvester Bryant. He treats such cases with skill. Email at [email protected]. Or use WhatsApp at +1 512 577 7957 or +44 7428 662701. Do not delay. Reclaim what is yours.

  • 13.11.25 20:05 [email protected]

    A scam cost me $72,000 in USDT. It shook me up. USDT is a stablecoin linked to the dollar. Its value stays even. I believed I found a safe path to build my wealth. At the start, all seemed fine. My account grew to $120,000 in profits. But when I tried to withdraw, the site locked me out. No way to get in. No money left. Fear took over. I felt stuck and alone. These frauds hit crypto investors often. They lure with fast riches. Then they steal your cash and disappear. Billions vanish each year from such schemes. I looked for aid in every spot. Online boards. Help chats. None helped. Then a buddy offered support. He had dealt with the same issue once. He mentioned Sylvester Bryant. My friend praised his expertise. I contacted him at once. His email is [email protected]. Sylvester Bryant changed everything. He heard my tale with no blame. His crew jumped in quickly. They checked all scam details first. One by one, they followed my lost USDT trail. They used software to track the blockchain. That is the open log of coin transfers. It reveals fund paths. Scammers try to cover their steps. Bryant's team went far. They reached out to related platforms and services. Each day brought progress. No easy ways. They shared updates with me always. Each message and talk stayed open and true. Finally, they got back every dollar. My $52,000 returned whole. The effort needed drive and resolve. Bryant's fairness shone through. He added no secret costs. Only fair pay for the job. My worry faded. I relaxed once more. Nights grew calm. My faith in recovery grew strong. If fraud stole your funds, move fast. Contact Sylvester Bryant. He treats such cases with skill. Email at [email protected]. Or use WhatsApp at +1 512 577 7957 or +44 7428 662701. Do not delay. Reclaim what is yours.

  • 13.11.25 22:51 ashley11

    Recover All Lost Cryptocurrency From Scammers

  • 13.11.25 22:52 ashley11

    Recover All Lost Cryptocurrency From Scammers TREQORA INTEL has exhibited unparalleled strength in the realm of recovery. They stand out as the premier team to collaborate with if you encounter withdrawal difficulties from the platform where you’ve invested. Recently, I engaged with them to recover over a million dollars trapped in an investment platform I’d been involved with for months. I furnished their team with every detail of the investment via Email (SUPPORT @ TREQORA . C O M”), including accounts, names, and wallet addresses to which I sent the funds. This decision proved to be the best I’ve made, especially after realizing I had been sc**med by the company. Initially, I harbored doubts about their services, but I was proven wrong. TREQORA INTEL ensures exemplary service delivery and ensures the perpetrators face justice. They employ advanced techniques to ensure you regain access to your funds. Understandably, many individuals who have fallen victim to investment scams may still harbor trepidation about engaging in online services again due to the trauma of being sc**med. However, I implore you to take action. Seek assistance from TREQORA INTEL today and witness their remarkable capabilities firsthand. Among the myriad of hackers available, TREQORA INTEL stands head and shoulders above the rest. While I may not have sampled all of them, the few I attempted to work with previously were unhelpful and solely focused on depleting the little funds I had left. I am grateful that I resisted their enticements, and despite the time it took me to discover TREQORA INTEL, they ultimately fulfilled my primary objective. I am confident they will execute the task proficiently. Without their intervention, I would have remained despondent and perplexed indefinitely. Don’t make the error of entrusting sc**mers to rectify a sc*m; the consequences are evident. Email:support@treqora. com,WhatsApp: ‪‪‪‪‪‪+1 (7 7 3) 9 7 7 - 7 8 7 7‬‬‬‬ ‬‬,Website: Treqora. com. How Can I Recover My Lost Bitcoin From A Romance Scammer-HIRE TREQORA INTEL

  • 13.11.25 23:36 daisy

    i Lost $200,000 to a phishing scam in 2022. Funds went to a mixer service. Davies traced 70% through Ethereum layers. He teamed with an exchange to freeze the rest. i got $140,000 back in six months. Hiring Davies means clear steps. You share details. He checks facts. Then, the hunt begins. Expect ups and downs, but his plan keeps it steady. you can reach out to him by sending an email to anthonydaviestech {@} gmail com

  • 14.11.25 03:42 harristhomas7376

    "In the crypto world, this is great news I want to share. Last year, I fell victim to a scam disguised as a safe investment option. I have invested in crypto trading platforms for about 10yrs thinking I was ensuring myself a retirement income, only to find that all my assets were either frozen, I believed my assets were secure — until I discovered that my BTC funds had been frozen and withdrawals were impossible. It was a devastating moment when I realized I had been scammed, and I thought my Bitcoin was gone forever, Everything changed when a close friend recommended the Capital Crypto Recover Service. Their professionalism, expertise, and dedication enabled me to recover my lost Bitcoin funds back — more than €560.000 DEM to my BTC wallet. What once felt impossible became a reality thanks to their support. If you have lost Bitcoin through scams, hacking, failed withdrawals, or similar challenges, don’t lose hope. I strongly recommend Capital Crypto Recover Service to anyone seeking a reliable and effective solution for recovering any wallet assets. They have a proven track record of successful reputation in recovering lost password assets for their clients and can help you navigate the process of recovering your funds. Don’t let scammers get away with your hard-earned money – contact Email: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 14.11.25 03:42 harristhomas7376

    "In the crypto world, this is great news I want to share. Last year, I fell victim to a scam disguised as a safe investment option. I have invested in crypto trading platforms for about 10yrs thinking I was ensuring myself a retirement income, only to find that all my assets were either frozen, I believed my assets were secure — until I discovered that my BTC funds had been frozen and withdrawals were impossible. It was a devastating moment when I realized I had been scammed, and I thought my Bitcoin was gone forever, Everything changed when a close friend recommended the Capital Crypto Recover Service. Their professionalism, expertise, and dedication enabled me to recover my lost Bitcoin funds back — more than €560.000 DEM to my BTC wallet. What once felt impossible became a reality thanks to their support. If you have lost Bitcoin through scams, hacking, failed withdrawals, or similar challenges, don’t lose hope. I strongly recommend Capital Crypto Recover Service to anyone seeking a reliable and effective solution for recovering any wallet assets. They have a proven track record of successful reputation in recovering lost password assets for their clients and can help you navigate the process of recovering your funds. Don’t let scammers get away with your hard-earned money – contact Email: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 14.11.25 08:38 [email protected]

    A scam cost me $72,000 in USDT. It shook me up. USDT is a stablecoin linked to the dollar. Its value stays even. I believed I found a safe path to build my wealth. At the start, all seemed fine. My account grew to $120,000 in profits. But when I tried to withdraw, the site locked me out. No way to get in. No money left. Fear took over. I felt stuck and alone. These frauds hit crypto investors often. They lure with fast riches. Then they steal your cash and disappear. Billions vanish each year from such schemes. I looked for aid in every spot. Online boards. Help chats. None helped. Then a buddy offered support. He had dealt with the same issue once. He mentioned Sylvester Bryant. My friend praised his expertise. I contacted him at once. His email is [email protected]. Sylvester Bryant changed everything. He heard my tale with no blame. His crew jumped in quickly. They checked all scam details first. One by one, they followed my lost USDT trail. They used software to track the blockchain. That is the open log of coin transfers. It reveals fund paths. Scammers try to cover their steps. Bryant's team went far. They reached out to related platforms and services. Each day brought progress. No easy ways. They shared updates with me always. Each message and talk stayed open and true. Finally, they got back every dollar. My $52,000 returned whole. The effort needed drive and resolve. Bryant's fairness shone through. He added no secret costs. Only fair pay for the job. My worry faded. I relaxed once more. Nights grew calm. My faith in recovery grew strong. If fraud stole your funds, move fast. Contact Sylvester Bryant. He treats such cases with skill. Email at [email protected]. Or use WhatsApp at +1 512 577 7957 or +44 7428 662701. Do not delay. Reclaim what is yours.

  • 14.11.25 10:39 MATT PHILLIP

    I never imagined I’d fall for a crypto romance scam but it happened. Over the course of a few months, I sent nearly $184,000 worth of Bitcoin to someone I genuinely believed I was building a future with. When they disappeared without a trace, I was left heartbroken, humiliated, and financially devastated. For a long time, I didn’t tell anyone. I felt ashamed. But eventually, while searching for answers, I came across a Reddit thread that mentioned Agent Jasmine Lopez a crypto recovery agent. I reached out, not expecting much. To my surprise, she treated me with kindness, not judgment. She used advanced tools like blockchain forensics, IP tracing, and smart contract analysis and with persistence and legal support, she was able to recover nearly 85% of what I lost. I know not everyone gets that kind of outcome, but thanks to [email protected] WhatsApp at +44 736-644-5035, I’ve started to reclaim not just my assets, but my confidence and peace of mind. If you’re going through something similar, you’re not alone and there is hope.

  • 14.11.25 12:12 daisy

    i Lost $200,000 to a phishing scam in 2022. Funds went to a mixer service. Davies traced 70% through Ethereum layers. He teamed with an exchange to freeze the rest. i got $140,000 back in six months. Hiring Davies means clear steps. You share details. He checks facts. Then, the hunt begins. Expect ups and downs, but his plan keeps it steady. you can reach out to him by sending an email to anthonydaviestech {@} gmail com

  • 14.11.25 15:07 caridad

    Perth Family Saved After $400K Crypto Scam Our family in Perth, WA invested through what we thought was a trusted platform but ended up being a fraudulent investment scheme. We lost nearly AUD 420,000 worth of BTC and USDT. Luckily, a friend recommended Bitreclaim.com. Their 24/7 customer support assigned us a smart contract audit specialist who asked for wallet addresses and transaction hashes. With their forensic blockchain trace, they recovered over 5.1 BTC directly into our hardware wallet. For Perth investors: don’t give up hope. Submit a case at Bitreclaim.com immediately. Their professionalism and success rate in Australia is unmatched.

  • 14.11.25 18:33 justinekelly45

    FAST & RELIABLE CRYPTO RECOVERY SERVICES Hire iFORCE HACKER RECOVERY I was one of many victims deceived by fake cryptocurrency investment offers on Telegram. Hoping to build a retirement fund, I invested heavily and ended up losing about $470,000, including borrowed money. Just when I thought recovery was impossible, I found iForce Hacker Recovery. Their team of crypto recovery experts worked tirelessly and helped me recover my assets within 72 hours, even tracing the scammers involved. I’m deeply thankful for their professionalism and highly recommend their services to anyone facing a similar situation.  Website: ht tps://iforcehackers. co m WhatsApp: +1 240-803-3706   Email: iforcehk @ consultant. c om

  • 14.11.25 20:56 juliamarvin

    Firstly, the importance of verifying the authenticity of online communications, especially those about financial matters. Secondly, the potential for recovery exists even in cases where it seems hopeless, thanks to innovative services like TechY Force Cyber Retrieval. Lastly, the cryptocurrency community needs to be more aware of these risks and the available solutions to combat them. My experience serves as a warning to others to be cautious of online impersonators and never to underestimate the potential for recovery in the face of theft. It also highlights the critical role that professional retrieval services can play in securing your digital assets. In conclusion, while the cryptocurrency space offers unparalleled opportunities, it also presents unique challenges, and being informed and vigilant is key to navigating this landscape safely. W.h.a.t.s.A.p.p.. +.15.6.1.7.2.6.3.6.9.7. M.a.i.l T.e.c.h.y.f.o.r.c.e.c.y.b.e.r.r.e.t.r.i.e.v.a.l.@.c.o.n.s.u.l.t.a.n.t.c.o.m. T.e.l.e.g.r.a.m +.15.6.1.7.2.6.3.6.9.7

  • 15.11.25 12:47 MATT PHILLIP

    I never imagined I’d fall for a crypto romance scam but it happened. Over the course of a few months, I sent nearly $184,000 worth of Bitcoin to someone I genuinely believed I was building a future with. When they disappeared without a trace, I was left heartbroken, humiliated, and financially devastated. For a long time, I didn’t tell anyone. I felt ashamed. But eventually, while searching for answers, I came across a Reddit thread that mentioned Agent Jasmine Lopez a crypto recovery agent. I reached out, not expecting much. To my surprise, she treated me with kindness, not judgment. She used advanced tools like blockchain forensics, IP tracing, and smart contract analysis and with persistence and legal support, she was able to recover nearly 85% of what I lost. I know not everyone gets that kind of outcome, but thanks to [email protected] WhatsApp at +44 736-644-5035, I’ve started to reclaim not just my assets, but my confidence and peace of mind. If you’re going through something similar, you’re not alone and there is hope.

  • 15.11.25 14:39 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 15.11.25 14:39 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 15.11.25 15:31 MATT PHILLIP

    I never imagined I’d fall for a crypto romance scam but it happened. Over the course of a few months, I sent nearly $184,000 worth of Bitcoin to someone I genuinely believed I was building a future with. When they disappeared without a trace, I was left heartbroken, humiliated, and financially devastated. For a long time, I didn’t tell anyone. I felt ashamed. But eventually, while searching for answers, I came across a Reddit thread that mentioned Agent Jasmine Lopez a crypto recovery agent. I reached out, not expecting much. To my surprise, she treated me with kindness, not judgment. She used advanced tools like blockchain forensics, IP tracing, and smart contract analysis and with persistence and legal support, she was able to recover nearly 85% of what I lost. I know not everyone gets that kind of outcome, but thanks to [email protected] WhatsApp at +44 736-644-5035, I’ve started to reclaim not just my assets, but my confidence and peace of mind. If you’re going through something similar, you’re not alone and there is hope.

  • 15.11.25 15:52 [email protected]

    A scam cost me $72,000 in USDT. It shook me up. USDT is a stablecoin linked to the dollar. Its value stays even. I believed I found a safe path to build my wealth. At the start, all seemed fine. My account grew to $120,000 in profits. But when I tried to withdraw, the site locked me out. No way to get in. No money left. Fear took over. I felt stuck and alone. These frauds hit crypto investors often. They lure with fast riches. Then they steal your cash and disappear. Billions vanish each year from such schemes. I looked for aid in every spot. Online boards. Help chats. None helped. Then a buddy offered support. He had dealt with the same issue once. He mentioned Sylvester Bryant. My friend praised his expertise. I contacted him at once. His email is [email protected]. Sylvester Bryant changed everything. He heard my tale with no blame. His crew jumped in quickly. They checked all scam details first. One by one, they followed my lost USDT trail. They used software to track the blockchain. That is the open log of coin transfers. It reveals fund paths. Scammers try to cover their steps. Bryant's team went far. They reached out to related platforms and services. Each day brought progress. No easy ways. They shared updates with me always. Each message and talk stayed open and true. Finally, they got back every dollar. My $52,000 returned whole. The effort needed drive and resolve. Bryant's fairness shone through. He added no secret costs. Only fair pay for the job. My worry faded. I relaxed once more. Nights grew calm. My faith in recovery grew strong. If fraud stole your funds, move fast. Contact Sylvester Bryant. He treats such cases with skill. Email at [email protected]. Or use WhatsApp at +1 512 577 7957 or +44 7428 662701. Do not delay. Reclaim what is yours.

  • 16.11.25 14:43 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 16.11.25 14:44 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 16.11.25 20:38 [email protected]

    A scam cost me $72,000 in USDT. It shook me up. USDT is a stablecoin linked to the dollar. Its value stays even. I believed I found a safe path to build my wealth. At the start, all seemed fine. My account grew to $120,000 in profits. But when I tried to withdraw, the site locked me out. No way to get in. No money left. Fear took over. I felt stuck and alone. These frauds hit crypto investors often. They lure with fast riches. Then they steal your cash and disappear. Billions vanish each year from such schemes. I looked for aid in every spot. Online boards. Help chats. None helped. Then a buddy offered support. He had dealt with the same issue once. He mentioned Sylvester Bryant. My friend praised his expertise. I contacted him at once. His email is [email protected]. Sylvester Bryant changed everything. He heard my tale with no blame. His crew jumped in quickly. They checked all scam details first. One by one, they followed my lost USDT trail. They used software to track the blockchain. That is the open log of coin transfers. It reveals fund paths. Scammers try to cover their steps. Bryant's team went far. They reached out to related platforms and services. Each day brought progress. No easy ways. They shared updates with me always. Each message and talk stayed open and true. Finally, they got back every dollar. My $52,000 returned whole. The effort needed drive and resolve. Bryant's fairness shone through. He added no secret costs. Only fair pay for the job. My worry faded. I relaxed once more. Nights grew calm. My faith in recovery grew strong. If fraud stole your funds, move fast. Contact Sylvester Bryant. He treats such cases with skill. Email at [email protected]. Or use WhatsApp at +1 512 577 7957 or +44 7428 662701. Do not delay. Reclaim what is yours.

  • 17.11.25 03:24 johnny231

    INFO@THEBARRYCYBERINVESTIGATIONSDOTCOM is one of the best cyber hackers that i have actually met and had an encounter with, i was suspecting my partner was cheating on me for some time now but i was not sure of my assumptions so i had to contact BARRY CYBER INVESTIGATIONS to help me out with my suspicion. During the cause of their investigation they intercepted his text messages, social media(facebook, twittwer, snapchat whatsapp, instagram),also call logs as well as pictures and videos(deleted files also) they found out my spouse was cheating on me for over 3 years and was already even sending nudes out as well as money to anonymous wallets,so i deciced to file for a divorce and then when i did that i came to the understanding that most of the cryptocurrency we had invested in forex by him was already gone. BARRY CYBER INVESTIGATIONS helped me out through out the cause of my divorce with my spouse they also helped me in retrieving some of the cryptocurrency back, as if that was not enough i decided to introduce them to another of my friend who had lost her most of her savings on a bad crytpo investment and as a result of that it affected her credit score, BARRY CYBER INVESTIGATIONS helped her recover some of the funds back and helped her build her credit score, i have never seen anything like this in my life and to top it off they are very professional and they have intergrity to it you can contact them also on their whatsapp +1814-488-3301. for any hacking or pi jobs you can contact them and i assure you nothing but the best out of the job

  • 17.11.25 11:26 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 17.11.25 11:27 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 19.11.25 01:56 VERONICAFREDDIE809

    Earlier this year, I made a mistake that changed everything. I downloaded what I thought was a legitimate trading app I’d found through a Telegram channel. At first, everything looked real until I tried to withdraw. My entire investment vanished into a bot account, and that’s when the truth hit me: I had been scammed. I can’t describe the feeling. It was as if the ground dropped out from under me. I blamed myself. I felt stupid, ashamed, helpless every painful emotion at once. For a while, I couldn’t even talk about it. I thought no one would understand. But then I got connected to the best female expert AGENT Jasmine Lopez,,( [email protected] ) ,She didn’t brush me off or judge me. She took my fear seriously. She followed leads I didn’t even know existed, and identified multiple off-chain indicators and wallet clusters linked to the scammer network, she helped me understand what had truly happened behind the scenes. For the first time since everything fell apart, I felt hope. Hearing that other people students, parents, hardworking people had been targeted the same way made me realize I wasn’t alone. What happened to us wasn’t stupidity. It was a coordinated attack. We were prey in a system built to deceive. And somehow, through all the chaos, Agent Jasmine stepped in and shined a light into the darkest moment of my life. I’m still healing from the experience. It changed me. But it also reminded me that even when you think you’re at the end, sometimes a lifeline appears where you least expect it. Contact her at [email protected] WhatsApp at +44 736-644-5035.

  • 19.11.25 08:11 JuneWatkins

    I’m June Watkins from California. I never thought I’d lose my life savings in Bitcoin. One wrong click, a fake wallet update, and $187,000 vanished in seconds. I cried for days, felt stupid, ashamed, and completely hopeless. But God wouldn’t let me stay silent or defeated. A friend sent me a simple message: “Contact Mbcoin Recovery Group, they specialize in this.” I was skeptical (there are so many scammers), but something in my spirit said “try.” I reached out to Mbcoin Recovery Group through their official site and within minutes their team responded with kindness and clarity. They walked with me step by step, and stayed in constant contact. Three days later, I watched in tears as every single Bitcoin returned to my wallet, 100% recovered. God turned my mess into a message and my shame into a testimony! If you’ve lost crypto and feel it’s gone forever, don’t give up. I’m living proof that recovery is possible. Thank you, Mbcoin Recovery Group, and thank You, Jesus, for never leaving me stranded. contact: (https://mbcoinrecoverygrou.wixsite.com/mb-coin-recovery) (Email: [email protected]) (Call Number: +1 346 954-1564)

  • 19.11.25 08:26 elizabethmadison

    My name is Elizabeth Madison currently living in New York. There was a time I felt completely broken. I had trusted a fraudulent bitcoin investment organization, who turned out to be a fraudster. I sent money, believing their sweet words and promises on the interest rate I will get back in return, only to realize later that I’ve been scammed. On the day of withdrawal there was no money in my account. The pain hit deep. I couldn’t sleep, I kept asking myself how I could have been so careless, meanwhile my mom was battling with a stroke and the expenses were too much. For days, I cried and blamed myself. The betrayal, the disappointment and my mom's health issues all of this stress made me want to give up on life. But one day, I decided that sitting in pain wouldn’t solve anything. I picked myself up and chose to fight for what I lost then I came across GREAT WHIP RECOVERY CYBER SERVICES and saw how he helped people recover their funds from online fraud. I emailed all the transactions and paperwork I had with the fraudulent organization and they helped me recover all my lost money in just five days. If you have ever fallen victim to scammers, contact GREAT WHIP RECOVERY CYBER SERVICES to help you recover every penny you have lost. (Text +1(406)2729101) (Email [email protected])

  • 19.11.25 08:27 elizabethmadison

    My name is Elizabeth Madison currently living in New York. There was a time I felt completely broken. I had trusted a fraudulent bitcoin investment organization, who turned out to be a fraudster. I sent money, believing their sweet words and promises on the interest rate I will get back in return, only to realize later that I’ve been scammed. On the day of withdrawal there was no money in my account. The pain hit deep. I couldn’t sleep, I kept asking myself how I could have been so careless, meanwhile my mom was battling with a stroke and the expenses were too much. For days, I cried and blamed myself. The betrayal, the disappointment and my mom's health issues all of this stress made me want to give up on life. But one day, I decided that sitting in pain wouldn’t solve anything. I picked myself up and chose to fight for what I lost then I came across GREAT WHIP RECOVERY CYBER SERVICES and saw how he helped people recover their funds from online fraud. I emailed all the transactions and paperwork I had with the fraudulent organization and they helped me recover all my lost money in just five days. If you have ever fallen victim to scammers, contact GREAT WHIP RECOVERY CYBER SERVICES to help you recover every penny you have lost. (Text +1(406)2729101) Website https://greatwhiprecoveryc.wixsite.com/greatwhip-site (Email [email protected])

  • 19.11.25 16:30 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 19.11.25 16:30 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 20.11.25 15:55 mariotuttle94

    HIRE THE BEST HACKER ONLINE FOR CRYPTO BITCOIN SCAM RECOVERY / iFORCE HACKER RECOVERY After a security breach, my husband lost $133,000 in Bitcoin. We sought help from a professional cybersecurity team iForce Hacker Recovery they guided us through each step of the recovery process. Their expertise allowed them to trace the compromised funds and help us understand how the breach occurred. The experience brought us clarity, restored a sense of stability, and reminded us of the importance of strong digital asset and security practices.  Website: ht tps:/ /iforcehackers. c om WhatsApp: +1 240-803-3706 Email: iforcehk @ consultant. c om

  • 21.11.25 10:56 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 21.11.25 10:56 marcushenderson624

    Bitcoin Recovery Testimonial After falling victim to a cryptocurrency scam group, I lost $354,000 worth of USDT. I thought all hope was lost from the experience of losing my hard-earned money to scammers. I was devastated and believed there was no way to recover my funds. Fortunately, I started searching for help to recover my stolen funds and I came across a lot of testimonials online about Capital Crypto Recovery, an agent who helps in recovery of lost bitcoin funds, I contacted Capital Crypto Recover Service, and with their expertise, they successfully traced and recovered my stolen assets. Their team was professional, kept me updated throughout the process, and demonstrated a deep understanding of blockchain transactions and recovery protocols. They are trusted and very reliable with a 100% successful rate record Recovery bitcoin, I’m grateful for their help and highly recommend their services to anyone seeking assistance with lost crypto. Contact: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Email: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 22.11.25 04:41 VERONICAFREDDIE809

    Earlier this year, I made a mistake that changed everything. I downloaded what I thought was a legitimate trading app I’d found through a Telegram channel. At first, everything looked real until I tried to withdraw. My entire investment vanished into a bot account, and that’s when the truth hit me: I had been scammed. I can’t describe the feeling. It was as if the ground dropped out from under me. I blamed myself. I felt stupid, ashamed, helpless every painful emotion at once. For a while, I couldn’t even talk about it. I thought no one would understand. But then I got connected to the best female expert AGENT Jasmine Lopez,,( [email protected] ) ,She didn’t brush me off or judge me. She took my fear seriously. She followed leads I didn’t even know existed, and identified multiple off-chain indicators and wallet clusters linked to the scammer network, she helped me understand what had truly happened behind the scenes. For the first time since everything fell apart, I felt hope. Hearing that other people students, parents, hardworking people had been targeted the same way made me realize I wasn’t alone. What happened to us wasn’t stupidity. It was a coordinated attack. We were prey in a system built to deceive. And somehow, through all the chaos, Agent Jasmine stepped in and shined a light into the darkest moment of my life. I’m still healing from the experience. It changed me. But it also reminded me that even when you think you’re at the end, sometimes a lifeline appears where you least expect it. Contact her at [email protected] WhatsApp at +44 736-644-5035.

  • 22.11.25 22:04 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 22.11.25 22:04 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 22.11.25 22:05 wendytaylor015

    My name is Wendy Taylor, I'm from Los Angeles, i want to announce to you Viewer how Capital Crypto Recover help me to restore my Lost Bitcoin, I invested with a Crypto broker without proper research to know what I was hoarding my hard-earned money into scammers, i lost access to my crypto wallet or had your funds stolen? Don’t worry Capital Crypto Recover is here to help you recover your cryptocurrency with cutting-edge technical expertise, With years of experience in the crypto world, Capital Crypto Recover employs the best latest tools and ethical hacking techniques to help you recover lost assets, unlock hacked accounts, Whether it’s a forgotten password, Capital Crypto Recover has the expertise to help you get your crypto back. a security company service that has a 100% success rate in the recovery of crypto assets, i lost wallet and hacked accounts. I provided them the information they requested and they began their investigation. To my surprise, Capital Crypto Recover was able to trace and recover my crypto assets successfully within 24hours. Thank you for your service in helping me recover my $647,734 worth of crypto funds and I highly recommend their recovery services, they are reliable and a trusted company to any individuals looking to recover lost money. Contact email [email protected] OR Telegram @Capitalcryptorecover Call/Text Number +1 (336)390-6684 his contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 23.11.25 03:34 Matt Kegan

    SolidBlock Forensics are absolutely the best Crypto forensics team, they're swift to action and accurate

  • 23.11.25 09:54 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 23.11.25 18:01 mosbygerry

    I recently had the opportunity to work with a skilled programmer who specialized in recovering crypto assets, and the results were nothing short of impressive. The experience not only helped me regain control of my investments but also provided valuable insight into the intricacies of cryptocurrency technology and cybersecurity. The journey began when I attempted to withdraw $183,000 from an investment firm, only to encounter a series of challenges that made it impossible for me to access my funds. Despite seeking assistance from individuals claiming to be Bitcoin miners, I was unable to recover my investments. The situation was further complicated by the fact that all my deposits were made using various cryptocurrencies that are difficult to trace. However, I persisted in my pursuit of recovery, driven by the determination to reclaim my losses. It was during this time that I discovered TechY Force Cyber Retrieval, a team of experts with a proven track record of successfully recovering crypto assets. With their assistance, I was finally able to recover my investments, and in doing so, gained a deeper understanding of the complex mechanisms that underpin cryptocurrency transactions. The experience taught me that with the right expertise and guidance, even the most seemingly insurmountable challenges can be overcome. I feel a sense of obligation to share my positive experience with others who may have fallen victim to cryptocurrency scams or are struggling to recover their investments. If you find yourself in a similar situation, I highly recommend seeking the assistance of a trustworthy and skilled programmer, such as those at TechY Force Cyber Retrieval. WhatsApp (+1561726 3697) or (+1561726 3697). Their expertise and dedication to helping individuals recover their crypto assets are truly commendable, and I have no hesitation in endorsing their services to anyone in need. By sharing my story, I hope to provide a beacon of hope for those who may have lost faith in their ability to recover their investments and to emphasize the importance of seeking professional help when navigating the complex world of cryptocurrency.

  • 24.11.25 11:43 michaeldavenport238

    I was recently scammed out of $53,000 by a fraudulent Bitcoin investment scheme, which added significant stress to my already difficult health issues, as I was also facing cancer surgery expenses. Desperate to recover my funds, I spent hours researching and consulting other victims, which led me to discover the excellent reputation of Capital Crypto Recover, I came across a Google post It was only after spending many hours researching and asking other victims for advice that I discovered Capital Crypto Recovery’s stellar reputation. I decided to contact them because of their successful recovery record and encouraging client testimonials. I had no idea that this would be the pivotal moment in my fight against cryptocurrency theft. Thanks to their expert team, I was able to recover my lost cryptocurrency back. The process was intricate, but Capital Crypto Recovery's commitment to utilizing the latest technology ensured a successful outcome. I highly recommend their services to anyone who has fallen victim to cryptocurrency fraud. For assistance contact [email protected] and on Telegram OR Call Number +1 (336)390-6684 via email: [email protected] you can visit his website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 24.11.25 11:43 michaeldavenport238

    I was recently scammed out of $53,000 by a fraudulent Bitcoin investment scheme, which added significant stress to my already difficult health issues, as I was also facing cancer surgery expenses. Desperate to recover my funds, I spent hours researching and consulting other victims, which led me to discover the excellent reputation of Capital Crypto Recover, I came across a Google post It was only after spending many hours researching and asking other victims for advice that I discovered Capital Crypto Recovery’s stellar reputation. I decided to contact them because of their successful recovery record and encouraging client testimonials. I had no idea that this would be the pivotal moment in my fight against cryptocurrency theft. Thanks to their expert team, I was able to recover my lost cryptocurrency back. The process was intricate, but Capital Crypto Recovery's commitment to utilizing the latest technology ensured a successful outcome. I highly recommend their services to anyone who has fallen victim to cryptocurrency fraud. For assistance contact [email protected] and on Telegram OR Call Number +1 (336)390-6684 via email: [email protected] you can visit his website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 24.11.25 16:34 Mundo

    I wired 120k in crypto to the wrong wallet. One dumb slip-up, and poof gone. That hit me hard. Lost everything I had built up. Crypto moves on the blockchain. It's like a public record book. Once you send, that's it. No take-backs. Banks can fix wire mistakes. Not here. Transfers stick forever. a buddy tipped me off right away. Meet Sylvester Bryant. Guy's a pro at pulling back lost crypto. Handles cases others can't touch, he spots scammer moves cold. Follows money down secret paths. Mixers. Fake trades. Hidden swaps. You name it, he tracks it. this happens to tons of folks. Fat-finger a key. Miss one digit in the address. Boom. Billions vanish like that each year. I panicked. Figured my stash was toast for good. Bryant flipped the script. He jumps on hard jobs quick. Digs deep. Cracks the trail. Got my funds back safe. You're in the same boat? Don't sit there. Hit him up today. Email [email protected]. WhatsApp +1 512 577 7957. Or +44 7428 662701. Time's your enemy here. Scammers spend fast. Chains churn non-stop. Move now. Grab your cash back home.

  • 25.11.25 05:15 michaeldavenport218

    I was recently scammed out of $53,000 by a fraudulent Bitcoin investment scheme, which added significant stress to my already difficult health issues, as I was also facing cancer surgery expenses. Desperate to recover my funds, I spent hours researching and consulting other victims, which led me to discover the excellent reputation of Capital Crypto Recover, I came across a Google post It was only after spending many hours researching and asking other victims for advice that I discovered Capital Crypto Recovery’s stellar reputation. I decided to contact them because of their successful recovery record and encouraging client testimonials. I had no idea that this would be the pivotal moment in my fight against cryptocurrency theft. Thanks to their expert team, I was able to recover my lost cryptocurrency back. The process was intricate, but Capital Crypto Recovery's commitment to utilizing the latest technology ensured a successful outcome. I highly recommend their services to anyone who has fallen victim to cryptocurrency fraud. For assistance contact [email protected] and on Telegram OR Call Number +1 (336)390-6684 via email: [email protected] you can visit his website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 25.11.25 13:31 mickaelroques52

    CRYPTO TRACING AND INVESTIGATION EXPERT: HOW TO RECOVER STOLEN CRYPTO_HIRE RAPID DIGITAL RECOVERY

  • 25.11.25 13:31 mickaelroques52

    I’ve always considered myself a careful person when it comes to money, but even the most cautious people can be fooled. A few months ago, I invested some of my Bitcoin into what I believed was a legitimate platform. Everything seemed right, professional website, live chat support and even convincing testimonials. I thought I had done my homework. But when I tried to withdraw my funds, everything fell apart. My account was blocked, the so-called support team disappeared and I realized I had been scammed. The shock was overwhelming. I couldn’t believe I had fallen for it. That Bitcoin represented years of savings and sacrifices and it felt like everything had been stolen from me in seconds. I didn’t sleep for days and I was angry at myself for trusting the wrong people. In my desperation, I started searching for solutions and came across Rapid Digital Recovery. At first, I thought it was just another promise that would lead nowhere. But after speaking with them, I realized this was different. They were professional, clear and understanding. They explained exactly how they track stolen funds through blockchain forensics and what steps would be taken in my case. I gave them all the transaction details and they immediately got to work. What impressed me most was their transparency, they gave me updates regularly and kept me involved in the process. After weeks of investigation, they achieved what I thought was impossible: they recovered my stolen Bitcoin and safely returned it to my wallet. The relief I felt that day is indescribable. I went from feeling hopeless and broken to feeling like I had been given a second chance. I am forever grateful to Rapid Digital Recovery. They didn’t just recover my money, they restored my peace of mind. If you’re reading this because you’ve been scammed, please know you’re not alone and that recovery is possible. I’m living proof that with the right help, you can get your funds back... Contact Info Below WhatSapp:  + 1 414 807 1485 Email:  rapiddigitalrecovery (@) execs. com Telegram:  + 1 680 5881 631

  • 26.11.25 18:18 harristhomas7376

    "In the crypto world, this is great news I want to share. Last year, I fell victim to a scam disguised as a safe investment option. I have invested in crypto trading platforms for about 10yrs thinking I was ensuring myself a retirement income, only to find that all my assets were either frozen, I believed my assets were secure — until I discovered that my BTC funds had been frozen and withdrawals were impossible. It was a devastating moment when I realized I had been scammed, and I thought my Bitcoin was gone forever, Everything changed when a close friend recommended the Capital Crypto Recover Service. Their professionalism, expertise, and dedication enabled me to recover my lost Bitcoin funds back — more than €560.000 DEM to my BTC wallet. What once felt impossible became a reality thanks to their support. If you have lost Bitcoin through scams, hacking, failed withdrawals, or similar challenges, don’t lose hope. I strongly recommend Capital Crypto Recover Service to anyone seeking a reliable and effective solution for recovering any wallet assets. They have a proven track record of successful reputation in recovering lost password assets for their clients and can help you navigate the process of recovering your funds. Don’t let scammers get away with your hard-earned money – contact Email: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 26.11.25 18:20 harristhomas7376

    "In the crypto world, this is great news I want to share. Last year, I fell victim to a scam disguised as a safe investment option. I have invested in crypto trading platforms for about 10yrs thinking I was ensuring myself a retirement income, only to find that all my assets were either frozen, I believed my assets were secure — until I discovered that my BTC funds had been frozen and withdrawals were impossible. It was a devastating moment when I realized I had been scammed, and I thought my Bitcoin was gone forever, Everything changed when a close friend recommended the Capital Crypto Recover Service. Their professionalism, expertise, and dedication enabled me to recover my lost Bitcoin funds back — more than €560.000 DEM to my BTC wallet. What once felt impossible became a reality thanks to their support. If you have lost Bitcoin through scams, hacking, failed withdrawals, or similar challenges, don’t lose hope. I strongly recommend Capital Crypto Recover Service to anyone seeking a reliable and effective solution for recovering any wallet assets. They have a proven track record of successful reputation in recovering lost password assets for their clients and can help you navigate the process of recovering your funds. Don’t let scammers get away with your hard-earned money – contact Email: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 26.11.25 19:13 James Robert

    I am James Robert from Chicago. Few months ago, I fell victim to an online Bitcoin investment scheme that promised high returns within a short period. At first, everything seemed legitimate, their website looked professional, and the people behind it were very convincing. I invested a significant amount of money about $440,000 with the way they talk to me into investing on their bitcoin platform. Two months later I realized that it was a scam when I could no longer have  access to  my account and couldn’t withdraw my money. At first, I lost hope that I wouldn't be able to get my money back, I cried and was angry at how I even fell victim to a scam. For days after doing some research and seeking professional help online, I came across GREAT WHIP RECOVERY CYBER SERVICES and saw how they have helped people recover their money back from scammers. I reported the case immediately to them and gather every transaction detail, documentation and sent it to them. Today, I’m very happy because the GREAT WHIP RECOVERY CYBER SERVICES help me recover all my money I was scammed. You can contact GREAT WHIP RECOVERY CYBER SERVICES if you have ever fallen victim to scam. Email: [email protected] or Website https://greatwhiprecoveryc.wixsite.com/greatwhip-site

  • 26.11.25 19:13 James Robert

    I am James Robert from Chicago. Few months ago, I fell victim to an online Bitcoin investment scheme that promised high returns within a short period. At first, everything seemed legitimate, their website looked professional, and the people behind it were very convincing. I invested a significant amount of money about $440,000 with the way they talk to me into investing on their bitcoin platform. Two months later I realized that it was a scam when I could no longer have  access to  my account and couldn’t withdraw my money. At first, I lost hope that I wouldn't be able to get my money back, I cried and was angry at how I even fell victim to a scam. For days after doing some research and seeking professional help online, I came across GREAT WHIP RECOVERY CYBER SERVICES and saw how they have helped people recover their money back from scammers. I reported the case immediately to them and gather every transaction detail, documentation and sent it to them. Today, I’m very happy because the GREAT WHIP RECOVERY CYBER SERVICES help me recover all my money I was scammed. You can contact GREAT WHIP RECOVERY CYBER SERVICES if you have ever fallen victim to scam. Email: [email protected] or Website https://greatwhiprecoveryc.wixsite.com/greatwhip-site

  • 26.11.25 19:13 James Robert

    I am James Robert from Chicago. Few months ago, I fell victim to an online Bitcoin investment scheme that promised high returns within a short period. At first, everything seemed legitimate, their website looked professional, and the people behind it were very convincing. I invested a significant amount of money about $440,000 with the way they talk to me into investing on their bitcoin platform. Two months later I realized that it was a scam when I could no longer have  access to  my account and couldn’t withdraw my money. At first, I lost hope that I wouldn't be able to get my money back, I cried and was angry at how I even fell victim to a scam. For days after doing some research and seeking professional help online, I came across GREAT WHIP RECOVERY CYBER SERVICES and saw how they have helped people recover their money back from scammers. I reported the case immediately to them and gather every transaction detail, documentation and sent it to them. Today, I’m very happy because the GREAT WHIP RECOVERY CYBER SERVICES help me recover all my money I was scammed. You can contact GREAT WHIP RECOVERY CYBER SERVICES if you have ever fallen victim to scam. Email: [email protected] or Website https://greatwhiprecoveryc.wixsite.com/greatwhip-site

  • 27.11.25 10:56 harristhomas7376

    "In the crypto world, this is great news I want to share. Last year, I fell victim to a scam disguised as a safe investment option. I have invested in crypto trading platforms for about 10yrs thinking I was ensuring myself a retirement income, only to find that all my assets were either frozen, I believed my assets were secure — until I discovered that my BTC funds had been frozen and withdrawals were impossible. It was a devastating moment when I realized I had been scammed, and I thought my Bitcoin was gone forever, Everything changed when a close friend recommended the Capital Crypto Recover Service. Their professionalism, expertise, and dedication enabled me to recover my lost Bitcoin funds back — more than €560.000 DEM to my BTC wallet. What once felt impossible became a reality thanks to their support. If you have lost Bitcoin through scams, hacking, failed withdrawals, or similar challenges, don’t lose hope. I strongly recommend Capital Crypto Recover Service to anyone seeking a reliable and effective solution for recovering any wallet assets. They have a proven track record of successful reputation in recovering lost password assets for their clients and can help you navigate the process of recovering your funds. Don’t let scammers get away with your hard-earned money – contact Email: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 27.11.25 10:56 harristhomas7376

    "In the crypto world, this is great news I want to share. Last year, I fell victim to a scam disguised as a safe investment option. I have invested in crypto trading platforms for about 10yrs thinking I was ensuring myself a retirement income, only to find that all my assets were either frozen, I believed my assets were secure — until I discovered that my BTC funds had been frozen and withdrawals were impossible. It was a devastating moment when I realized I had been scammed, and I thought my Bitcoin was gone forever, Everything changed when a close friend recommended the Capital Crypto Recover Service. Their professionalism, expertise, and dedication enabled me to recover my lost Bitcoin funds back — more than €560.000 DEM to my BTC wallet. What once felt impossible became a reality thanks to their support. If you have lost Bitcoin through scams, hacking, failed withdrawals, or similar challenges, don’t lose hope. I strongly recommend Capital Crypto Recover Service to anyone seeking a reliable and effective solution for recovering any wallet assets. They have a proven track record of successful reputation in recovering lost password assets for their clients and can help you navigate the process of recovering your funds. Don’t let scammers get away with your hard-earned money – contact Email: [email protected] Phone CALL/Text Number: +1 (336) 390-6684 Contact: [email protected] Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 27.11.25 20:04 deborah113

    Scammed Crypto Asset Recovery Solution Hire iFORCE HACKER RECOVERY When I traded online, I lost both my investment money and the anticipated gains.  Before permitting any withdrawals, the site kept requesting more money, and soon I recognized I had been duped.  It was really hard to deal with the loss after their customer service ceased responding.  I saw a Facebook testimonial about how iForce Hacker Recovery assisted a victim of fraud in getting back the bitcoin she had transferred to con artists.  I contacted iForce Hacker Recovery, submitted all relevant case paperwork, and meticulously followed the guidelines.  I'm relieved that I was eventually able to get my money back, including the gains that were initially displayed on my account. I'm sharing my story to let others who have been conned know that you can recover your money. WhatsApp: +1 240-803-3706 Email: iforcehk @ consultant. c om Website: ht tps:/ /iforcehackers. c om

  • 27.11.25 23:48 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 27.11.25 23:48 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 28.11.25 00:08 VERONICAFREDDIE809

    Earlier this year, I made a mistake that changed everything. I downloaded what I thought was a legitimate trading app I’d found through a Telegram channel. At first, everything looked real until I tried to withdraw. My entire investment vanished into a bot account, and that’s when the truth hit me: I had been scammed. I can’t describe the feeling. It was as if the ground dropped out from under me. I blamed myself. I felt stupid, ashamed, helpless every painful emotion at once. For a while, I couldn’t even talk about it. I thought no one would understand. But then I found someone Agent Jasmine Lopez ([email protected])WhatsApp at +44 736-644-5035. ,She didn’t brush me off or judge me. She took my fear seriously. She followed leads I didn’t even know existed, and identified multiple off-chain indicators and wallet clusters linked to the scammer network, she helped me understand what had truly happened behind the scenes. For the first time since everything fell apart, I felt hope. Hearing that other people students, parents, hardworking people had been targeted the same way made me realize I wasn’t alone. What happened to us wasn’t stupidity. It was a coordinated attack. We were prey in a system built to deceive. And somehow, through all the chaos, Agent Jasmine stepped in and shined a light into the darkest moment of my life. I’m still healing from the experience. It changed me. But it also reminded me that even when you think you’re at the end, sometimes a lifeline appears where you least expect it.

  • 28.11.25 11:15 robertalfred175

    CRYPTO SCAM RECOVERY SUCCESSFUL – A TESTIMONIAL OF LOST PASSWORD TO YOUR DIGITAL WALLET BACK. My name is Robert Alfred, Am from Australia. I’m sharing my experience in the hope that it helps others who have been victims of crypto scams. A few months ago, I fell victim to a fraudulent crypto investment scheme linked to a broker company. I had invested heavily during a time when Bitcoin prices were rising, thinking it was a good opportunity. Unfortunately, I was scammed out of $120,000 AUD and the broker denied me access to my digital wallet and assets. It was a devastating experience that caused many sleepless nights. Crypto scams are increasingly common and often involve fake trading platforms, phishing attacks, and misleading investment opportunities. In my desperation, a friend from the crypto community recommended Capital Crypto Recovery Service, known for helping victims recover lost or stolen funds. After doing some research and reading multiple positive reviews, I reached out to Capital Crypto Recovery. I provided all the necessary information—wallet addresses, transaction history, and communication logs. Their expert team responded immediately and began investigating. Using advanced blockchain tracking techniques, they were able to trace the stolen Dogecoin, identify the scammer’s wallet, and coordinate with relevant authorities to freeze the funds before they could be moved. Incredibly, within 24 hours, Capital Crypto Recovery successfully recovered the majority of my stolen crypto assets. I was beyond relieved and truly grateful. Their professionalism, transparency, and constant communication throughout the process gave me hope during a very difficult time. If you’ve been a victim of a crypto scam, I highly recommend them with full confidence contacting: 📧 Email: [email protected] 📱 Telegram: @Capitalcryptorecover Contact: [email protected] 📞 Call/Text: +1 (336) 390-6684 🌐 Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 28.11.25 11:15 robertalfred175

    CRYPTO SCAM RECOVERY SUCCESSFUL – A TESTIMONIAL OF LOST PASSWORD TO YOUR DIGITAL WALLET BACK. My name is Robert Alfred, Am from Australia. I’m sharing my experience in the hope that it helps others who have been victims of crypto scams. A few months ago, I fell victim to a fraudulent crypto investment scheme linked to a broker company. I had invested heavily during a time when Bitcoin prices were rising, thinking it was a good opportunity. Unfortunately, I was scammed out of $120,000 AUD and the broker denied me access to my digital wallet and assets. It was a devastating experience that caused many sleepless nights. Crypto scams are increasingly common and often involve fake trading platforms, phishing attacks, and misleading investment opportunities. In my desperation, a friend from the crypto community recommended Capital Crypto Recovery Service, known for helping victims recover lost or stolen funds. After doing some research and reading multiple positive reviews, I reached out to Capital Crypto Recovery. I provided all the necessary information—wallet addresses, transaction history, and communication logs. Their expert team responded immediately and began investigating. Using advanced blockchain tracking techniques, they were able to trace the stolen Dogecoin, identify the scammer’s wallet, and coordinate with relevant authorities to freeze the funds before they could be moved. Incredibly, within 24 hours, Capital Crypto Recovery successfully recovered the majority of my stolen crypto assets. I was beyond relieved and truly grateful. Their professionalism, transparency, and constant communication throughout the process gave me hope during a very difficult time. If you’ve been a victim of a crypto scam, I highly recommend them with full confidence contacting: 📧 Email: [email protected] 📱 Telegram: @Capitalcryptorecover Contact: [email protected] 📞 Call/Text: +1 (336) 390-6684 🌐 Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 28.11.25 11:43 elizabethmadison

    My name is Elizabeth Madison currently living in New York. There was a time I felt completely broken. I had trusted a fraudulent bitcoin investment organization, who turned out to be a fraudster. I sent money, believing their sweet words and promises on the interest rate I will get back in return, only to realize later that I’ve been scammed. On the day of withdrawal there was no money in my account. The pain hit deep. I couldn’t sleep, I kept asking myself how I could have been so careless, meanwhile my mom was battling with a stroke and the expenses were too much. For days, I cried and blamed myself. The betrayal, the disappointment and my mom's health issues all of this stress made me want to give up on life. But one day, I decided that sitting in pain wouldn’t solve anything. I picked myself up and chose to fight for what I lost then I came across GREAT WHIP RECOVERY CYBER SERVICES and saw how he helped people recover their funds from online fraud. I emailed all the transactions and paperwork I had with the fraudulent organization and they helped me recover all my lost money in just five days. If you have ever fallen victim to scammers, contact GREAT WHIP RECOVERY CYBER SERVICES to help you recover every penny you have lost. (Text +1(406)2729101) Website https://greatwhiprecoveryc.wixsite.com/greatwhip-site (Email [email protected])

  • 28.11.25 11:43 elizabethmadison

    My name is Elizabeth Madison currently living in New York. There was a time I felt completely broken. I had trusted a fraudulent bitcoin investment organization, who turned out to be a fraudster. I sent money, believing their sweet words and promises on the interest rate I will get back in return, only to realize later that I’ve been scammed. On the day of withdrawal there was no money in my account. The pain hit deep. I couldn’t sleep, I kept asking myself how I could have been so careless, meanwhile my mom was battling with a stroke and the expenses were too much. For days, I cried and blamed myself. The betrayal, the disappointment and my mom's health issues all of this stress made me want to give up on life. But one day, I decided that sitting in pain wouldn’t solve anything. I picked myself up and chose to fight for what I lost then I came across GREAT WHIP RECOVERY CYBER SERVICES and saw how he helped people recover their funds from online fraud. I emailed all the transactions and paperwork I had with the fraudulent organization and they helped me recover all my lost money in just five days. If you have ever fallen victim to scammers, contact GREAT WHIP RECOVERY CYBER SERVICES to help you recover every penny you have lost. (Text +1(406)2729101) Website https://greatwhiprecoveryc.wixsite.com/greatwhip-site (Email [email protected])

  • 29.11.25 12:35 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 29.11.25 12:35 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 29.11.25 12:35 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 30.11.25 20:37 robertalfred175

    CRYPTO SCAM RECOVERY SUCCESSFUL – A TESTIMONIAL OF LOST PASSWORD TO YOUR DIGITAL WALLET BACK. My name is Robert Alfred, Am from Australia. I’m sharing my experience in the hope that it helps others who have been victims of crypto scams. A few months ago, I fell victim to a fraudulent crypto investment scheme linked to a broker company. I had invested heavily during a time when Bitcoin prices were rising, thinking it was a good opportunity. Unfortunately, I was scammed out of $120,000 AUD and the broker denied me access to my digital wallet and assets. It was a devastating experience that caused many sleepless nights. Crypto scams are increasingly common and often involve fake trading platforms, phishing attacks, and misleading investment opportunities. In my desperation, a friend from the crypto community recommended Capital Crypto Recovery Service, known for helping victims recover lost or stolen funds. After doing some research and reading multiple positive reviews, I reached out to Capital Crypto Recovery. I provided all the necessary information—wallet addresses, transaction history, and communication logs. Their expert team responded immediately and began investigating. Using advanced blockchain tracking techniques, they were able to trace the stolen Dogecoin, identify the scammer’s wallet, and coordinate with relevant authorities to freeze the funds before they could be moved. Incredibly, within 24 hours, Capital Crypto Recovery successfully recovered the majority of my stolen crypto assets. I was beyond relieved and truly grateful. Their professionalism, transparency, and constant communication throughout the process gave me hope during a very difficult time. If you’ve been a victim of a crypto scam, I highly recommend them with full confidence contacting: 📧 Email: [email protected] 📱 Telegram: @Capitalcryptorecover Contact: [email protected] 📞 Call/Text: +1 (336) 390-6684 🌐 Website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 01.12.25 12:27 Thomas Muller

    YOU CAN REACH OUT TO GREAT WHIP RECOVERY CYBER SERVICES FOR HELP TO RECOVER YOUR STOLEN BTC OR ETH BACK WHATSAPP +1(208)713-0697 I once fell victim to online investment scheme that cost me a devastating €254,000. I’m Thomas Muller from Berlin, Germany. The person I trusted turned out to be a fraud, and the moment I realized I’d been deceived, my entire world stopped. I immediately began searching for legitimate ways to recover my funds and hold the scammer accountable. During my search, I came across several testimonies of how Great Whip Recovery Cyber Services helped some people recover money they lost to cyber fraud, I contacted Great Whip Recovery Cyber Service team and provided all the evidence I had. Within about 36 hours, the experts traced the digital trail left by the fraudster, the individual was eventually tracked down and I recovered all my money back. You can contact them with,  website https://greatwhiprecoveryc.wixsite.com/greatwhip-site  text +1(406)2729101 email [email protected]

  • 01.12.25 12:27 Thomas Muller

    YOU CAN REACH OUT TO GREAT WHIP RECOVERY CYBER SERVICES FOR HELP TO RECOVER YOUR STOLEN BTC OR ETH BACK WHATSAPP +1(208)713-0697 I once fell victim to online investment scheme that cost me a devastating €254,000. I’m Thomas Muller from Berlin, Germany. The person I trusted turned out to be a fraud, and the moment I realized I’d been deceived, my entire world stopped. I immediately began searching for legitimate ways to recover my funds and hold the scammer accountable. During my search, I came across several testimonies of how Great Whip Recovery Cyber Services helped some people recover money they lost to cyber fraud, I contacted Great Whip Recovery Cyber Service team and provided all the evidence I had. Within about 36 hours, the experts traced the digital trail left by the fraudster, the individual was eventually tracked down and I recovered all my money back. You can contact them with,  website https://greatwhiprecoveryc.wixsite.com/greatwhip-site  text +1(406)2729101 email [email protected]

  • 01.12.25 23:45 michaeldavenport238

    I was recently scammed out of $53,000 by a fraudulent Bitcoin investment scheme, which added significant stress to my already difficult health issues, as I was also facing cancer surgery expenses. Desperate to recover my funds, I spent hours researching and consulting other victims, which led me to discover the excellent reputation of Capital Crypto Recover, I came across a Google post It was only after spending many hours researching and asking other victims for advice that I discovered Capital Crypto Recovery’s stellar reputation. I decided to contact them because of their successful recovery record and encouraging client testimonials. I had no idea that this would be the pivotal moment in my fight against cryptocurrency theft. Thanks to their expert team, I was able to recover my lost cryptocurrency back. The process was intricate, but Capital Crypto Recovery's commitment to utilizing the latest technology ensured a successful outcome. I highly recommend their services to anyone who has fallen victim to cryptocurrency fraud. For assistance contact [email protected] and on Telegram OR Call Number +1 (336)390-6684 via email: [email protected] you can visit his website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 01.12.25 23:45 michaeldavenport238

    I was recently scammed out of $53,000 by a fraudulent Bitcoin investment scheme, which added significant stress to my already difficult health issues, as I was also facing cancer surgery expenses. Desperate to recover my funds, I spent hours researching and consulting other victims, which led me to discover the excellent reputation of Capital Crypto Recover, I came across a Google post It was only after spending many hours researching and asking other victims for advice that I discovered Capital Crypto Recovery’s stellar reputation. I decided to contact them because of their successful recovery record and encouraging client testimonials. I had no idea that this would be the pivotal moment in my fight against cryptocurrency theft. Thanks to their expert team, I was able to recover my lost cryptocurrency back. The process was intricate, but Capital Crypto Recovery's commitment to utilizing the latest technology ensured a successful outcome. I highly recommend their services to anyone who has fallen victim to cryptocurrency fraud. For assistance contact [email protected] and on Telegram OR Call Number +1 (336)390-6684 via email: [email protected] you can visit his website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 02.12.25 02:21 donald121

    In 2025 alone, hackers stole over $1.5 billion in digital assets from users worldwide. That's a wake-up call for anyone holding crypto. Theft hits hard because once funds move, they're tough to get back. Common ways it happens include phishing emails that trick you into giving up keys, big exchange breaches, or malware sneaking into your wallet. Marie guide walks you through steps to recover stolen cryptocurrency. You'll learn quick actions to stop more loss, how to trace funds, and ways to fight back legally. Plus, tips to avoid this mess next time. reach her (infocyberrecoveryinc@gmail com and whatsapp:+1 7127594675)

  • 02.12.25 15:05 Matt Kegan

    Reach out to SolidBlock Forensics if you want to get back your coins from fake crypto investment or your wallet was compromised and all your coins gone. SolidBlock Forensics provide deep ethical analysis and investigation that enables them to trace these schemes, and recover all your funds. Their services are professional and reliable. 

  • 03.12.25 09:22 tyrelldavis1

    I still recall the day I fell victim to an online scam, losing a substantial amount of money to a cunning fraudster. The feeling of helplessness and despair that followed was overwhelming, and I thought I had lost all hope of ever recovering my stolen funds. However, after months of searching for a solution, I stumbled upon a beacon of hope - GRAYWARE TECH SERVICE, a highly reputable and exceptionally skilled investigative and recovery firm. Their team of expert cybersecurity professionals specializes in tracking and retrieving money lost to internet fraud, and I was impressed by their unwavering dedication to helping victims like me. With their extensive knowledge and cutting-edge technology, they were able to navigate the complex world of online finance and identify the culprits behind my loss. What struck me most about GRAYWARE TECH SERVICE was their unparalleled expertise and exceptional customer service. They took the time to understand my situation, provided me with regular updates, and kept me informed throughout the entire recovery process. Their transparency and professionalism were truly reassuring, and I felt confident that I had finally found a reliable partner to help me recover my stolen money. Thanks to GRAYWARE TECH SERVICE, I was able to recover a significant portion of my lost funds, and I am forever grateful for their assistance. Their success in retrieving my money not only restored my financial stability but also restored my faith in the ability of authorities to combat online fraud. If you have fallen victim to internet scams, I highly recommend reaching out to GRAYWARE TECH SERVICE - their expertise and dedication to recovering stolen funds are unparalleled, and they may be your only hope for retrieving what is rightfully yours. You can reach them on whatsapp+18582759508 web at ( https://graywaretechservice.com/ )    also on Mail: ([email protected]

  • 03.12.25 21:01 VERONICAFREDDIE809

    Earlier this year, I made a mistake that changed everything. I downloaded what I thought was a legitimate trading app I’d found through a Telegram channel. At first, everything looked real until I tried to withdraw. My entire investment vanished into a bot account, and that’s when the truth hit me: I had been scammed. I can’t describe the feeling. It was as if the ground dropped out from under me. I blamed myself. I felt stupid, ashamed, helpless every painful emotion at once. For a while, I couldn’t even talk about it. I thought no one would understand. But then I found someone Agent Jasmine Lopez ([email protected]) ,She didn’t brush me off or judge me. She took my fear seriously. She followed leads I didn’t even know existed, and identified multiple off-chain indicators and wallet clusters linked to the scammer network, she helped me understand what had truly happened behind the scenes. For the first time since everything fell apart, I felt hope. Hearing that other people students, parents, hardworking people had been targeted the same way made me realize I wasn’t alone. What happened to us wasn’t stupidity. It was a coordinated attack. We were prey in a system built to deceive. And somehow, through all the chaos, Agent Jasmine stepped in and shined a light into the darkest moment of my life. I’m still healing from the experience. It changed me. But it also reminded me that even when you think you’re at the end, sometimes a lifeline appears where you least expect it. Contact her at [email protected] WhatsApp at +44 736-644-5035.

  • 03.12.25 22:17 Tonerdomark

    I lost $300,000 in USDC to a phishing scam. Scammers tricked me with a fake wallet link. They drained my account fast. I felt hopeless. No way to get it back. Then Sylvester stepped in. His skills traced the funds. He recovered every bit. USDC is a stablecoin tied to the dollar. Phishing scams hit hard in crypto. They fool you with urgent emails or sites. Billions vanish each year this way. Sylvester knows blockchain tracks. He used tools to follow the trail. I got my money back in weeks. Skills like his turn loss to win. Don't wait if scammed. Contact Mr. Sylvester now. Email: yt7cracker@gmail. com. WhatsApp only: + 1 512 577 7957 or + 44 7428 662701. He helped me. He can help you.

  • 04.12.25 01:37 michaeldavenport238

    I was recently scammed out of $53,000 by a fraudulent Bitcoin investment scheme, which added significant stress to my already difficult health issues, as I was also facing cancer surgery expenses. Desperate to recover my funds, I spent hours researching and consulting other victims, which led me to discover the excellent reputation of Capital Crypto Recover, I came across a Google post It was only after spending many hours researching and asking other victims for advice that I discovered Capital Crypto Recovery’s stellar reputation. I decided to contact them because of their successful recovery record and encouraging client testimonials. I had no idea that this would be the pivotal moment in my fight against cryptocurrency theft. Thanks to their expert team, I was able to recover my lost cryptocurrency back. The process was intricate, but Capital Crypto Recovery's commitment to utilizing the latest technology ensured a successful outcome. I highly recommend their services to anyone who has fallen victim to cryptocurrency fraud. For assistance contact [email protected] and on Telegram OR Call Number +1 (336)390-6684 via email: [email protected] you can visit his website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 04.12.25 01:37 michaeldavenport238

    I was recently scammed out of $53,000 by a fraudulent Bitcoin investment scheme, which added significant stress to my already difficult health issues, as I was also facing cancer surgery expenses. Desperate to recover my funds, I spent hours researching and consulting other victims, which led me to discover the excellent reputation of Capital Crypto Recover, I came across a Google post It was only after spending many hours researching and asking other victims for advice that I discovered Capital Crypto Recovery’s stellar reputation. I decided to contact them because of their successful recovery record and encouraging client testimonials. I had no idea that this would be the pivotal moment in my fight against cryptocurrency theft. Thanks to their expert team, I was able to recover my lost cryptocurrency back. The process was intricate, but Capital Crypto Recovery's commitment to utilizing the latest technology ensured a successful outcome. I highly recommend their services to anyone who has fallen victim to cryptocurrency fraud. For assistance contact [email protected] and on Telegram OR Call Number +1 (336)390-6684 via email: [email protected] you can visit his website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 04.12.25 04:35 Tonerdomark

    I lost $300,000 in USDC to a phishing scam. Scammers tricked me with a fake wallet link. They drained my account fast. I felt hopeless. No way to get it back. Then Sylvester stepped in. His skills traced the funds. He recovered every bit. USDC is a stablecoin tied to the dollar. Phishing scams hit hard in crypto. They fool you with urgent emails or sites. Billions vanish each year this way. Sylvester knows blockchain tracks. He used tools to follow the trail. I got my money back in weeks. Skills like his turn loss to win. Don't wait if scammed. Contact Mr. Sylvester now. Email: [email protected]. WhatsApp only: + 1 512 577 7957 or + 44 7428 662701. He helped me. He can help you.

  • 04.12.25 10:32 Tonerdomark

    I lost $300,000 in USDC to a phishing scam. Scammers tricked me with a fake wallet link. They drained my account fast. I felt hopeless. No way to get it back. Then Sylvester stepped in. His skills traced the funds. He recovered every bit. USDC is a stablecoin tied to the dollar. Phishing scams hit hard in crypto. They fool you with urgent emails or sites. Billions vanish each year this way. Sylvester knows blockchain tracks. He used tools to follow the trail. I got my money back in weeks. Skills like his turn loss to win. Don't wait if scammed. Contact Mr. Sylvester now. Email: [email protected]. WhatsApp only: + 1 512 577 7957 or + 44 7428 662701. He helped me. He can help you.

  • 04.12.25 18:25 smithhazael

    Hire Proficient Expert Consultant For any form of lost crypto "A man in Indonesia tragically took his own life after losing his family's savings to a scam. The shame and blame were too much to bear. It's heartbreaking to think he might still be alive if he knew help existed. "PROFICIENT EXPERT CONSULTANTS, I worked alongside PROFICIENT EXPERT CONSULTANTS when I lost my funds to an investment platform on Telegram. PROFICIENT EXPERT CONSULTANTS did a praiseworthy job, tracked and successfully recovered all my lost funds a total of $770,000 within 48hours after contacting them, with their verse experience in recovery issues and top tier skills they were able to transfer back all my funds into my account, to top it up I had full access to my account and immediately converted it to cash, they handled my case with professionalism and empathy and successfully recovered all my lost funds, with so many good reviews about PROFICIENT EXPERT CONSULTANTS, I’m glad I followed my instincts after reading all the reviews and I was able to recovery everything I thought I had lost, don’t commit suicide if in any case you are caught in the same situation, contact: Proficientexpert@consultant. com Telegram: @ PROFICIENTEXPERT, the reliable experts in recovery.

  • 04.12.25 21:45 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 04.12.25 21:45 elizabethrush89

    God bless Capital Crypto Recover Services for the marvelous work you did in my life, I have learned the hard way that even the most sensible investors can fall victim to scams. When my USD was stolen, for anyone who has fallen victim to one of the bitcoin binary investment scams that are currently ongoing, I felt betrayal and upset. But then I was reading a post on site when I saw a testimony of Wendy Taylor online who recommended that Capital Crypto Recovery has helped her recover scammed funds within 24 hours. after reaching out to this cyber security firm that was able to help me recover my stolen digital assets and bitcoin. I’m genuinely blown away by their amazing service and professionalism. I never imagined I’d be able to get my money back until I complained to Capital Crypto Recovery Services about my difficulties and gave all of the necessary paperwork. I was astounded that it took them 12 hours to reclaim my stolen money back. Without a doubt, my USDT assets were successfully recovered from the scam platform, Thank you so much Sir, I strongly recommend Capital Crypto Recover for any of your bitcoin recovery, digital funds recovery, hacking, and cybersecurity concerns. You reach them Call/Text Number +1 (336)390-6684 His Email: [email protected] Contact Telegram: @Capitalcryptorecover Via Contact: [email protected] His website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 05.12.25 08:35 into11

    The digital world of cryptocurrency offers big chances, but it also hides tricky scams. Losing your crypto to fraud feels awful. It can leave you feeling lost and violated. This guide tells you what to do right away if a crypto scam has hit you. These steps can help you get funds back or stop more trouble. Knowing what to do fast can change everything,reach marie ([email protected] and whatsapp:+1 7127594675)

  • 05.12.25 08:48 Tonerdomark

    SYLVESTER BRYANT WAS A PROFESSIONAL/ RELIABLE HACKER AND HIGHLY RECOMMENDED I’m very excited to speak about him as a Bitcoin Recovery agent, this cyber security company was able to assist me in recovering my stolen funds in cryptocurrency. I’m truly amazed by their excellent service and professional work. I never thought I could get back my funds until I approached them with my problems and provided all the necessary information. It took them time to recover my funds and I was amazed. Without any doubt, I highly recommend Sylvester for your BITCOIN, USDC, USDT, ETH Recovery, for all Cryptocurrency recovery, digital funds recovery, hacking Related issues, contact Sylvester Bryant professional services waapp only= +1 512 577 7957 or + 44 7428 662701 EMAIL = [email protected]

  • 06.12.25 01:44 Tonerdomark

    SYLVESTER BRYANT WAS A PROFESSIONAL/ RELIABLE HACKER AND HIGHLY RECOMMENDED I’m very excited to speak about him as a Bitcoin Recovery agent, this cyber security company was able to assist me in recovering my stolen funds in cryptocurrency. I’m truly amazed by their excellent service and professional work. I never thought I could get back my funds until I approached them with my problems and provided all the necessary information. It took them time to recover my funds and I was amazed. Without any doubt, I highly recommend Sylvester for your BITCOIN, USDC, USDT, ETH Recovery, for all Cryptocurrency recovery, digital funds recovery, hacking Related issues, contact Sylvester Bryant professional services waapp only= +1 512 577 7957 or + 44 7428 662701 EMAIL = [email protected]

  • 06.12.25 01:48 Tonerdomark

    SYLVESTER BRYANT WAS A PROFESSIONAL/ RELIABLE HACKER AND HIGHLY RECOMMENDED I’m very excited to speak about him as a Bitcoin Recovery agent, this cyber security company was able to assist me in recovering my stolen funds in cryptocurrency. I’m truly amazed by their excellent service and professional work. I never thought I could get back my funds until I approached them with my problems and provided all the necessary information. It took them time to recover my funds and I was amazed. Without any doubt, I highly recommend Sylvester for your BITCOIN, USDC, USDT, ETH Recovery, for all Cryptocurrency recovery, digital funds recovery, hacking Related issues, contact Sylvester Bryant professional services waapp only= +1 512 577 7957 or + 44 7428 662701 EMAIL = [email protected]

  • 06.12.25 10:36 Thomas Muller

    YOU CAN REACH OUT TO GREAT WHIP RECOVERY CYBER SERVICES FOR HELP TO RECOVER YOUR STOLEN BTC OR ETH BACK WHATSAPP +1(208)713-0697 I once fell victim to online investment scheme that cost me a devastating €254,000. I’m Thomas Muller from Berlin, Germany. The person I trusted turned out to be a fraud, and the moment I realized I’d been deceived, my entire world stopped. I immediately began searching for legitimate ways to recover my funds and hold the scammer accountable. During my search, I came across several testimonies of how Great Whip Recovery Cyber Services helped some people recover money they lost to cyber fraud, I contacted Great Whip Recovery Cyber Service team and provided all the evidence I had. Within about 36 hours, the experts traced the digital trail left by the fraudster, the individual was eventually tracked down and I recovered all my money back. You can contact them with,  website https://greatwhiprecoveryc.wixsite.com/greatwhip-site  text +1(406)2729101 email [email protected]

  • 06.12.25 10:36 Thomas Muller

    YOU CAN REACH OUT TO GREAT WHIP RECOVERY CYBER SERVICES FOR HELP TO RECOVER YOUR STOLEN BTC OR ETH BACK WHATSAPP +1(208)713-0697 I once fell victim to online investment scheme that cost me a devastating €254,000. I’m Thomas Muller from Berlin, Germany. The person I trusted turned out to be a fraud, and the moment I realized I’d been deceived, my entire world stopped. I immediately began searching for legitimate ways to recover my funds and hold the scammer accountable. During my search, I came across several testimonies of how Great Whip Recovery Cyber Services helped some people recover money they lost to cyber fraud, I contacted Great Whip Recovery Cyber Service team and provided all the evidence I had. Within about 36 hours, the experts traced the digital trail left by the fraudster, the individual was eventually tracked down and I recovered all my money back. You can contact them with,  website https://greatwhiprecoveryc.wixsite.com/greatwhip-site  text +1(406)2729101 email [email protected]

  • 06.12.25 10:39 michaeldavenport238

    I was recently scammed out of $53,000 by a fraudulent Bitcoin investment scheme, which added significant stress to my already difficult health issues, as I was also facing cancer surgery expenses. Desperate to recover my funds, I spent hours researching and consulting other victims, which led me to discover the excellent reputation of Capital Crypto Recover, I came across a Google post It was only after spending many hours researching and asking other victims for advice that I discovered Capital Crypto Recovery’s stellar reputation. I decided to contact them because of their successful recovery record and encouraging client testimonials. I had no idea that this would be the pivotal moment in my fight against cryptocurrency theft. Thanks to their expert team, I was able to recover my lost cryptocurrency back. The process was intricate, but Capital Crypto Recovery's commitment to utilizing the latest technology ensured a successful outcome. I highly recommend their services to anyone who has fallen victim to cryptocurrency fraud. For assistance contact [email protected] and on Telegram OR Call Number +1 (336)390-6684 via email: [email protected] you can visit his website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 06.12.25 10:42 michaeldavenport238

    I was recently scammed out of $53,000 by a fraudulent Bitcoin investment scheme, which added significant stress to my already difficult health issues, as I was also facing cancer surgery expenses. Desperate to recover my funds, I spent hours researching and consulting other victims, which led me to discover the excellent reputation of Capital Crypto Recover, I came across a Google post It was only after spending many hours researching and asking other victims for advice that I discovered Capital Crypto Recovery’s stellar reputation. I decided to contact them because of their successful recovery record and encouraging client testimonials. I had no idea that this would be the pivotal moment in my fight against cryptocurrency theft. Thanks to their expert team, I was able to recover my lost cryptocurrency back. The process was intricate, but Capital Crypto Recovery's commitment to utilizing the latest technology ensured a successful outcome. I highly recommend their services to anyone who has fallen victim to cryptocurrency fraud. For assistance contact [email protected] and on Telegram OR Call Number +1 (336)390-6684 via email: [email protected] you can visit his website: https://recovercapital.wixsite.com/capital-crypto-rec-1

  • 07.12.25 08:43 Tonerdomark

    SYLVESTER BRYANT WAS A PROFESSIONAL/ RELIABLE HACKER AND HIGHLY RECOMMENDED I’m very excited to speak about him as a Bitcoin Recovery agent, this cyber security company was able to assist me in recovering my stolen funds in cryptocurrency. I’m truly amazed by their excellent service and professional work. I never thought I could get back my funds until I approached them with my problems and provided all the necessary information. It took them time to recover my funds and I was amazed. Without any doubt, I highly recommend Sylvester for your BITCOIN, USDC, USDT, ETH Recovery, for all Cryptocurrency recovery, digital funds recovery, hacking Related issues, contact Sylvester Bryant professional services waapp only= +1 512 577 7957 or + 44 7428 662701 EMAIL = [email protected]

  • 08.12.25 02:17 liam

    I recently fell a victim of cryptocurrency investment and mining scam, I lost almost all my life savings to BTC scammers. I almost gave up because the amount of crypto I lost was too much. So I spoke to a friend who told me about ANTHONYDAVIESTECH company. I Contacted them through their email and i provided them with the necessary information they requested from me and they told me to be patient and wait to see the outcome of their job. I was shocked after two days my Bitcoin was returned to my Wallet. All thanks to them for their genius work. I Contacted them via Email: anthonydaviestech @ gmail . com all thanks to my friend who saved my life

  • 08.12.25 09:07 Tonerdomark

    SYLVESTER BRYANT WAS A PROFESSIONAL/ RELIABLE HACKER AND HIGHLY RECOMMENDED I’m very excited to speak about him as a Bitcoin Recovery agent, this cyber security company was able to assist me in recovering my stolen funds in cryptocurrency. I’m truly amazed by their excellent service and professional work. I never thought I could get back my funds until I approached them with my problems and provided all the necessary information. It took them time to recover my funds and I was amazed. Without any doubt, I highly recommend Sylvester for your BITCOIN, USDC, USDT, ETH Recovery, for all Cryptocurrency recovery, digital funds recovery, hacking Related issues, contact Sylvester Bryant professional services waapp only= +1 512 577 7957 or + 44 7428 662701 EMAIL = [email protected]

  • 09.12.25 00:18 swanky

    For a long time, I had heard tales of individuals striking it rich through cryptocurrency investments, but I had little knowledge of how the system operated. The potential for financial gain piqued my interest, and I decided to dive in and invest. To help me navigate this complex landscape, I joined a group of online traders who promised to guide me through the investment process. Their confidence and expertise made me feel reassured about my decision.After spending some time learning from them and observing their trading strategies, I felt compelled to invest a substantial amount of money to which i lost, now in search of recovering my funds i got referred to anthonydavies on telegram a funds recovery specialist with his team help i was able to get back $300000 of my usdc back. you can reach him via anthonydaviestech AT gmail dot com

  • 09.12.25 01:01 Tonerdomark

    SYLVESTER BRYANT WAS A PROFESSIONAL/ RELIABLE HACKER AND HIGHLY RECOMMENDED I’m very excited to speak about him as a Bitcoin Recovery agent, this cyber security company was able to assist me in recovering my stolen funds in cryptocurrency. I’m truly amazed by their excellent service and professional work. I never thought I could get back my funds until I approached them with my problems and provided all the necessary information. It took them time to recover my funds and I was amazed. Without any doubt, I highly recommend Sylvester for your BITCOIN, USDC, USDT, ETH Recovery, for all Cryptocurrency recovery, digital funds recovery, hacking Related issues, contact Sylvester Bryant professional services waapp only= +1 512 577 7957 or + 44 7428 662701 EMAIL = Yt7CRACKER@gmail. com

  • 09.12.25 05:44 swanky

    For a long time, I had heard tales of individuals striking it rich through cryptocurrency investments, but I had little knowledge of how the system operated. The potential for financial gain piqued my interest, and I decided to dive in and invest. To help me navigate this complex landscape, I joined a group of online traders who promised to guide me through the investment process. Their confidence and expertise made me feel reassured about my decision.After spending some time learning from them and observing their trading strategies, I felt compelled to invest a substantial amount of money to which i lost, now in search of recovering my funds i got referred to anthonydavies on telegram a funds recovery specialist with his team help i was able to get back $300000 of my usdc back. you can reach him via anthonydaviestech AT gmail dot com

  • 09.12.25 10:24 lane3215

    It is distressing to lose USDT to a bitcoin wallet hack. Although challenging, recovering stolen USDT is feasible. Your chances increase if you move swiftly and strategically. Marie can help you with reporting the theft, recovering USDT, and taking immediate action. You can reach her via mail at [email protected], WhatsApp at +1 7127594675.

  • 09.12.25 10:25 lane3215

    It is distressing to lose USDT to a bitcoin wallet hack. Although challenging, recovering stolen USDT is feasible. Your chances increase if you move swiftly and strategically. Marie can help you with reporting the theft, recovering USDT, and taking immediate action. You can reach her via mail at [email protected], WhatsApp at +1 7127594675.

  • 09.12.25 14:16 Matt Kegan

    Grateful i came across SolidBlock Forensics. After investing in crypto trade and couldn't make withdrawals, it dawned on me something was wrong. They kept on asking for taxes, fees for maintenance, and more money for admin reasons. But being represented by SolidBlock Forensics, i was able to file reports, and finally, received all my investments with returns. Its great to know we have professionals that handle such issues and get the job done. 

Для участия в Чате вам необходим бесплатный аккаунт pro-blockchain.com Войти Регистрация
Есть вопросы?
С вами на связи 24/7
Help Icon