Cleanup stale Cyrillic dirs (rsync left .DS_Store/.gitattributes orphans)

This commit is contained in:
efir369999 2026-05-04 21:49:01 +03:00
parent 08f045bf1a
commit e8af03f888
95 changed files with 0 additions and 2381 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>application-identifier</key>
<string>5U4V57QT55.network.montana.perevozchik</string>
<key>com.apple.developer.team-identifier</key>
<string>5U4V57QT55</string>
<key>get-task-allow</key>
<true/>
</dict>
</plist>

View File

@ -1,23 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>colors</key>
<array/>
<key>images</key>
<array>
<dict>
<key>catalogPath</key>
<string>/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/ПеревозчикApp/Assets.xcassets</string>
<key>objcSymbol</key>
<string>ACImageNameLogo</string>
<key>relativePath</key>
<string>./Logo.imageset</string>
<key>swiftSymbol</key>
<string>logo</string>
</dict>
</array>
<key>symbols</key>
<array/>
</dict>
</plist>

View File

@ -1,12 +0,0 @@
#import <Foundation/Foundation.h>
#if __has_attribute(swift_private)
#define AC_SWIFT_PRIVATE __attribute__((swift_private))
#else
#define AC_SWIFT_PRIVATE
#endif
/// The "Logo" asset catalog image resource.
static NSString * const ACImageNameLogo AC_SWIFT_PRIVATE = @"Logo";
#undef AC_SWIFT_PRIVATE

View File

@ -1,242 +0,0 @@
import Foundation
#if canImport(AppKit)
import AppKit
#endif
#if canImport(UIKit)
import UIKit
#endif
#if canImport(SwiftUI)
import SwiftUI
#endif
#if canImport(DeveloperToolsSupport)
import DeveloperToolsSupport
#endif
#if SWIFT_PACKAGE
private let resourceBundle = Foundation.Bundle.module
#else
private class ResourceBundleClass {}
private let resourceBundle = Foundation.Bundle(for: ResourceBundleClass.self)
#endif
// MARK: - Color Symbols -
@available(iOS 17.0, macOS 14.0, tvOS 17.0, watchOS 10.0, *)
extension DeveloperToolsSupport.ColorResource {
}
// MARK: - Image Symbols -
@available(iOS 17.0, macOS 14.0, tvOS 17.0, watchOS 10.0, *)
extension DeveloperToolsSupport.ImageResource {
/// The "Logo" asset catalog image resource.
static let logo = DeveloperToolsSupport.ImageResource(name: "Logo", bundle: resourceBundle)
}
// MARK: - Color Symbol Extensions -
#if canImport(AppKit)
@available(macOS 14.0, *)
@available(macCatalyst, unavailable)
extension AppKit.NSColor {
}
#endif
#if canImport(UIKit)
@available(iOS 17.0, tvOS 17.0, *)
@available(watchOS, unavailable)
extension UIKit.UIColor {
}
#endif
#if canImport(SwiftUI)
@available(iOS 17.0, macOS 14.0, tvOS 17.0, watchOS 10.0, *)
extension SwiftUI.Color {
}
@available(iOS 17.0, macOS 14.0, tvOS 17.0, watchOS 10.0, *)
extension SwiftUI.ShapeStyle where Self == SwiftUI.Color {
}
#endif
// MARK: - Image Symbol Extensions -
#if canImport(AppKit)
@available(macOS 14.0, *)
@available(macCatalyst, unavailable)
extension AppKit.NSImage {
/// The "Logo" asset catalog image.
static var logo: AppKit.NSImage {
#if !targetEnvironment(macCatalyst)
.init(resource: .logo)
#else
.init()
#endif
}
}
#endif
#if canImport(UIKit)
@available(iOS 17.0, tvOS 17.0, *)
@available(watchOS, unavailable)
extension UIKit.UIImage {
/// The "Logo" asset catalog image.
static var logo: UIKit.UIImage {
#if !os(watchOS)
.init(resource: .logo)
#else
.init()
#endif
}
}
#endif
// MARK: - Thinnable Asset Support -
@available(iOS 17.0, macOS 14.0, tvOS 17.0, watchOS 10.0, *)
@available(watchOS, unavailable)
extension DeveloperToolsSupport.ColorResource {
private init?(thinnableName: Swift.String, bundle: Foundation.Bundle) {
#if canImport(AppKit) && os(macOS)
if AppKit.NSColor(named: NSColor.Name(thinnableName), bundle: bundle) != nil {
self.init(name: thinnableName, bundle: bundle)
} else {
return nil
}
#elseif canImport(UIKit) && !os(watchOS)
if UIKit.UIColor(named: thinnableName, in: bundle, compatibleWith: nil) != nil {
self.init(name: thinnableName, bundle: bundle)
} else {
return nil
}
#else
return nil
#endif
}
}
#if canImport(UIKit)
@available(iOS 17.0, tvOS 17.0, *)
@available(watchOS, unavailable)
extension UIKit.UIColor {
private convenience init?(thinnableResource: DeveloperToolsSupport.ColorResource?) {
#if !os(watchOS)
if let resource = thinnableResource {
self.init(resource: resource)
} else {
return nil
}
#else
return nil
#endif
}
}
#endif
#if canImport(SwiftUI)
@available(iOS 17.0, macOS 14.0, tvOS 17.0, watchOS 10.0, *)
extension SwiftUI.Color {
private init?(thinnableResource: DeveloperToolsSupport.ColorResource?) {
if let resource = thinnableResource {
self.init(resource)
} else {
return nil
}
}
}
@available(iOS 17.0, macOS 14.0, tvOS 17.0, watchOS 10.0, *)
extension SwiftUI.ShapeStyle where Self == SwiftUI.Color {
private init?(thinnableResource: DeveloperToolsSupport.ColorResource?) {
if let resource = thinnableResource {
self.init(resource)
} else {
return nil
}
}
}
#endif
@available(iOS 17.0, macOS 14.0, tvOS 17.0, watchOS 10.0, *)
@available(watchOS, unavailable)
extension DeveloperToolsSupport.ImageResource {
private init?(thinnableName: Swift.String, bundle: Foundation.Bundle) {
#if canImport(AppKit) && os(macOS)
if bundle.image(forResource: NSImage.Name(thinnableName)) != nil {
self.init(name: thinnableName, bundle: bundle)
} else {
return nil
}
#elseif canImport(UIKit) && !os(watchOS)
if UIKit.UIImage(named: thinnableName, in: bundle, compatibleWith: nil) != nil {
self.init(name: thinnableName, bundle: bundle)
} else {
return nil
}
#else
return nil
#endif
}
}
#if canImport(AppKit)
@available(macOS 14.0, *)
@available(macCatalyst, unavailable)
extension AppKit.NSImage {
private convenience init?(thinnableResource: DeveloperToolsSupport.ImageResource?) {
#if !targetEnvironment(macCatalyst)
if let resource = thinnableResource {
self.init(resource: resource)
} else {
return nil
}
#else
return nil
#endif
}
}
#endif
#if canImport(UIKit)
@available(iOS 17.0, tvOS 17.0, *)
@available(watchOS, unavailable)
extension UIKit.UIImage {
private convenience init?(thinnableResource: DeveloperToolsSupport.ImageResource?) {
#if !os(watchOS)
if let resource = thinnableResource {
self.init(resource: resource)
} else {
return nil
}
#else
return nil
#endif
}
}
#endif

View File

@ -1,317 +0,0 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 6.2.3 effective-5.10 (swiftlang-6.2.3.3.21 clang-1700.6.3.2)
#ifndef ПеревозчикAPP_SWIFT_H
#define ПеревозчикAPP_SWIFT_H
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"
#if !defined(__has_include)
# define __has_include(x) 0
#endif
#if !defined(__has_attribute)
# define __has_attribute(x) 0
#endif
#if !defined(__has_feature)
# define __has_feature(x) 0
#endif
#if !defined(__has_warning)
# define __has_warning(x) 0
#endif
#if __has_include(<swift/objc-prologue.h>)
# include <swift/objc-prologue.h>
#endif
#pragma clang diagnostic ignored "-Wauto-import"
#if defined(__OBJC__)
#include <Foundation/Foundation.h>
#endif
#if defined(__cplusplus)
#include <cstdint>
#include <cstddef>
#include <cstdbool>
#include <cstring>
#include <stdlib.h>
#include <new>
#include <type_traits>
#else
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <string.h>
#endif
#if defined(__cplusplus)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module"
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h>
#else
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
# ifndef __ptrauth_swift_value_witness_function_pointer
# define __ptrauth_swift_value_witness_function_pointer(x)
# endif
# ifndef __ptrauth_swift_class_method_pointer
# define __ptrauth_swift_class_method_pointer(x)
# endif
#pragma clang diagnostic pop
#endif
#pragma clang diagnostic pop
#endif
#if !defined(SWIFT_TYPEDEFS)
# define SWIFT_TYPEDEFS 1
# if __has_include(<uchar.h>)
# include <uchar.h>
# elif !defined(__cplusplus)
typedef unsigned char char8_t;
typedef uint_least16_t char16_t;
typedef uint_least32_t char32_t;
# endif
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif
#if !defined(SWIFT_PASTE)
# define SWIFT_PASTE_HELPER(x, y) x##y
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
#endif
#if !defined(SWIFT_METATYPE)
# define SWIFT_METATYPE(X) Class
#endif
#if !defined(SWIFT_CLASS_PROPERTY)
# if __has_feature(objc_class_property)
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
# else
# define SWIFT_CLASS_PROPERTY(...)
# endif
#endif
#if !defined(SWIFT_RUNTIME_NAME)
# if __has_attribute(objc_runtime_name)
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
# else
# define SWIFT_RUNTIME_NAME(X)
# endif
#endif
#if !defined(SWIFT_COMPILE_NAME)
# if __has_attribute(swift_name)
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
# else
# define SWIFT_COMPILE_NAME(X)
# endif
#endif
#if !defined(SWIFT_METHOD_FAMILY)
# if __has_attribute(objc_method_family)
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
# else
# define SWIFT_METHOD_FAMILY(X)
# endif
#endif
#if !defined(SWIFT_NOESCAPE)
# if __has_attribute(noescape)
# define SWIFT_NOESCAPE __attribute__((noescape))
# else
# define SWIFT_NOESCAPE
# endif
#endif
#if !defined(SWIFT_RELEASES_ARGUMENT)
# if __has_attribute(ns_consumed)
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
# else
# define SWIFT_RELEASES_ARGUMENT
# endif
#endif
#if !defined(SWIFT_WARN_UNUSED_RESULT)
# if __has_attribute(warn_unused_result)
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
# else
# define SWIFT_WARN_UNUSED_RESULT
# endif
#endif
#if !defined(SWIFT_NORETURN)
# if __has_attribute(noreturn)
# define SWIFT_NORETURN __attribute__((noreturn))
# else
# define SWIFT_NORETURN
# endif
#endif
#if !defined(SWIFT_CLASS_EXTRA)
# define SWIFT_CLASS_EXTRA
#endif
#if !defined(SWIFT_PROTOCOL_EXTRA)
# define SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_ENUM_EXTRA)
# define SWIFT_ENUM_EXTRA
#endif
#if !defined(SWIFT_CLASS)
# if __has_attribute(objc_subclassing_restricted)
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# else
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# endif
#endif
#if !defined(SWIFT_RESILIENT_CLASS)
# if __has_attribute(objc_class_stub)
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
# else
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
# endif
#endif
#if !defined(SWIFT_PROTOCOL)
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_EXTENSION)
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
#endif
#if !defined(OBJC_DESIGNATED_INITIALIZER)
# if __has_attribute(objc_designated_initializer)
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
# else
# define OBJC_DESIGNATED_INITIALIZER
# endif
#endif
#if !defined(SWIFT_ENUM_ATTR)
# if __has_attribute(enum_extensibility)
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
# else
# define SWIFT_ENUM_ATTR(_extensibility)
# endif
#endif
#if !defined(SWIFT_ENUM)
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# if __has_feature(generalized_swift_name)
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# else
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
# endif
#endif
#if !defined(SWIFT_UNAVAILABLE)
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
#endif
#if !defined(SWIFT_UNAVAILABLE_MSG)
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
#endif
#if !defined(SWIFT_AVAILABILITY)
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
#endif
#if !defined(SWIFT_WEAK_IMPORT)
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
#endif
#if !defined(SWIFT_DEPRECATED)
# define SWIFT_DEPRECATED __attribute__((deprecated))
#endif
#if !defined(SWIFT_DEPRECATED_MSG)
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
#endif
#if !defined(SWIFT_DEPRECATED_OBJC)
# if __has_feature(attribute_diagnose_if_objc)
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
# else
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
# endif
#endif
#if defined(__OBJC__)
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
# else
# define SWIFT_EXTERN extern
# endif
#endif
#if !defined(SWIFT_CALL)
# define SWIFT_CALL __attribute__((swiftcall))
#endif
#if !defined(SWIFT_INDIRECT_RESULT)
# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
#endif
#if !defined(SWIFT_CONTEXT)
# define SWIFT_CONTEXT __attribute__((swift_context))
#endif
#if !defined(SWIFT_ERROR_RESULT)
# define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
#endif
#if defined(__cplusplus)
# define SWIFT_NOEXCEPT noexcept
#else
# define SWIFT_NOEXCEPT
#endif
#if !defined(SWIFT_C_INLINE_THUNK)
# if __has_attribute(always_inline)
# if __has_attribute(nodebug)
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
# else
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
# endif
# else
# define SWIFT_C_INLINE_THUNK inline
# endif
#endif
#if defined(_WIN32)
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
#endif
#else
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL
#endif
#endif
#if defined(__OBJC__)
#if __has_feature(objc_modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
#endif
#endif
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
#if __has_warning("-Wpragma-clang-attribute")
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
#endif
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wnullability"
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
#pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
#if __has_attribute(external_source_symbol)
# pragma push_macro("any")
# undef any
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="ПеревозчикApp",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
# pragma pop_macro("any")
#endif
#if defined(__OBJC__)
#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
#if defined(__cplusplus)
#endif
#pragma clang diagnostic pop
#endif
#else
#error unsupported Swift architecture
#endif

View File

@ -1,5 +0,0 @@
{
"source": "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/DerivedSources/GeneratedAssetSymbols.swift",
"tables": {},
"version": 1
}

View File

@ -1,360 +0,0 @@
{
"source": "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/ПеревозчикApp/ГлавныйЭкран.swift",
"tables": {
"Localizable": [
{
"comment": "",
"key": "Junona",
"location": {
"startingColumn": 26,
"startingLine": 20
}
},
{
"comment": "",
"key": "Ships",
"location": {
"startingColumn": 26,
"startingLine": 28
}
},
{
"comment": "",
"key": "Cargo",
"location": {
"startingColumn": 26,
"startingLine": 36
}
},
{
"comment": "",
"key": "Deals",
"location": {
"startingColumn": 26,
"startingLine": 44
}
},
{
"comment": "",
"key": "Profile",
"location": {
"startingColumn": 26,
"startingLine": 52
}
},
{
"comment": "",
"key": "Юнона",
"location": {
"startingColumn": 30,
"startingLine": 117
}
},
{
"comment": "",
"key": "Спросить Юнону...",
"location": {
"startingColumn": 31,
"startingLine": 97
}
},
{
"comment": "",
"key": "Карта судов",
"location": {
"startingColumn": 30,
"startingLine": 379
}
},
{
"comment": "",
"key": "Грузы",
"location": {
"startingColumn": 30,
"startingLine": 420
}
},
{
"comment": "",
"key": "Сделки",
"location": {
"startingColumn": 30,
"startingLine": 458
}
},
{
"comment": "",
"key": "Нет активных сделок",
"location": {
"startingColumn": 26,
"startingLine": 448
}
},
{
"comment": "",
"key": "Найдите груз или судно\nи создайте первую сделку",
"location": {
"startingColumn": 26,
"startingLine": 452
}
},
{
"comment": "",
"key": "Профиль",
"location": {
"startingColumn": 30,
"startingLine": 611
}
},
{
"comment": "",
"key": "Выйти из аккаунта?",
"location": {
"startingColumn": 20,
"startingLine": 612
}
},
{
"comment": "",
"key": "Кошелёк Montana Ɉ",
"location": {
"startingColumn": 33,
"startingLine": 516
}
},
{
"comment": "",
"key": "Статистика",
"location": {
"startingColumn": 33,
"startingLine": 551
}
},
{
"comment": "",
"key": "Настройки",
"location": {
"startingColumn": 29,
"startingLine": 580
}
},
{
"comment": "",
"key": "Адрес",
"location": {
"startingColumn": 42,
"startingLine": 521
}
},
{
"comment": "",
"key": "Телефон",
"location": {
"startingColumn": 42,
"startingLine": 533
}
},
{
"comment": "",
"key": "Баланс времени",
"location": {
"startingColumn": 38,
"startingLine": 543
}
},
{
"comment": "",
"key": "0 сек",
"location": {
"startingColumn": 38,
"startingLine": 545
}
},
{
"comment": "",
"key": "Сделок завершено",
"location": {
"startingColumn": 38,
"startingLine": 553
}
},
{
"comment": "",
"key": "0",
"location": {
"startingColumn": 38,
"startingLine": 555
}
},
{
"comment": "",
"key": "Оборот (USD)",
"location": {
"startingColumn": 38,
"startingLine": 560
}
},
{
"comment": "",
"key": "$0",
"location": {
"startingColumn": 38,
"startingLine": 562
}
},
{
"comment": "",
"key": "Рейтинг",
"location": {
"startingColumn": 38,
"startingLine": 567
}
},
{
"comment": "",
"key": "—",
"location": {
"startingColumn": 42,
"startingLine": 572
}
},
{
"comment": "",
"key": "Уведомления",
"location": {
"startingColumn": 34,
"startingLine": 582
}
},
{
"comment": "",
"key": "Уведомления",
"location": {
"startingColumn": 35,
"startingLine": 584
}
},
{
"comment": "",
"key": "Документы",
"location": {
"startingColumn": 34,
"startingLine": 588
}
},
{
"comment": "",
"key": "Документы",
"location": {
"startingColumn": 35,
"startingLine": 590
}
},
{
"comment": "",
"key": "Безопасность",
"location": {
"startingColumn": 34,
"startingLine": 594
}
},
{
"comment": "",
"key": "Безопасность",
"location": {
"startingColumn": 35,
"startingLine": 596
}
},
{
"comment": "",
"key": "Выйти",
"location": {
"startingColumn": 35,
"startingLine": 605
}
},
{
"comment": "",
"key": "Отмена",
"location": {
"startingColumn": 24,
"startingLine": 613
}
},
{
"comment": "",
"key": "Выйти",
"location": {
"startingColumn": 24,
"startingLine": 614
}
},
{
"comment": "",
"key": "%lld DWT",
"location": {
"startingColumn": 23,
"startingLine": 677
}
},
{
"comment": "",
"key": "Свободно",
"location": {
"startingColumn": 52,
"startingLine": 691
}
},
{
"comment": "",
"key": "Занято",
"location": {
"startingColumn": 73,
"startingLine": 691
}
},
{
"comment": "",
"key": "Срочно",
"location": {
"startingColumn": 27,
"startingLine": 719
}
},
{
"comment": "",
"key": "Откуда",
"location": {
"startingColumn": 26,
"startingLine": 727
}
},
{
"comment": "",
"key": "Куда",
"location": {
"startingColumn": 26,
"startingLine": 739
}
},
{
"comment": "",
"key": "Объём",
"location": {
"startingColumn": 26,
"startingLine": 750
}
},
{
"comment": "",
"key": "$%lld/тонна",
"location": {
"startingColumn": 22,
"startingLine": 760
}
}
]
},
"version": 1
}

View File

@ -1,59 +0,0 @@
{
"" : {
"diagnostics" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp-primary.dia",
"emit-module-dependencies" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp-primary-emit-module.d",
"emit-module-diagnostics" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp-primary-emit-module.dia",
"pch" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp-primary-Bridging-header.pch",
"swift-dependencies" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp-primary.swiftdeps"
},
"/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/DerivedSources/GeneratedAssetSymbols.swift" : {
"const-values" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/GeneratedAssetSymbols.swiftconstvalues",
"dependencies" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/GeneratedAssetSymbols.d",
"diagnostics" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/GeneratedAssetSymbols.dia",
"index-unit-output-path" : "/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/GeneratedAssetSymbols.o",
"llvm-bc" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/GeneratedAssetSymbols.bc",
"object" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/GeneratedAssetSymbols.o",
"swift-dependencies" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/GeneratedAssetSymbols.swiftdeps",
"swiftmodule" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/GeneratedAssetSymbols~partial.swiftmodule"
},
"/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/ПеревозчикApp/ГлавныйЭкран.swift" : {
"const-values" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ГлавныйЭкран.swiftconstvalues",
"dependencies" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ГлавныйЭкран.d",
"diagnostics" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ГлавныйЭкран.dia",
"index-unit-output-path" : "/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ГлавныйЭкран.o",
"llvm-bc" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ГлавныйЭкран.bc",
"object" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ГлавныйЭкран.o",
"swift-dependencies" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ГлавныйЭкран.swiftdeps",
"swiftmodule" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ГлавныйЭкран~partial.swiftmodule"
},
"/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/ПеревозчикApp/ПеревозчикApp.swift" : {
"const-values" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp.swiftconstvalues",
"dependencies" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp.d",
"diagnostics" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp.dia",
"index-unit-output-path" : "/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp.o",
"llvm-bc" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp.bc",
"object" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp.o",
"swift-dependencies" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp.swiftdeps",
"swiftmodule" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp~partial.swiftmodule"
},
"/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/ПеревозчикApp/СлужбаАвторизации.swift" : {
"const-values" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/СлужбаАвторизации.swiftconstvalues",
"dependencies" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/СлужбаАвторизации.d",
"diagnostics" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/СлужбаАвторизации.dia",
"index-unit-output-path" : "/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/СлужбаАвторизации.o",
"llvm-bc" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/СлужбаАвторизации.bc",
"object" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/СлужбаАвторизации.o",
"swift-dependencies" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/СлужбаАвторизации.swiftdeps",
"swiftmodule" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/СлужбаАвторизации~partial.swiftmodule"
},
"/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/ПеревозчикApp/ЭкранВхода.swift" : {
"const-values" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ЭкранВхода.swiftconstvalues",
"dependencies" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ЭкранВхода.d",
"diagnostics" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ЭкранВхода.dia",
"index-unit-output-path" : "/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ЭкранВхода.o",
"llvm-bc" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ЭкранВхода.bc",
"object" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ЭкранВхода.o",
"swift-dependencies" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ЭкранВхода.swiftdeps",
"swiftmodule" : "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ЭкранВхода~partial.swiftmodule"
}
}

View File

@ -1,311 +0,0 @@
// Generated by Apple Swift version 6.2.3 effective-5.10 (swiftlang-6.2.3.3.21 clang-1700.6.3.2)
#ifndef ПеревозчикAPP_SWIFT_H
#define ПеревозчикAPP_SWIFT_H
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"
#if !defined(__has_include)
# define __has_include(x) 0
#endif
#if !defined(__has_attribute)
# define __has_attribute(x) 0
#endif
#if !defined(__has_feature)
# define __has_feature(x) 0
#endif
#if !defined(__has_warning)
# define __has_warning(x) 0
#endif
#if __has_include(<swift/objc-prologue.h>)
# include <swift/objc-prologue.h>
#endif
#pragma clang diagnostic ignored "-Wauto-import"
#if defined(__OBJC__)
#include <Foundation/Foundation.h>
#endif
#if defined(__cplusplus)
#include <cstdint>
#include <cstddef>
#include <cstdbool>
#include <cstring>
#include <stdlib.h>
#include <new>
#include <type_traits>
#else
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <string.h>
#endif
#if defined(__cplusplus)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module"
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h>
#else
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
# ifndef __ptrauth_swift_value_witness_function_pointer
# define __ptrauth_swift_value_witness_function_pointer(x)
# endif
# ifndef __ptrauth_swift_class_method_pointer
# define __ptrauth_swift_class_method_pointer(x)
# endif
#pragma clang diagnostic pop
#endif
#pragma clang diagnostic pop
#endif
#if !defined(SWIFT_TYPEDEFS)
# define SWIFT_TYPEDEFS 1
# if __has_include(<uchar.h>)
# include <uchar.h>
# elif !defined(__cplusplus)
typedef unsigned char char8_t;
typedef uint_least16_t char16_t;
typedef uint_least32_t char32_t;
# endif
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif
#if !defined(SWIFT_PASTE)
# define SWIFT_PASTE_HELPER(x, y) x##y
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
#endif
#if !defined(SWIFT_METATYPE)
# define SWIFT_METATYPE(X) Class
#endif
#if !defined(SWIFT_CLASS_PROPERTY)
# if __has_feature(objc_class_property)
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
# else
# define SWIFT_CLASS_PROPERTY(...)
# endif
#endif
#if !defined(SWIFT_RUNTIME_NAME)
# if __has_attribute(objc_runtime_name)
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
# else
# define SWIFT_RUNTIME_NAME(X)
# endif
#endif
#if !defined(SWIFT_COMPILE_NAME)
# if __has_attribute(swift_name)
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
# else
# define SWIFT_COMPILE_NAME(X)
# endif
#endif
#if !defined(SWIFT_METHOD_FAMILY)
# if __has_attribute(objc_method_family)
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
# else
# define SWIFT_METHOD_FAMILY(X)
# endif
#endif
#if !defined(SWIFT_NOESCAPE)
# if __has_attribute(noescape)
# define SWIFT_NOESCAPE __attribute__((noescape))
# else
# define SWIFT_NOESCAPE
# endif
#endif
#if !defined(SWIFT_RELEASES_ARGUMENT)
# if __has_attribute(ns_consumed)
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
# else
# define SWIFT_RELEASES_ARGUMENT
# endif
#endif
#if !defined(SWIFT_WARN_UNUSED_RESULT)
# if __has_attribute(warn_unused_result)
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
# else
# define SWIFT_WARN_UNUSED_RESULT
# endif
#endif
#if !defined(SWIFT_NORETURN)
# if __has_attribute(noreturn)
# define SWIFT_NORETURN __attribute__((noreturn))
# else
# define SWIFT_NORETURN
# endif
#endif
#if !defined(SWIFT_CLASS_EXTRA)
# define SWIFT_CLASS_EXTRA
#endif
#if !defined(SWIFT_PROTOCOL_EXTRA)
# define SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_ENUM_EXTRA)
# define SWIFT_ENUM_EXTRA
#endif
#if !defined(SWIFT_CLASS)
# if __has_attribute(objc_subclassing_restricted)
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# else
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# endif
#endif
#if !defined(SWIFT_RESILIENT_CLASS)
# if __has_attribute(objc_class_stub)
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
# else
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
# endif
#endif
#if !defined(SWIFT_PROTOCOL)
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_EXTENSION)
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
#endif
#if !defined(OBJC_DESIGNATED_INITIALIZER)
# if __has_attribute(objc_designated_initializer)
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
# else
# define OBJC_DESIGNATED_INITIALIZER
# endif
#endif
#if !defined(SWIFT_ENUM_ATTR)
# if __has_attribute(enum_extensibility)
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
# else
# define SWIFT_ENUM_ATTR(_extensibility)
# endif
#endif
#if !defined(SWIFT_ENUM)
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# if __has_feature(generalized_swift_name)
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# else
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
# endif
#endif
#if !defined(SWIFT_UNAVAILABLE)
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
#endif
#if !defined(SWIFT_UNAVAILABLE_MSG)
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
#endif
#if !defined(SWIFT_AVAILABILITY)
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
#endif
#if !defined(SWIFT_WEAK_IMPORT)
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
#endif
#if !defined(SWIFT_DEPRECATED)
# define SWIFT_DEPRECATED __attribute__((deprecated))
#endif
#if !defined(SWIFT_DEPRECATED_MSG)
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
#endif
#if !defined(SWIFT_DEPRECATED_OBJC)
# if __has_feature(attribute_diagnose_if_objc)
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
# else
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
# endif
#endif
#if defined(__OBJC__)
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
# else
# define SWIFT_EXTERN extern
# endif
#endif
#if !defined(SWIFT_CALL)
# define SWIFT_CALL __attribute__((swiftcall))
#endif
#if !defined(SWIFT_INDIRECT_RESULT)
# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
#endif
#if !defined(SWIFT_CONTEXT)
# define SWIFT_CONTEXT __attribute__((swift_context))
#endif
#if !defined(SWIFT_ERROR_RESULT)
# define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
#endif
#if defined(__cplusplus)
# define SWIFT_NOEXCEPT noexcept
#else
# define SWIFT_NOEXCEPT
#endif
#if !defined(SWIFT_C_INLINE_THUNK)
# if __has_attribute(always_inline)
# if __has_attribute(nodebug)
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
# else
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
# endif
# else
# define SWIFT_C_INLINE_THUNK inline
# endif
#endif
#if defined(_WIN32)
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
#endif
#else
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL
#endif
#endif
#if defined(__OBJC__)
#if __has_feature(objc_modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
#endif
#endif
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
#if __has_warning("-Wpragma-clang-attribute")
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
#endif
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wnullability"
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
#pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
#if __has_attribute(external_source_symbol)
# pragma push_macro("any")
# undef any
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="ПеревозчикApp",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
# pragma pop_macro("any")
#endif
#if defined(__OBJC__)
#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
#if defined(__cplusplus)
#endif
#pragma clang diagnostic pop
#endif

View File

@ -1,584 +0,0 @@
[
{
"isFramework" : true,
"moduleName" : "Accessibility",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/Accessibility.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : true,
"moduleName" : "Combine",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/Combine.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : true,
"moduleName" : "CoreData",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/CoreData.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "CoreFoundation",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/CoreFoundation.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : true,
"moduleName" : "CoreGraphics",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/CoreGraphics.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "CoreImage",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/CoreImage.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : true,
"moduleName" : "CoreText",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/CoreText.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : true,
"moduleName" : "CoreTransferable",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/CoreTransferable.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : true,
"moduleName" : "CoreVideo",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/CoreVideo.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "Darwin",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/Darwin.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : true,
"moduleName" : "DataDetection",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/DataDetection.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : true,
"moduleName" : "DeveloperToolsSupport",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/DeveloperToolsSupport.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "Dispatch",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/Dispatch.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : true,
"moduleName" : "FileProvider",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/FileProvider.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : true,
"moduleName" : "Foundation",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/Foundation.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "Metal",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/Metal.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "OSLog",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/OSLog.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "ObjectiveC",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/ObjectiveC.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "Observation",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/Observation.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "QuartzCore",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/QuartzCore.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "Spatial",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/Spatial.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "Swift",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/Swift.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "SwiftOnoneSupport",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/SwiftOnoneSupport.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : true,
"moduleName" : "SwiftUI",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/SwiftUI.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : true,
"moduleName" : "SwiftUICore",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/SwiftUICore.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : true,
"moduleName" : "Symbols",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/Symbols.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "System",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/System.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : true,
"moduleName" : "UIKit",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/UIKit.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "UniformTypeIdentifiers",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/UniformTypeIdentifiers.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "XPC",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/XPC.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "_Builtin_float",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/_Builtin_float.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "_Concurrency",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/_Concurrency.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "_DarwinFoundation1",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/_DarwinFoundation1.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "_DarwinFoundation2",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/_DarwinFoundation2.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "_DarwinFoundation3",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/_DarwinFoundation3.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "_StringProcessing",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/_StringProcessing.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "os",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/os.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"isFramework" : false,
"moduleName" : "simd",
"modulePath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/swift\/iphoneos\/prebuilt-modules\/26.2\/simd.swiftmodule\/arm64e-apple-ios.swiftmodule"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/Accessibility.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/Accessibility-C62U9FTYLA3TYLG8TV8A7LFV0.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "Accessibility"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/CFNetwork.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/CFNetwork-1SGXQ3GKZG1M7FN5L2NH6LW2I.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "CFNetwork"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/CoreData.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/CoreData-4V6FD8Y212JASE28VIE4YY240.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "CoreData"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/CoreFoundation.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/CoreFoundation-3L8AQIU2ZRQ26CJ24DUKNQ404.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "CoreFoundation"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/CoreGraphics.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/CoreGraphics-80FF4LSI9M2SL07J0B1N2P08P.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "CoreGraphics"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/CoreImage.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/CoreImage-Y2K73DQB9OC6CZ6MXTVI9VCN.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "CoreImage"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/CoreText.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/CoreText-8ZZUZCIAUU5J5LMHTIFA6PXP.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "CoreText"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/CoreTransferable.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/CoreTransferable-E6ISN6M3U43VZCQRO4Y75JFMD.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "CoreTransferable"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/CoreVideo.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/CoreVideo-62SQ8SKEGDSNHZC6L1RSN00HH.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "CoreVideo"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/Darwin.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/Darwin-CY0CTL0EFEJ5U9NI3CPJL5Q1H.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "Darwin"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/DataDetection.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/DataDetection-8PRL295RWJZ6F3R3G7IBJTDC5.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "DataDetection"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/DeveloperToolsSupport.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/DeveloperToolsSupport-5MGCX46KM08W614Z5NISE3F4Y.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "DeveloperToolsSupport"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/dispatch.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/Dispatch-F1VZQT8VDDAOQ9KKJ6DRROPPX.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "Dispatch"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/FileProvider.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/FileProvider-4UXRK9I2NTBBGFJSSVV4U6VEA.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "FileProvider"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/Foundation.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/Foundation-1DKOZQ3HN1Q70JGTGPV91ZR8Q.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "Foundation"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/IOSurface.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/IOSurface-9SDLDUTBRQM7YD0KRMTP4S8XP.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "IOSurface"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/ImageIO.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/ImageIO-8LYUJESWTZIZRYMOH8J4Q5WHD.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "ImageIO"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/DarwinBasic.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/MachO-9XHRQX8HIU2SL48ZEVXA2585F.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "MachO"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/Metal.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/Metal-DREMHUNQ6LMHY5GR8HD25X3V1.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "Metal"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/OSLog.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/OSLog-CXRHFCL6XLIR0CDPV7XAUXXA3.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "OSLog"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/ObjectiveC.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/ObjectiveC-DS4ZJN6V5J1NZT4SON3MGDRGN.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "ObjectiveC"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/OpenGLES.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/OpenGLES-DCT37AJX2EA9HQE4EBIMM14Z4.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "OpenGLES"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/QuartzCore.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/QuartzCore-7G63QPRZMXEU0XMJTCEZL6OO6.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "QuartzCore"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/Security.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/Security-BF0MUN0Y8PC9SR7TUS5VTHP92.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "Security"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/Spatial\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/Spatial-5PQ5LR5299NVDLXN5TY03XG75.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "Spatial"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/lib\/swift\/shims\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/SwiftShims-CJQ7R3VA737M87QB62I6SDCI1.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "SwiftShims"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/SwiftUI.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/SwiftUI-3SVDC5KUOH8MQJP58UADMX2HR.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "SwiftUI"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/SwiftUICore.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/SwiftUICore-41UVPCCAX1QV949B9DOI0WQZ3.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "SwiftUICore"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/Symbols.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/Symbols-DB9PDK2OTBWDT7CDYOXLRRX6S.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "Symbols"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/UIKit.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/UIKit-DZI73IB13UXP7Q90G94WTVUBI.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "UIKit"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/SubFrameworks\/UIUtilities.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/UIUtilities-89XVG6JGCDW5BU5JBXYJW4Z2S.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "UIUtilities"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/UniformTypeIdentifiers.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/UniformTypeIdentifiers-4OJQHW77RJDN86RNV2OJDTBJZ.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "UniformTypeIdentifiers"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/System\/Library\/Frameworks\/UserNotifications.framework\/Modules\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/UserNotifications-9MW7X6NLJ1S9FYF1ZNQ7WK9R5.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "UserNotifications"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/xpc.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/XPC-3OK6XRYYE50JIGA1PU87Q3UJ7.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "XPC"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/DarwinFoundation1.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_AvailabilityInternal-13FFMP6WXR1X4GN07QPHPL2EE.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_AvailabilityInternal"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/clang\/17\/include\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_Builtin_float-EGPIYOQ8YA7D9AECMONKLN49F.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_Builtin_float"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/clang\/17\/include\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_Builtin_intrinsics-428CDRG9803FAAQ64ZDIG5U5N.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_Builtin_intrinsics"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/clang\/17\/include\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_Builtin_inttypes-C4RA59ERODC4XOQW5ZIPYSIKW.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_Builtin_inttypes"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/clang\/17\/include\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_Builtin_limits-1744YNIP2D7MYCMAYJMNN2MLA.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_Builtin_limits"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/clang\/17\/include\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_Builtin_stdarg-HV85A3369A523T66O8ERMPIF.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_Builtin_stdarg"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/clang\/17\/include\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_Builtin_stdatomic-EDDO8HV131DSCBXFO0W9NVM75.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_Builtin_stdatomic"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/clang\/17\/include\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_Builtin_stdbool-ASH3AOEY9R05Z1UU8OS2G84OY.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_Builtin_stdbool"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/clang\/17\/include\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_Builtin_stddef-2VHR874IJGR6EH1GM0GW5S9L7.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_Builtin_stddef"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/clang\/17\/include\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_Builtin_stdint-E1VI5OIP0PWEBBB1QYFF6PT6C.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_Builtin_stdint"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/clang\/17\/include\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_Builtin_tgmath-9T86XDRQ0Q545J7HR3QXO5PJT.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_Builtin_tgmath"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/DarwinFoundation1.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_DarwinFoundation1-DDSWUKL485E8LCIVHSZ5XT9X2.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_DarwinFoundation1"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/DarwinFoundation2.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_DarwinFoundation2-5PB2TB6Z8PMSW5930HW7KNM67.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_DarwinFoundation2"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/DarwinFoundation3.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_DarwinFoundation3-5CSMHLBZNU0RIGU3MWDMTX6AQ.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_DarwinFoundation3"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/lib\/swift\/shims\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/_SwiftConcurrencyShims-592420Y5Z7QFGYPMS1QMLLZMS.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "_SwiftConcurrencyShims"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/os.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/os-1LBD89H9RETXP0U909S6VAUAC.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "os"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/os.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/os_object-18MANWHUGWV6TYH711694FGN2.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "os_object"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/os.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/os_workgroup-B1927V9MTT69Q6W06BPP9PV6K.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "os_workgroup"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/clang\/17\/include\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/ptrauth-727YBN87XOW33GJH1892FST8J.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "ptrauth"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Toolchains\/XcodeDefault.xctoolchain\/usr\/lib\/clang\/17\/include\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/ptrcheck-2VI7Y8983EX3MC0F6MW0IN9RP.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "ptrcheck"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/simd\/module.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/simd-2PUY7NODH0QCK5IVXKACBEGTX.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "simd"
},
{
"clangModuleMapPath" : "\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform\/Developer\/SDKs\/iPhoneOS.sdk\/usr\/include\/DarwinFoundation2.modulemap",
"clangModulePath" : "\/Users\/kh.\/Python\/Ничто_Nothing_无_金元Ɉ\/Монтана_Montana_蒙大拿\/Русский\/Перевозчик\/ПеревозчикApp\/build\/ModuleCache.noindex\/sys_types-3TLRAX6163OF8VM1T7CNNIW41.pcm",
"isBridgingHeaderDependency" : false,
"isFramework" : false,
"moduleName" : "sys_types"
}
]

View File

@ -1,5 +0,0 @@
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp.o
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/СлужбаАвторизации.o
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ЭкранВхода.o
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ГлавныйЭкран.o
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/GeneratedAssetSymbols.o

View File

@ -1,5 +0,0 @@
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ПеревозчикApp.swiftconstvalues
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/СлужбаАвторизации.swiftconstvalues
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ЭкранВхода.swiftconstvalues
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/ГлавныйЭкран.swiftconstvalues
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/Objects-normal/arm64/GeneratedAssetSymbols.swiftconstvalues

View File

@ -1,5 +0,0 @@
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/ПеревозчикApp/ПеревозчикApp.swift
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/ПеревозчикApp/СлужбаАвторизации.swift
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/ПеревозчикApp/ЭкранВхода.swift
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/ПеревозчикApp/ГлавныйЭкран.swift
/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/build/Build/Intermediates.noindex/ПеревозчикApp.build/Debug-iphoneos/ПеревозчикApp.build/DerivedSources/GeneratedAssetSymbols.swift

View File

@ -1,9 +0,0 @@
{
"ABIRoot": {
"kind": "Root",
"name": "NO_MODULE",
"printedName": "NO_MODULE",
"json_format_version": 8
},
"ConstValues": []
}

View File

@ -1,5 +0,0 @@
{
"source": "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/ПеревозчикApp/ПеревозчикApp.swift",
"tables": {},
"version": 1
}

View File

@ -1 +0,0 @@
["AppIntent","EntityQuery","AppEntity","TransientEntity","AppEnum","AppShortcutProviding","AppShortcutsProvider","AnyResolverProviding","AppIntentsPackage","DynamicOptionsProvider","_IntentValueRepresentable","_AssistantIntentsProvider","_GenerativeFunctionExtractable","IntentValueQuery","Resolver","AppExtension","ExtensionPointDefining"]

View File

@ -1,5 +0,0 @@
{
"source": "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/ПеревозчикApp/СлужбаАвторизации.swift",
"tables": {},
"version": 1
}

View File

@ -1,112 +0,0 @@
{
"source": "/Users/kh./Python/Ничто_Nothing_无_金元Ɉ/Монтана_Montana_蒙大拿/Русский/Перевозчик/ПеревозчикApp/ПеревозчикApp/ЭкранВхода.swift",
"tables": {
"Localizable": [
{
"comment": "",
"key": "Seafare Ɉ",
"location": {
"startingColumn": 14,
"startingLine": 207
}
},
{
"comment": "",
"key": "Seafare",
"location": {
"startingColumn": 18,
"startingLine": 69
}
},
{
"comment": "",
"key": "B2B для перевозок",
"location": {
"startingColumn": 18,
"startingLine": 73
}
},
{
"comment": "",
"key": "Вход по номеру телефона",
"location": {
"startingColumn": 18,
"startingLine": 83
}
},
{
"comment": "",
"key": "Верификация номера телефона",
"location": {
"startingColumn": 18,
"startingLine": 110
}
},
{
"comment": "",
"key": "Войти через Telegram",
"location": {
"startingColumn": 26,
"startingLine": 94
}
},
{
"comment": "",
"key": "Верификация в Telegram...",
"location": {
"startingColumn": 18,
"startingLine": 124
}
},
{
"comment": "",
"key": "Номер привяжется к вашему аккаунту",
"location": {
"startingColumn": 18,
"startingLine": 142
}
},
{
"comment": "",
"key": "Подтвердите номер телефона\nв боте @junomontanaagibot",
"location": {
"startingColumn": 22,
"startingLine": 133
}
},
{
"comment": "",
"key": "Открыть Telegram",
"location": {
"startingColumn": 22,
"startingLine": 149
}
},
{
"comment": "",
"key": "Отмена",
"location": {
"startingColumn": 22,
"startingLine": 157
}
},
{
"comment": "",
"key": "Проверка...",
"location": {
"startingColumn": 18,
"startingLine": 171
}
},
{
"comment": "",
"key": "Попробовать снова",
"location": {
"startingColumn": 22,
"startingLine": 193
}
}
]
},
"version": 1
}

View File

@ -1,31 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleIcons</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>AppIcon60x60</string>
</array>
<key>CFBundleIconName</key>
<string>AppIcon</string>
</dict>
</dict>
<key>CFBundleIcons~ipad</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>AppIcon60x60</string>
<string>AppIcon76x76</string>
</array>
<key>CFBundleIconName</key>
<string>AppIcon</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,31 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleIcons</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>AppIcon60x60</string>
</array>
<key>CFBundleIconName</key>
<string>AppIcon</string>
</dict>
</dict>
<key>CFBundleIcons~ipad</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>AppIcon60x60</string>
<string>AppIcon76x76</string>
</array>
<key>CFBundleIconName</key>
<string>AppIcon</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict/>
</plist>

View File

@ -1 +0,0 @@
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/libPreviewsJITStubExecutor.a

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>application-identifier</key>
<string>5U4V57QT55.network.montana.perevozchik</string>
<key>com.apple.developer.team-identifier</key>
<string>5U4V57QT55</string>
<key>get-task-allow</key>
<true/>
</dict>
</plist>

View File

@ -1,2 +0,0 @@
p<EFBFBD><EFBFBD>°<>Š0@ application-identifier &5U4V57QT55.network.montana.perevozchik01 #com.apple.developer.team-identifier
5U4V57QT550 get-task-allowÿ

View File

@ -1,172 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>files</key>
<dict>
<key>AppIcon60x60@2x.png</key>
<data>
mW/nSj33xaS6OzowOuShqBvhNYk=
</data>
<key>AppIcon76x76@2x~ipad.png</key>
<data>
7N4g3+V+R0jEqBZ4s2IsfPvOhC8=
</data>
<key>Assets.car</key>
<data>
rvQhN5ND05lc0XsLcC8ggDlmkS8=
</data>
<key>Info.plist</key>
<data>
JljXJyfFufejPLMIr0PKboVRkzg=
</data>
<key>PkgInfo</key>
<data>
n57qDP4tZfLD1rCS43W0B4LQjzE=
</data>
<key>__preview.dylib</key>
<data>
nZuhFVF6SEsvLSKXnVHqFBlLf5Q=
</data>
<key>embedded.mobileprovision</key>
<data>
FxIadyfDOa+72xpcx3oVsKCNXsk=
</data>
<key>ПеревозчикApp.debug.dylib</key>
<data>
3oREosc5xcb+9NRr9cN23AKFfgI=
</data>
</dict>
<key>files2</key>
<dict>
<key>AppIcon60x60@2x.png</key>
<dict>
<key>hash2</key>
<data>
ZCijXJNnK2OILAM5r/nLh4Kqgmgbh7XKtt/pR7EjT7o=
</data>
</dict>
<key>AppIcon76x76@2x~ipad.png</key>
<dict>
<key>hash2</key>
<data>
I5OvDLcC/3YLuUsyKs5mX+q4COmzOlSetFIKlzc6r9w=
</data>
</dict>
<key>Assets.car</key>
<dict>
<key>hash2</key>
<data>
/uwcjQU9zDRrouMKf4pyxb2uMA9TisgPdrukgaVnj5c=
</data>
</dict>
<key>__preview.dylib</key>
<dict>
<key>hash2</key>
<data>
gQDYjzpfuDic0Lqe1K2JiqTbVlAY47TpBAgV3lgUvWM=
</data>
</dict>
<key>embedded.mobileprovision</key>
<dict>
<key>hash2</key>
<data>
9Z+HnEmxNprJOHebyHvCUw7GiJTl5g413G8SvfF/NoY=
</data>
</dict>
<key>ПеревозчикApp.debug.dylib</key>
<dict>
<key>hash2</key>
<data>
DXLuYIjuvZRCtstFvQN8svVmnPIQ9dfGCzQRllCyp+A=
</data>
</dict>
</dict>
<key>rules</key>
<dict>
<key>^.*</key>
<true/>
<key>^.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^version.plist$</key>
<true/>
</dict>
<key>rules2</key>
<dict>
<key>.*\.dSYM($|/)</key>
<dict>
<key>weight</key>
<real>11</real>
</dict>
<key>^(.*/)?\.DS_Store$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>2000</real>
</dict>
<key>^.*</key>
<true/>
<key>^.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^Info\.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^PkgInfo$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^embedded\.provisionprofile$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^version\.plist$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,9 +0,0 @@
{
"ABIRoot": {
"kind": "Root",
"name": "NO_MODULE",
"printedName": "NO_MODULE",
"json_format_version": 8
},
"ConstValues": []
}

Binary file not shown.

Binary file not shown.

View File

@ -1 +0,0 @@
data/datasetv1.tar.gz filter=lfs diff=lfs merge=lfs -text