From 446998595904f1647b77e2b7d247c827686da160 Mon Sep 17 00:00:00 2001 From: christophhagen Date: Tue, 19 May 2020 15:19:19 +0200 Subject: [PATCH] First try --- .gitignore | 1 + .../AppTests_Info.plist | 25 + CapCollectorServer.xcodeproj/App_Info.plist | 25 + CapCollectorServer.xcodeproj/Async_Info.plist | 25 + CapCollectorServer.xcodeproj/Bits_Info.plist | 25 + .../CBase32_Info.plist | 25 + .../CBcrypt_Info.plist | 25 + .../CCryptoOpenSSL_Info.plist | 25 + .../CNIOAtomics_Info.plist | 25 + .../CNIODarwin_Info.plist | 25 + .../CNIOHTTPParser_Info.plist | 25 + .../CNIOLinux_Info.plist | 25 + .../CNIOOpenSSL_Info.plist | 25 + .../CNIOSHA1_Info.plist | 25 + .../CNIOZlib_Info.plist | 25 + .../COperatingSystem_Info.plist | 25 + .../Command_Info.plist | 25 + .../Console_Info.plist | 25 + CapCollectorServer.xcodeproj/Core_Info.plist | 25 + .../Crypto_Info.plist | 25 + .../DatabaseKit_Info.plist | 25 + .../Debugging_Info.plist | 25 + .../CCryptoOpenSSL/module.modulemap | 4 + .../CNIOOpenSSL/module.modulemap | 4 + CapCollectorServer.xcodeproj/HTTP_Info.plist | 25 + .../Logging_Info.plist | 25 + .../Multipart_Info.plist | 25 + .../NIOConcurrencyHelpers_Info.plist | 25 + .../NIOFoundationCompat_Info.plist | 25 + .../NIOHTTP1_Info.plist | 25 + .../NIOOpenSSL_Info.plist | 25 + .../NIOPriorityQueue_Info.plist | 25 + .../NIOTLS_Info.plist | 25 + .../NIOWebSocket_Info.plist | 25 + CapCollectorServer.xcodeproj/NIO_Info.plist | 25 + .../Random_Info.plist | 25 + .../Routing_Info.plist | 25 + .../SQLiteObjc_Info.plist | 25 + .../SQLite_Info.plist | 25 + .../Service_Info.plist | 25 + .../TemplateKit_Info.plist | 25 + .../URLEncodedForm_Info.plist | 25 + .../Validation_Info.plist | 25 + CapCollectorServer.xcodeproj/Vapor_Info.plist | 25 + .../WebSocket_Info.plist | 25 + CapCollectorServer.xcodeproj/project.pbxproj | 16185 ++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + .../CapCollectorServer-Package.xcscheme | 82 + .../xcshareddata/xcschemes/Run.xcscheme | 78 + Package.swift | 4 +- Sources/App/Error.swift | 27 + Sources/App/Log.swift | 20 + Sources/App/Router+Extensions.swift | 56 + Sources/App/routes.swift | 126 +- 56 files changed, 17656 insertions(+), 4 deletions(-) create mode 100644 CapCollectorServer.xcodeproj/AppTests_Info.plist create mode 100644 CapCollectorServer.xcodeproj/App_Info.plist create mode 100644 CapCollectorServer.xcodeproj/Async_Info.plist create mode 100644 CapCollectorServer.xcodeproj/Bits_Info.plist create mode 100644 CapCollectorServer.xcodeproj/CBase32_Info.plist create mode 100644 CapCollectorServer.xcodeproj/CBcrypt_Info.plist create mode 100644 CapCollectorServer.xcodeproj/CCryptoOpenSSL_Info.plist create mode 100644 CapCollectorServer.xcodeproj/CNIOAtomics_Info.plist create mode 100644 CapCollectorServer.xcodeproj/CNIODarwin_Info.plist create mode 100644 CapCollectorServer.xcodeproj/CNIOHTTPParser_Info.plist create mode 100644 CapCollectorServer.xcodeproj/CNIOLinux_Info.plist create mode 100644 CapCollectorServer.xcodeproj/CNIOOpenSSL_Info.plist create mode 100644 CapCollectorServer.xcodeproj/CNIOSHA1_Info.plist create mode 100644 CapCollectorServer.xcodeproj/CNIOZlib_Info.plist create mode 100644 CapCollectorServer.xcodeproj/COperatingSystem_Info.plist create mode 100644 CapCollectorServer.xcodeproj/Command_Info.plist create mode 100644 CapCollectorServer.xcodeproj/Console_Info.plist create mode 100644 CapCollectorServer.xcodeproj/Core_Info.plist create mode 100644 CapCollectorServer.xcodeproj/Crypto_Info.plist create mode 100644 CapCollectorServer.xcodeproj/DatabaseKit_Info.plist create mode 100644 CapCollectorServer.xcodeproj/Debugging_Info.plist create mode 100644 CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap create mode 100644 CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap create mode 100644 CapCollectorServer.xcodeproj/HTTP_Info.plist create mode 100644 CapCollectorServer.xcodeproj/Logging_Info.plist create mode 100644 CapCollectorServer.xcodeproj/Multipart_Info.plist create mode 100644 CapCollectorServer.xcodeproj/NIOConcurrencyHelpers_Info.plist create mode 100644 CapCollectorServer.xcodeproj/NIOFoundationCompat_Info.plist create mode 100644 CapCollectorServer.xcodeproj/NIOHTTP1_Info.plist create mode 100644 CapCollectorServer.xcodeproj/NIOOpenSSL_Info.plist create mode 100644 CapCollectorServer.xcodeproj/NIOPriorityQueue_Info.plist create mode 100644 CapCollectorServer.xcodeproj/NIOTLS_Info.plist create mode 100644 CapCollectorServer.xcodeproj/NIOWebSocket_Info.plist create mode 100644 CapCollectorServer.xcodeproj/NIO_Info.plist create mode 100644 CapCollectorServer.xcodeproj/Random_Info.plist create mode 100644 CapCollectorServer.xcodeproj/Routing_Info.plist create mode 100644 CapCollectorServer.xcodeproj/SQLiteObjc_Info.plist create mode 100644 CapCollectorServer.xcodeproj/SQLite_Info.plist create mode 100644 CapCollectorServer.xcodeproj/Service_Info.plist create mode 100644 CapCollectorServer.xcodeproj/TemplateKit_Info.plist create mode 100644 CapCollectorServer.xcodeproj/URLEncodedForm_Info.plist create mode 100644 CapCollectorServer.xcodeproj/Validation_Info.plist create mode 100644 CapCollectorServer.xcodeproj/Vapor_Info.plist create mode 100644 CapCollectorServer.xcodeproj/WebSocket_Info.plist create mode 100644 CapCollectorServer.xcodeproj/project.pbxproj create mode 100644 CapCollectorServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 CapCollectorServer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 CapCollectorServer.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 CapCollectorServer.xcodeproj/xcshareddata/xcschemes/CapCollectorServer-Package.xcscheme create mode 100644 CapCollectorServer.xcodeproj/xcshareddata/xcschemes/Run.xcscheme create mode 100644 Sources/App/Error.swift create mode 100644 Sources/App/Log.swift create mode 100644 Sources/App/Router+Extensions.swift diff --git a/.gitignore b/.gitignore index fd70574..7b94d6a 100644 --- a/.gitignore +++ b/.gitignore @@ -66,3 +66,4 @@ fastlane/report.xml fastlane/Preview.html fastlane/screenshots fastlane/test_output +Package.resolved diff --git a/CapCollectorServer.xcodeproj/AppTests_Info.plist b/CapCollectorServer.xcodeproj/AppTests_Info.plist new file mode 100644 index 0000000..7c23420 --- /dev/null +++ b/CapCollectorServer.xcodeproj/AppTests_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/App_Info.plist b/CapCollectorServer.xcodeproj/App_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/App_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/Async_Info.plist b/CapCollectorServer.xcodeproj/Async_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/Async_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/Bits_Info.plist b/CapCollectorServer.xcodeproj/Bits_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/Bits_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/CBase32_Info.plist b/CapCollectorServer.xcodeproj/CBase32_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/CBase32_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/CBcrypt_Info.plist b/CapCollectorServer.xcodeproj/CBcrypt_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/CBcrypt_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/CCryptoOpenSSL_Info.plist b/CapCollectorServer.xcodeproj/CCryptoOpenSSL_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/CCryptoOpenSSL_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/CNIOAtomics_Info.plist b/CapCollectorServer.xcodeproj/CNIOAtomics_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/CNIOAtomics_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/CNIODarwin_Info.plist b/CapCollectorServer.xcodeproj/CNIODarwin_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/CNIODarwin_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/CNIOHTTPParser_Info.plist b/CapCollectorServer.xcodeproj/CNIOHTTPParser_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/CNIOHTTPParser_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/CNIOLinux_Info.plist b/CapCollectorServer.xcodeproj/CNIOLinux_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/CNIOLinux_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/CNIOOpenSSL_Info.plist b/CapCollectorServer.xcodeproj/CNIOOpenSSL_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/CNIOOpenSSL_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/CNIOSHA1_Info.plist b/CapCollectorServer.xcodeproj/CNIOSHA1_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/CNIOSHA1_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/CNIOZlib_Info.plist b/CapCollectorServer.xcodeproj/CNIOZlib_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/CNIOZlib_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/COperatingSystem_Info.plist b/CapCollectorServer.xcodeproj/COperatingSystem_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/COperatingSystem_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/Command_Info.plist b/CapCollectorServer.xcodeproj/Command_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/Command_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/Console_Info.plist b/CapCollectorServer.xcodeproj/Console_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/Console_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/Core_Info.plist b/CapCollectorServer.xcodeproj/Core_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/Core_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/Crypto_Info.plist b/CapCollectorServer.xcodeproj/Crypto_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/Crypto_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/DatabaseKit_Info.plist b/CapCollectorServer.xcodeproj/DatabaseKit_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/DatabaseKit_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/Debugging_Info.plist b/CapCollectorServer.xcodeproj/Debugging_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/Debugging_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap b/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap new file mode 100644 index 0000000..b67b40b --- /dev/null +++ b/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap @@ -0,0 +1,4 @@ +module CCryptoOpenSSL { + umbrella "/Users/user/Development/CapCollectorServer/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include" + export * +} diff --git a/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap b/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap new file mode 100644 index 0000000..69e7273 --- /dev/null +++ b/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap @@ -0,0 +1,4 @@ +module CNIOOpenSSL { + umbrella "/Users/user/Development/CapCollectorServer/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include" + export * +} diff --git a/CapCollectorServer.xcodeproj/HTTP_Info.plist b/CapCollectorServer.xcodeproj/HTTP_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/HTTP_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/Logging_Info.plist b/CapCollectorServer.xcodeproj/Logging_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/Logging_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/Multipart_Info.plist b/CapCollectorServer.xcodeproj/Multipart_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/Multipart_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/NIOConcurrencyHelpers_Info.plist b/CapCollectorServer.xcodeproj/NIOConcurrencyHelpers_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/NIOConcurrencyHelpers_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/NIOFoundationCompat_Info.plist b/CapCollectorServer.xcodeproj/NIOFoundationCompat_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/NIOFoundationCompat_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/NIOHTTP1_Info.plist b/CapCollectorServer.xcodeproj/NIOHTTP1_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/NIOHTTP1_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/NIOOpenSSL_Info.plist b/CapCollectorServer.xcodeproj/NIOOpenSSL_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/NIOOpenSSL_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/NIOPriorityQueue_Info.plist b/CapCollectorServer.xcodeproj/NIOPriorityQueue_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/NIOPriorityQueue_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/NIOTLS_Info.plist b/CapCollectorServer.xcodeproj/NIOTLS_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/NIOTLS_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/NIOWebSocket_Info.plist b/CapCollectorServer.xcodeproj/NIOWebSocket_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/NIOWebSocket_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/NIO_Info.plist b/CapCollectorServer.xcodeproj/NIO_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/NIO_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/Random_Info.plist b/CapCollectorServer.xcodeproj/Random_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/Random_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/Routing_Info.plist b/CapCollectorServer.xcodeproj/Routing_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/Routing_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/SQLiteObjc_Info.plist b/CapCollectorServer.xcodeproj/SQLiteObjc_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/SQLiteObjc_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/SQLite_Info.plist b/CapCollectorServer.xcodeproj/SQLite_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/SQLite_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/Service_Info.plist b/CapCollectorServer.xcodeproj/Service_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/Service_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/TemplateKit_Info.plist b/CapCollectorServer.xcodeproj/TemplateKit_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/TemplateKit_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/URLEncodedForm_Info.plist b/CapCollectorServer.xcodeproj/URLEncodedForm_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/URLEncodedForm_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/Validation_Info.plist b/CapCollectorServer.xcodeproj/Validation_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/Validation_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/Vapor_Info.plist b/CapCollectorServer.xcodeproj/Vapor_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/Vapor_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/WebSocket_Info.plist b/CapCollectorServer.xcodeproj/WebSocket_Info.plist new file mode 100644 index 0000000..57ada9f --- /dev/null +++ b/CapCollectorServer.xcodeproj/WebSocket_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/CapCollectorServer.xcodeproj/project.pbxproj b/CapCollectorServer.xcodeproj/project.pbxproj new file mode 100644 index 0000000..a459a2e --- /dev/null +++ b/CapCollectorServer.xcodeproj/project.pbxproj @@ -0,0 +1,16185 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXAggregateTarget section */ + "CapCollectorServer::CapCollectorServerPackageTests::ProductTarget" /* CapCollectorServerPackageTests */ = { + isa = PBXAggregateTarget; + buildConfigurationList = OBJ_1128 /* Build configuration list for PBXAggregateTarget "CapCollectorServerPackageTests" */; + buildPhases = ( + ); + dependencies = ( + OBJ_1131 /* PBXTargetDependency */, + ); + name = CapCollectorServerPackageTests; + productName = CapCollectorServerPackageTests; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + CE0A500B2471B82500A9E753 /* Router+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE0A500A2471B82500A9E753 /* Router+Extensions.swift */; }; + CE0A500D2471B85000A9E753 /* Log.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE0A500C2471B85000A9E753 /* Log.swift */; }; + CE0A500F2471BC2200A9E753 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE0A500E2471BC2200A9E753 /* Error.swift */; }; + OBJ_1008 /* BitsError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_529 /* BitsError.swift */; }; + OBJ_1009 /* Byte+Alphabet.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_530 /* Byte+Alphabet.swift */; }; + OBJ_1010 /* Byte+Control.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_531 /* Byte+Control.swift */; }; + OBJ_1011 /* Byte+Digit.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_532 /* Byte+Digit.swift */; }; + OBJ_1012 /* ByteBuffer+binaryFloatingPointOperations.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_533 /* ByteBuffer+binaryFloatingPointOperations.swift */; }; + OBJ_1013 /* ByteBuffer+peek.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_534 /* ByteBuffer+peek.swift */; }; + OBJ_1014 /* ByteBuffer+require.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_535 /* ByteBuffer+require.swift */; }; + OBJ_1015 /* ByteBuffer+string.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_536 /* ByteBuffer+string.swift */; }; + OBJ_1016 /* Bytes.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_537 /* Bytes.swift */; }; + OBJ_1017 /* Data+Bytes.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_538 /* Data+Bytes.swift */; }; + OBJ_1018 /* Data+Strings.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_539 /* Data+Strings.swift */; }; + OBJ_1019 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_540 /* Deprecated.swift */; }; + OBJ_1021 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1022 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1023 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1024 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1025 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1026 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1027 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1028 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_1041 /* base32.c in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_371 /* base32.c */; }; + OBJ_1047 /* bcrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_375 /* bcrypt.c */; }; + OBJ_1048 /* blf.c in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_376 /* blf.c */; }; + OBJ_1054 /* shim.c in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_380 /* shim.c */; }; + OBJ_1060 /* c-atomics.c in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_578 /* c-atomics.c */; }; + OBJ_1062 /* CNIOAtomics.h in Headers */ = {isa = PBXBuildFile; fileRef = OBJ_580 /* CNIOAtomics.h */; settings = {ATTRIBUTES = (Public, ); }; }; + OBJ_1063 /* cpp_magic.h in Headers */ = {isa = PBXBuildFile; fileRef = OBJ_581 /* cpp_magic.h */; settings = {ATTRIBUTES = (Public, ); }; }; + OBJ_1069 /* shim.c in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_583 /* shim.c */; }; + OBJ_1071 /* CNIODarwin.h in Headers */ = {isa = PBXBuildFile; fileRef = OBJ_585 /* CNIODarwin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + OBJ_1077 /* c_nio_http_parser.c in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_587 /* c_nio_http_parser.c */; }; + OBJ_1079 /* c_nio_http_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = OBJ_589 /* c_nio_http_parser.h */; settings = {ATTRIBUTES = (Public, ); }; }; + OBJ_1080 /* CNIOHTTPParser.h in Headers */ = {isa = PBXBuildFile; fileRef = OBJ_590 /* CNIOHTTPParser.h */; settings = {ATTRIBUTES = (Public, ); }; }; + OBJ_1086 /* ifaddrs-android.c in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_592 /* ifaddrs-android.c */; }; + OBJ_1087 /* shim.c in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_593 /* shim.c */; }; + OBJ_1089 /* CNIOLinux.h in Headers */ = {isa = PBXBuildFile; fileRef = OBJ_595 /* CNIOLinux.h */; settings = {ATTRIBUTES = (Public, ); }; }; + OBJ_1090 /* ifaddrs-android.h in Headers */ = {isa = PBXBuildFile; fileRef = OBJ_596 /* ifaddrs-android.h */; settings = {ATTRIBUTES = (Public, ); }; }; + OBJ_1096 /* helpers.c in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_304 /* helpers.c */; }; + OBJ_1097 /* shims.c in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_305 /* shims.c */; }; + OBJ_1103 /* c_nio_sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_598 /* c_nio_sha1.c */; }; + OBJ_1105 /* CNIOSHA1.h in Headers */ = {isa = PBXBuildFile; fileRef = OBJ_600 /* CNIOSHA1.h */; settings = {ATTRIBUTES = (Public, ); }; }; + OBJ_1111 /* empty.c in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_602 /* empty.c */; }; + OBJ_1113 /* CNIOZlib.h in Headers */ = {isa = PBXBuildFile; fileRef = OBJ_604 /* CNIOZlib.h */; settings = {ATTRIBUTES = (Public, ); }; }; + OBJ_1119 /* libc.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_542 /* libc.swift */; }; + OBJ_1126 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_6 /* Package.swift */; }; + OBJ_1136 /* CommandOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_420 /* CommandOption.swift */; }; + OBJ_1137 /* CommandRunnable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_421 /* CommandRunnable.swift */; }; + OBJ_1138 /* Command.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_423 /* Command.swift */; }; + OBJ_1139 /* CommandArgument.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_424 /* CommandArgument.swift */; }; + OBJ_1140 /* CommandConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_426 /* CommandConfig.swift */; }; + OBJ_1141 /* Commands.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_427 /* Commands.swift */; }; + OBJ_1142 /* BasicCommandGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_429 /* BasicCommandGroup.swift */; }; + OBJ_1143 /* CommandGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_430 /* CommandGroup.swift */; }; + OBJ_1144 /* CommandContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_432 /* CommandContext.swift */; }; + OBJ_1145 /* CommandInput.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_433 /* CommandInput.swift */; }; + OBJ_1146 /* Console+Run.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_434 /* Console+Run.swift */; }; + OBJ_1147 /* Output+Autocomplete.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_435 /* Output+Autocomplete.swift */; }; + OBJ_1148 /* Output+Help.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_436 /* Output+Help.swift */; }; + OBJ_1149 /* CommandError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_438 /* CommandError.swift */; }; + OBJ_1150 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_439 /* Exports.swift */; }; + OBJ_1151 /* Utilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_440 /* Utilities.swift */; }; + OBJ_1153 /* Console.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Console::Product" /* Console.framework */; }; + OBJ_1154 /* Service.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Service::Service::Product" /* Service.framework */; }; + OBJ_1155 /* Logging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Logging::Product" /* Logging.framework */; }; + OBJ_1156 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_1157 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_1158 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_1159 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_1160 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_1161 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_1162 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1163 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1164 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1165 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1166 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1167 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1168 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1189 /* ActivityBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_443 /* ActivityBar.swift */; }; + OBJ_1190 /* ActivityIndicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_444 /* ActivityIndicator.swift */; }; + OBJ_1191 /* ActivityIndicatorRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_445 /* ActivityIndicatorRenderer.swift */; }; + OBJ_1192 /* ActivityIndicatorState.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_446 /* ActivityIndicatorState.swift */; }; + OBJ_1193 /* CustomActivity.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_447 /* CustomActivity.swift */; }; + OBJ_1194 /* LoadingBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_448 /* LoadingBar.swift */; }; + OBJ_1195 /* ProgressBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_449 /* ProgressBar.swift */; }; + OBJ_1196 /* Console+Clear.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_451 /* Console+Clear.swift */; }; + OBJ_1197 /* Console+Ephemeral.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_452 /* Console+Ephemeral.swift */; }; + OBJ_1198 /* ConsoleClear.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_453 /* ConsoleClear.swift */; }; + OBJ_1199 /* Console.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_454 /* Console.swift */; }; + OBJ_1200 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_455 /* Deprecated.swift */; }; + OBJ_1201 /* Console+Ask.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_457 /* Console+Ask.swift */; }; + OBJ_1202 /* Console+Choose.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_458 /* Console+Choose.swift */; }; + OBJ_1203 /* Console+Confirm.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_459 /* Console+Confirm.swift */; }; + OBJ_1204 /* Console+Input.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_460 /* Console+Input.swift */; }; + OBJ_1205 /* Console+Center.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_462 /* Console+Center.swift */; }; + OBJ_1206 /* Console+Output.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_463 /* Console+Output.swift */; }; + OBJ_1207 /* Console+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_464 /* Console+Wait.swift */; }; + OBJ_1208 /* ConsoleColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_465 /* ConsoleColor.swift */; }; + OBJ_1209 /* ConsoleStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_466 /* ConsoleStyle.swift */; }; + OBJ_1210 /* ConsoleText.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_467 /* ConsoleText.swift */; }; + OBJ_1211 /* ConsoleTextFragment.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_468 /* ConsoleTextFragment.swift */; }; + OBJ_1212 /* ANSI.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_470 /* ANSI.swift */; }; + OBJ_1213 /* Terminal.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_471 /* Terminal.swift */; }; + OBJ_1214 /* ConsoleError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_473 /* ConsoleError.swift */; }; + OBJ_1215 /* ConsoleLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_474 /* ConsoleLogger.swift */; }; + OBJ_1216 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_475 /* Exports.swift */; }; + OBJ_1218 /* Service.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Service::Service::Product" /* Service.framework */; }; + OBJ_1219 /* Logging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Logging::Product" /* Logging.framework */; }; + OBJ_1220 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_1221 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_1222 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_1223 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_1224 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_1225 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_1226 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1227 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1228 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1229 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1230 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1231 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1232 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1253 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_481 /* Package.swift */; }; + OBJ_1258 /* BasicKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_544 /* BasicKey.swift */; }; + OBJ_1259 /* CaseInsensitiveString.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_545 /* CaseInsensitiveString.swift */; }; + OBJ_1260 /* Decodable+Reflectable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_547 /* Decodable+Reflectable.swift */; }; + OBJ_1261 /* ReflectionDecodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_548 /* ReflectionDecodable.swift */; }; + OBJ_1262 /* ReflectionDecoders.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_549 /* ReflectionDecoders.swift */; }; + OBJ_1263 /* CoreError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_550 /* CoreError.swift */; }; + OBJ_1264 /* Data+Base64URL.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_551 /* Data+Base64URL.swift */; }; + OBJ_1265 /* Data+Hex.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_552 /* Data+Hex.swift */; }; + OBJ_1266 /* DataCoders.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_553 /* DataCoders.swift */; }; + OBJ_1267 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_554 /* Deprecated.swift */; }; + OBJ_1268 /* DirectoryConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_555 /* DirectoryConfig.swift */; }; + OBJ_1269 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_556 /* Exports.swift */; }; + OBJ_1270 /* File.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_557 /* File.swift */; }; + OBJ_1271 /* Future+Unwrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_558 /* Future+Unwrap.swift */; }; + OBJ_1272 /* FutureEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_559 /* FutureEncoder.swift */; }; + OBJ_1273 /* HeaderValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_560 /* HeaderValue.swift */; }; + OBJ_1274 /* LosslessDataConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_561 /* LosslessDataConvertible.swift */; }; + OBJ_1275 /* MediaType.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_562 /* MediaType.swift */; }; + OBJ_1276 /* NestedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_563 /* NestedData.swift */; }; + OBJ_1277 /* NotFound.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_564 /* NotFound.swift */; }; + OBJ_1278 /* OptionalType.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_565 /* OptionalType.swift */; }; + OBJ_1279 /* Process+Execute.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_566 /* Process+Execute.swift */; }; + OBJ_1280 /* Reflectable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_567 /* Reflectable.swift */; }; + OBJ_1281 /* String+Utilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_568 /* String+Utilities.swift */; }; + OBJ_1282 /* Thread+Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_569 /* Thread+Async.swift */; }; + OBJ_1284 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_1285 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_1286 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_1287 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_1288 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_1289 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1290 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1291 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1292 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1293 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1294 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1295 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1313 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_574 /* Package.swift */; }; + OBJ_1318 /* BCryptDigest.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_386 /* BCryptDigest.swift */; }; + OBJ_1319 /* AuthenticatedCipher.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_388 /* AuthenticatedCipher.swift */; }; + OBJ_1320 /* AuthenticatedCipherAlgorithm.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_389 /* AuthenticatedCipherAlgorithm.swift */; }; + OBJ_1321 /* Cipher.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_390 /* Cipher.swift */; }; + OBJ_1322 /* CipherAlgorithm.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_391 /* CipherAlgorithm.swift */; }; + OBJ_1323 /* OpenSSLCipherAlgorithm.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_392 /* OpenSSLCipherAlgorithm.swift */; }; + OBJ_1324 /* OpenSSLStreamCipher.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_393 /* OpenSSLStreamCipher.swift */; }; + OBJ_1325 /* Digest.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_395 /* Digest.swift */; }; + OBJ_1326 /* DigestAlgorithm.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_396 /* DigestAlgorithm.swift */; }; + OBJ_1327 /* HMAC.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_398 /* HMAC.swift */; }; + OBJ_1328 /* OTP.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_399 /* OTP.swift */; }; + OBJ_1329 /* RSA.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_401 /* RSA.swift */; }; + OBJ_1330 /* RSAKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_402 /* RSAKey.swift */; }; + OBJ_1331 /* RSAPadding.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_403 /* RSAPadding.swift */; }; + OBJ_1332 /* CryptoRandom.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_405 /* CryptoRandom.swift */; }; + OBJ_1333 /* Base32.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_407 /* Base32.swift */; }; + OBJ_1334 /* CryptoError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_408 /* CryptoError.swift */; }; + OBJ_1335 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_409 /* Deprecated.swift */; }; + OBJ_1336 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_410 /* Exports.swift */; }; + OBJ_1338 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_1339 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_1340 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_1341 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_1342 /* Random.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::Random::Product" /* Random.framework */; }; + OBJ_1343 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_1344 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1345 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1346 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1347 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1348 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1349 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1350 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1351 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_1352 /* CCryptoOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CCryptoOpenSSL::Product" /* CCryptoOpenSSL.framework */; }; + OBJ_1353 /* CBcrypt.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CBcrypt::Product" /* CBcrypt.framework */; }; + OBJ_1354 /* CBase32.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CBase32::Product" /* CBase32.framework */; }; + OBJ_1377 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_416 /* Package.swift */; }; + OBJ_1382 /* Container+CachedConnection.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_332 /* Container+CachedConnection.swift */; }; + OBJ_1383 /* Container+NewConnection.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_333 /* Container+NewConnection.swift */; }; + OBJ_1384 /* DatabaseConnectable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_334 /* DatabaseConnectable.swift */; }; + OBJ_1385 /* DatabaseConnection.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_335 /* DatabaseConnection.swift */; }; + OBJ_1386 /* DatabaseStringFindable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_336 /* DatabaseStringFindable.swift */; }; + OBJ_1387 /* Container+ConnectionPool.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_338 /* Container+ConnectionPool.swift */; }; + OBJ_1388 /* DatabaseConnectionPool.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_339 /* DatabaseConnectionPool.swift */; }; + OBJ_1389 /* DatabaseConnectionPoolCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_340 /* DatabaseConnectionPoolCache.swift */; }; + OBJ_1390 /* DatabaseConnectionPoolConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_341 /* DatabaseConnectionPoolConfig.swift */; }; + OBJ_1391 /* ConfiguredDatabase.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_343 /* ConfiguredDatabase.swift */; }; + OBJ_1392 /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_344 /* Database.swift */; }; + OBJ_1393 /* DatabaseConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_345 /* DatabaseConfig.swift */; }; + OBJ_1394 /* DatabaseIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_346 /* DatabaseIdentifier.swift */; }; + OBJ_1395 /* DatabaseQueryable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_347 /* DatabaseQueryable.swift */; }; + OBJ_1396 /* Databases.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_348 /* Databases.swift */; }; + OBJ_1397 /* DatabaseKeyedCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_350 /* DatabaseKeyedCache.swift */; }; + OBJ_1398 /* DictionaryKeyedCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_351 /* DictionaryKeyedCache.swift */; }; + OBJ_1399 /* KeyedCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_352 /* KeyedCache.swift */; }; + OBJ_1400 /* KeyedCacheSupporting.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_353 /* KeyedCacheSupporting.swift */; }; + OBJ_1401 /* MemoryKeyedCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_354 /* MemoryKeyedCache.swift */; }; + OBJ_1402 /* DatabaseLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_356 /* DatabaseLog.swift */; }; + OBJ_1403 /* DatabaseLogHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_357 /* DatabaseLogHandler.swift */; }; + OBJ_1404 /* DatabaseLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_358 /* DatabaseLogger.swift */; }; + OBJ_1405 /* LogSupporting.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_359 /* LogSupporting.swift */; }; + OBJ_1406 /* PrintLogHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_360 /* PrintLogHandler.swift */; }; + OBJ_1407 /* DatabaseKitProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_362 /* DatabaseKitProvider.swift */; }; + OBJ_1408 /* DatabaseKitError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_364 /* DatabaseKitError.swift */; }; + OBJ_1409 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_365 /* Deprecated.swift */; }; + OBJ_1410 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_366 /* Exports.swift */; }; + OBJ_1411 /* URL+DatabaseName.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_367 /* URL+DatabaseName.swift */; }; + OBJ_1413 /* Service.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Service::Service::Product" /* Service.framework */; }; + OBJ_1414 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_1415 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_1416 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_1417 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_1418 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_1419 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_1420 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1421 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1422 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1423 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1424 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1425 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1426 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1446 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_368 /* Package.swift */; }; + OBJ_1451 /* Debuggable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_571 /* Debuggable.swift */; }; + OBJ_1452 /* Demangler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_572 /* Demangler.swift */; }; + OBJ_1453 /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_573 /* SourceLocation.swift */; }; + OBJ_1459 /* HTTPBody.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_270 /* HTTPBody.swift */; }; + OBJ_1460 /* HTTPBodyRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_271 /* HTTPBodyRepresentable.swift */; }; + OBJ_1461 /* HTTPBodyStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_272 /* HTTPBodyStorage.swift */; }; + OBJ_1462 /* HTTPChunkedStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_273 /* HTTPChunkedStream.swift */; }; + OBJ_1463 /* HTTPMessageCoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_275 /* HTTPMessageCoder.swift */; }; + OBJ_1464 /* HTTPCookieValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_277 /* HTTPCookieValue.swift */; }; + OBJ_1465 /* HTTPCookies.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_278 /* HTTPCookies.swift */; }; + OBJ_1466 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_279 /* Exports.swift */; }; + OBJ_1467 /* Forwarded.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_281 /* Forwarded.swift */; }; + OBJ_1468 /* HTTPHeaderName.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_282 /* HTTPHeaderName.swift */; }; + OBJ_1469 /* HTTPHeaders.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_283 /* HTTPHeaders.swift */; }; + OBJ_1470 /* HTTPMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_284 /* HTTPMessage.swift */; }; + OBJ_1471 /* HTTPRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_285 /* HTTPRequest.swift */; }; + OBJ_1472 /* HTTPResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_286 /* HTTPResponse.swift */; }; + OBJ_1473 /* MediaTypePreference.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_287 /* MediaTypePreference.swift */; }; + OBJ_1474 /* URL+HTTP.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_288 /* URL+HTTP.swift */; }; + OBJ_1475 /* HTTPClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_290 /* HTTPClient.swift */; }; + OBJ_1476 /* HTTPClientProtocolUpgrader.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_291 /* HTTPClientProtocolUpgrader.swift */; }; + OBJ_1477 /* HTTPScheme.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_292 /* HTTPScheme.swift */; }; + OBJ_1478 /* HTTPServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_293 /* HTTPServer.swift */; }; + OBJ_1479 /* HTTPServerResponder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_294 /* HTTPServerResponder.swift */; }; + OBJ_1480 /* HTTPError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_296 /* HTTPError.swift */; }; + OBJ_1481 /* HTTPHeaders+Basic.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_297 /* HTTPHeaders+Basic.swift */; }; + OBJ_1482 /* HTTPHeaders+Bearer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_298 /* HTTPHeaders+Bearer.swift */; }; + OBJ_1483 /* RFC1123.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_299 /* RFC1123.swift */; }; + OBJ_1484 /* String+IsIPAddress.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_300 /* String+IsIPAddress.swift */; }; + OBJ_1486 /* NIOHTTP1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOHTTP1::Product" /* NIOHTTP1.framework */; }; + OBJ_1487 /* CNIOZlib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOZlib::Product" /* CNIOZlib.framework */; }; + OBJ_1488 /* CNIOHTTPParser.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOHTTPParser::Product" /* CNIOHTTPParser.framework */; }; + OBJ_1489 /* NIOOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio-ssl::NIOOpenSSL::Product" /* NIOOpenSSL.framework */; }; + OBJ_1490 /* NIOTLS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOTLS::Product" /* NIOTLS.framework */; }; + OBJ_1491 /* CNIOOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio-ssl::CNIOOpenSSL::Product" /* CNIOOpenSSL.framework */; }; + OBJ_1492 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_1493 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_1494 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_1495 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_1496 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_1497 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_1498 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1499 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1500 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1501 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1502 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1503 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1504 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1529 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_301 /* Package.swift */; }; + OBJ_1534 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_477 /* Exports.swift */; }; + OBJ_1535 /* LogLevel.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_478 /* LogLevel.swift */; }; + OBJ_1536 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_479 /* Logger.swift */; }; + OBJ_1537 /* PrintLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_480 /* PrintLogger.swift */; }; + OBJ_1539 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_1540 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_1541 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_1542 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_1543 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_1544 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_1545 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1546 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1547 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1548 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1549 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1550 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1551 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1569 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_258 /* Exports.swift */; }; + OBJ_1570 /* FormDataDecoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_259 /* FormDataDecoder.swift */; }; + OBJ_1571 /* FormDataEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_260 /* FormDataEncoder.swift */; }; + OBJ_1572 /* MultipartError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_261 /* MultipartError.swift */; }; + OBJ_1573 /* MultipartParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_262 /* MultipartParser.swift */; }; + OBJ_1574 /* MultipartPart.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_263 /* MultipartPart.swift */; }; + OBJ_1575 /* MultipartPartConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_264 /* MultipartPartConvertible.swift */; }; + OBJ_1576 /* MultipartSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_265 /* MultipartSerializer.swift */; }; + OBJ_1578 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_1579 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_1580 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_1581 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_1582 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_1583 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1584 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1585 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1586 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1587 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1588 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1589 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1590 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_1609 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_266 /* Package.swift */; }; + OBJ_1614 /* AddressedEnvelope.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_606 /* AddressedEnvelope.swift */; }; + OBJ_1615 /* BaseSocket.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_607 /* BaseSocket.swift */; }; + OBJ_1616 /* BaseSocketChannel.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_608 /* BaseSocketChannel.swift */; }; + OBJ_1617 /* BlockingIOThreadPool.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_609 /* BlockingIOThreadPool.swift */; }; + OBJ_1618 /* Bootstrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_610 /* Bootstrap.swift */; }; + OBJ_1619 /* ByteBuffer-aux.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_611 /* ByteBuffer-aux.swift */; }; + OBJ_1620 /* ByteBuffer-core.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_612 /* ByteBuffer-core.swift */; }; + OBJ_1621 /* ByteBuffer-int.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_613 /* ByteBuffer-int.swift */; }; + OBJ_1622 /* ByteBuffer-views.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_614 /* ByteBuffer-views.swift */; }; + OBJ_1623 /* Channel.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_615 /* Channel.swift */; }; + OBJ_1624 /* ChannelHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_616 /* ChannelHandler.swift */; }; + OBJ_1625 /* ChannelHandlers.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_617 /* ChannelHandlers.swift */; }; + OBJ_1626 /* ChannelInvoker.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_618 /* ChannelInvoker.swift */; }; + OBJ_1627 /* ChannelOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_619 /* ChannelOption.swift */; }; + OBJ_1628 /* ChannelPipeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_620 /* ChannelPipeline.swift */; }; + OBJ_1629 /* CircularBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_621 /* CircularBuffer.swift */; }; + OBJ_1630 /* Codec.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_622 /* Codec.swift */; }; + OBJ_1631 /* CompositeError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_623 /* CompositeError.swift */; }; + OBJ_1632 /* ContiguousCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_624 /* ContiguousCollection.swift */; }; + OBJ_1633 /* DeadChannel.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_625 /* DeadChannel.swift */; }; + OBJ_1634 /* Embedded.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_626 /* Embedded.swift */; }; + OBJ_1635 /* EventLoop.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_627 /* EventLoop.swift */; }; + OBJ_1636 /* EventLoopFuture.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_628 /* EventLoopFuture.swift */; }; + OBJ_1637 /* FileDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_629 /* FileDescriptor.swift */; }; + OBJ_1638 /* FileHandle.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_630 /* FileHandle.swift */; }; + OBJ_1639 /* FileRegion.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_631 /* FileRegion.swift */; }; + OBJ_1640 /* GetaddrinfoResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_632 /* GetaddrinfoResolver.swift */; }; + OBJ_1641 /* HappyEyeballs.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_633 /* HappyEyeballs.swift */; }; + OBJ_1642 /* Heap.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_634 /* Heap.swift */; }; + OBJ_1643 /* IO.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_635 /* IO.swift */; }; + OBJ_1644 /* IOData.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_636 /* IOData.swift */; }; + OBJ_1645 /* IntegerTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_637 /* IntegerTypes.swift */; }; + OBJ_1646 /* Interfaces.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_638 /* Interfaces.swift */; }; + OBJ_1647 /* Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_639 /* Linux.swift */; }; + OBJ_1648 /* LinuxCPUSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_640 /* LinuxCPUSet.swift */; }; + OBJ_1649 /* MarkedCircularBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_641 /* MarkedCircularBuffer.swift */; }; + OBJ_1650 /* MulticastChannel.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_642 /* MulticastChannel.swift */; }; + OBJ_1651 /* NIOAny.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_643 /* NIOAny.swift */; }; + OBJ_1652 /* NonBlockingFileIO.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_644 /* NonBlockingFileIO.swift */; }; + OBJ_1653 /* PendingDatagramWritesManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_645 /* PendingDatagramWritesManager.swift */; }; + OBJ_1654 /* PendingWritesManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_646 /* PendingWritesManager.swift */; }; + OBJ_1655 /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_647 /* PriorityQueue.swift */; }; + OBJ_1656 /* RecvByteBufferAllocator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_648 /* RecvByteBufferAllocator.swift */; }; + OBJ_1657 /* Resolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_649 /* Resolver.swift */; }; + OBJ_1658 /* Selectable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_650 /* Selectable.swift */; }; + OBJ_1659 /* Selector.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_651 /* Selector.swift */; }; + OBJ_1660 /* ServerSocket.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_652 /* ServerSocket.swift */; }; + OBJ_1661 /* Socket.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_653 /* Socket.swift */; }; + OBJ_1662 /* SocketAddresses.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_654 /* SocketAddresses.swift */; }; + OBJ_1663 /* SocketChannel.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_655 /* SocketChannel.swift */; }; + OBJ_1664 /* SocketOptionProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_656 /* SocketOptionProvider.swift */; }; + OBJ_1665 /* System.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_657 /* System.swift */; }; + OBJ_1666 /* Thread.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_658 /* Thread.swift */; }; + OBJ_1667 /* TypeAssistedChannelHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_659 /* TypeAssistedChannelHandler.swift */; }; + OBJ_1668 /* Utilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_660 /* Utilities.swift */; }; + OBJ_1670 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1671 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1672 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1673 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1674 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1675 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1686 /* atomics.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_664 /* atomics.swift */; }; + OBJ_1687 /* lock.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_665 /* lock.swift */; }; + OBJ_1689 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1695 /* ByteBuffer-foundation.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_669 /* ByteBuffer-foundation.swift */; }; + OBJ_1697 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1698 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1699 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1700 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1701 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1702 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1703 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1715 /* ByteCollectionUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_671 /* ByteCollectionUtils.swift */; }; + OBJ_1716 /* HTTPDecoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_672 /* HTTPDecoder.swift */; }; + OBJ_1717 /* HTTPEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_673 /* HTTPEncoder.swift */; }; + OBJ_1718 /* HTTPPipelineSetup.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_674 /* HTTPPipelineSetup.swift */; }; + OBJ_1719 /* HTTPResponseCompressor.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_675 /* HTTPResponseCompressor.swift */; }; + OBJ_1720 /* HTTPServerPipelineHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_676 /* HTTPServerPipelineHandler.swift */; }; + OBJ_1721 /* HTTPServerProtocolErrorHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_677 /* HTTPServerProtocolErrorHandler.swift */; }; + OBJ_1722 /* HTTPTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_678 /* HTTPTypes.swift */; }; + OBJ_1723 /* HTTPUpgradeHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_679 /* HTTPUpgradeHandler.swift */; }; + OBJ_1725 /* CNIOZlib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOZlib::Product" /* CNIOZlib.framework */; }; + OBJ_1726 /* CNIOHTTPParser.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOHTTPParser::Product" /* CNIOHTTPParser.framework */; }; + OBJ_1727 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1728 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1729 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1730 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1731 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1732 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1733 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1747 /* ByteBufferBIO.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_310 /* ByteBufferBIO.swift */; }; + OBJ_1748 /* IdentityVerification.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_311 /* IdentityVerification.swift */; }; + OBJ_1749 /* OpenSSLClientHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_312 /* OpenSSLClientHandler.swift */; }; + OBJ_1750 /* OpenSSLHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_313 /* OpenSSLHandler.swift */; }; + OBJ_1751 /* OpenSSLServerHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_314 /* OpenSSLServerHandler.swift */; }; + OBJ_1752 /* PosixPort.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_315 /* PosixPort.swift */; }; + OBJ_1753 /* SSLCertificate.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_316 /* SSLCertificate.swift */; }; + OBJ_1754 /* SSLConnection.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_317 /* SSLConnection.swift */; }; + OBJ_1755 /* SSLContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_318 /* SSLContext.swift */; }; + OBJ_1756 /* SSLErrors.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_319 /* SSLErrors.swift */; }; + OBJ_1757 /* SSLInit.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_320 /* SSLInit.swift */; }; + OBJ_1758 /* SSLPKCS12Bundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_321 /* SSLPKCS12Bundle.swift */; }; + OBJ_1759 /* SSLPointerTricks.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_322 /* SSLPointerTricks.swift */; }; + OBJ_1760 /* SSLPrivateKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_323 /* SSLPrivateKey.swift */; }; + OBJ_1761 /* SSLPublicKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_324 /* SSLPublicKey.swift */; }; + OBJ_1762 /* SSLVerificationCallbacks.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_325 /* SSLVerificationCallbacks.swift */; }; + OBJ_1763 /* TLSConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_326 /* TLSConfiguration.swift */; }; + OBJ_1765 /* NIOTLS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOTLS::Product" /* NIOTLS.framework */; }; + OBJ_1766 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1767 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1768 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1769 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1770 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1771 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1772 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1773 /* CNIOOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio-ssl::CNIOOpenSSL::Product" /* CNIOOpenSSL.framework */; }; + OBJ_1787 /* Heap.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_684 /* Heap.swift */; }; + OBJ_1788 /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_685 /* PriorityQueue.swift */; }; + OBJ_1794 /* ApplicationProtocolNegotiationHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_687 /* ApplicationProtocolNegotiationHandler.swift */; }; + OBJ_1795 /* SNIHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_688 /* SNIHandler.swift */; }; + OBJ_1796 /* TLSEvents.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_689 /* TLSEvents.swift */; }; + OBJ_1798 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1799 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1800 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1801 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1802 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1803 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1804 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1816 /* Base64.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_691 /* Base64.swift */; }; + OBJ_1817 /* SHA1.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_692 /* SHA1.swift */; }; + OBJ_1818 /* WebSocketErrorCodes.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_693 /* WebSocketErrorCodes.swift */; }; + OBJ_1819 /* WebSocketFrame.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_694 /* WebSocketFrame.swift */; }; + OBJ_1820 /* WebSocketFrameDecoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_695 /* WebSocketFrameDecoder.swift */; }; + OBJ_1821 /* WebSocketFrameEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_696 /* WebSocketFrameEncoder.swift */; }; + OBJ_1822 /* WebSocketOpcode.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_697 /* WebSocketOpcode.swift */; }; + OBJ_1823 /* WebSocketProtocolErrorHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_698 /* WebSocketProtocolErrorHandler.swift */; }; + OBJ_1824 /* WebSocketUpgrader.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_699 /* WebSocketUpgrader.swift */; }; + OBJ_1826 /* NIOHTTP1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOHTTP1::Product" /* NIOHTTP1.framework */; }; + OBJ_1827 /* CNIOZlib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOZlib::Product" /* CNIOZlib.framework */; }; + OBJ_1828 /* CNIOHTTPParser.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOHTTPParser::Product" /* CNIOHTTPParser.framework */; }; + OBJ_1829 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1830 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1831 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1832 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1833 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1834 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1835 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1850 /* Array+Random.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_412 /* Array+Random.swift */; }; + OBJ_1851 /* OSRandom.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_413 /* OSRandom.swift */; }; + OBJ_1852 /* RandomProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_414 /* RandomProtocol.swift */; }; + OBJ_1853 /* URandom.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_415 /* URandom.swift */; }; + OBJ_1855 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_1856 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1857 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1858 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1859 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1860 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1861 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1862 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1863 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_1877 /* Parameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_240 /* Parameter.swift */; }; + OBJ_1878 /* ParameterValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_241 /* ParameterValue.swift */; }; + OBJ_1879 /* Parameters.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_242 /* Parameters.swift */; }; + OBJ_1880 /* PathComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_244 /* PathComponent.swift */; }; + OBJ_1881 /* Route.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_245 /* Route.swift */; }; + OBJ_1882 /* RouterOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_246 /* RouterOption.swift */; }; + OBJ_1883 /* RoutableComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_248 /* RoutableComponent.swift */; }; + OBJ_1884 /* RouterNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_249 /* RouterNode.swift */; }; + OBJ_1885 /* TrieRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_250 /* TrieRouter.swift */; }; + OBJ_1886 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_252 /* Deprecated.swift */; }; + OBJ_1887 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_253 /* Exports.swift */; }; + OBJ_1888 /* RoutingError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_254 /* RoutingError.swift */; }; + OBJ_1890 /* Service.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Service::Service::Product" /* Service.framework */; }; + OBJ_1891 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_1892 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_1893 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_1894 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_1895 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_1896 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1897 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1898 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1899 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1900 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1901 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1902 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_1903 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_1923 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_255 /* Package.swift */; }; + OBJ_1929 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_13 /* main.swift */; }; + OBJ_1931 /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "CapCollectorServer::App::Product" /* App.framework */; }; + OBJ_1932 /* SQLite.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "SQLite.swift::SQLite::Product" /* SQLite.framework */; }; + OBJ_1933 /* SQLiteObjc.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "SQLite.swift::SQLiteObjc::Product" /* SQLiteObjc.framework */; }; + OBJ_1934 /* Vapor.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Vapor::Vapor::Product" /* Vapor.framework */; }; + OBJ_1935 /* WebSocket.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "WebSocket::WebSocket::Product" /* WebSocket.framework */; }; + OBJ_1936 /* NIOWebSocket.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOWebSocket::Product" /* NIOWebSocket.framework */; }; + OBJ_1937 /* Validation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Validation::Validation::Product" /* Validation.framework */; }; + OBJ_1938 /* URLEncodedForm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "URLEncodedForm::URLEncodedForm::Product" /* URLEncodedForm.framework */; }; + OBJ_1939 /* TemplateKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "TemplateKit::TemplateKit::Product" /* TemplateKit.framework */; }; + OBJ_1940 /* Routing.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Routing::Routing::Product" /* Routing.framework */; }; + OBJ_1941 /* Multipart.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Multipart::Multipart::Product" /* Multipart.framework */; }; + OBJ_1942 /* HTTP.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "HTTP::HTTP::Product" /* HTTP.framework */; }; + OBJ_1943 /* NIOHTTP1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOHTTP1::Product" /* NIOHTTP1.framework */; }; + OBJ_1944 /* CNIOZlib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOZlib::Product" /* CNIOZlib.framework */; }; + OBJ_1945 /* CNIOHTTPParser.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOHTTPParser::Product" /* CNIOHTTPParser.framework */; }; + OBJ_1946 /* NIOOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio-ssl::NIOOpenSSL::Product" /* NIOOpenSSL.framework */; }; + OBJ_1947 /* NIOTLS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOTLS::Product" /* NIOTLS.framework */; }; + OBJ_1948 /* CNIOOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio-ssl::CNIOOpenSSL::Product" /* CNIOOpenSSL.framework */; }; + OBJ_1949 /* DatabaseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "DatabaseKit::DatabaseKit::Product" /* DatabaseKit.framework */; }; + OBJ_1950 /* Crypto.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::Crypto::Product" /* Crypto.framework */; }; + OBJ_1951 /* Random.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::Random::Product" /* Random.framework */; }; + OBJ_1952 /* CCryptoOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CCryptoOpenSSL::Product" /* CCryptoOpenSSL.framework */; }; + OBJ_1953 /* CBcrypt.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CBcrypt::Product" /* CBcrypt.framework */; }; + OBJ_1954 /* CBase32.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CBase32::Product" /* CBase32.framework */; }; + OBJ_1955 /* Command.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Command::Product" /* Command.framework */; }; + OBJ_1956 /* Console.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Console::Product" /* Console.framework */; }; + OBJ_1957 /* Service.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Service::Service::Product" /* Service.framework */; }; + OBJ_1958 /* Logging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Logging::Product" /* Logging.framework */; }; + OBJ_1959 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_1960 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_1961 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_1962 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_1963 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_1964 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_1965 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_1966 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_1967 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_1968 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_1969 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_1970 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_1971 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_2017 /* Blob.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_21 /* Blob.swift */; }; + OBJ_2018 /* Connection.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_22 /* Connection.swift */; }; + OBJ_2019 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_23 /* Errors.swift */; }; + OBJ_2020 /* Statement.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_24 /* Statement.swift */; }; + OBJ_2021 /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_25 /* Value.swift */; }; + OBJ_2022 /* Cipher.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_27 /* Cipher.swift */; }; + OBJ_2023 /* FTS4.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_28 /* FTS4.swift */; }; + OBJ_2024 /* FTS5.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_29 /* FTS5.swift */; }; + OBJ_2025 /* RTree.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_30 /* RTree.swift */; }; + OBJ_2026 /* Foundation.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_31 /* Foundation.swift */; }; + OBJ_2027 /* Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_32 /* Helpers.swift */; }; + OBJ_2028 /* AggregateFunctions.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_34 /* AggregateFunctions.swift */; }; + OBJ_2029 /* Coding.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_35 /* Coding.swift */; }; + OBJ_2030 /* Collation.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_36 /* Collation.swift */; }; + OBJ_2031 /* CoreFunctions.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_37 /* CoreFunctions.swift */; }; + OBJ_2032 /* CustomFunctions.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_38 /* CustomFunctions.swift */; }; + OBJ_2033 /* DateAndTimeFunctions.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_39 /* DateAndTimeFunctions.swift */; }; + OBJ_2034 /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_40 /* Expression.swift */; }; + OBJ_2035 /* Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_41 /* Operators.swift */; }; + OBJ_2036 /* Query.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_42 /* Query.swift */; }; + OBJ_2037 /* Schema.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_43 /* Schema.swift */; }; + OBJ_2038 /* Setter.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_44 /* Setter.swift */; }; + OBJ_2040 /* SQLiteObjc.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "SQLite.swift::SQLiteObjc::Product" /* SQLiteObjc.framework */; }; + OBJ_2047 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_49 /* Package.swift */; }; + OBJ_2052 /* SQLiteObjc.m in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_46 /* SQLiteObjc.m */; }; + OBJ_2054 /* SQLiteObjc.h in Headers */ = {isa = PBXBuildFile; fileRef = OBJ_48 /* SQLiteObjc.h */; settings = {ATTRIBUTES = (Public, ); }; }; + OBJ_2060 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_485 /* Config.swift */; }; + OBJ_2061 /* BasicContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_487 /* BasicContainer.swift */; }; + OBJ_2062 /* BasicSubContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_488 /* BasicSubContainer.swift */; }; + OBJ_2063 /* Container.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_489 /* Container.swift */; }; + OBJ_2064 /* ContainerAlias.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_490 /* ContainerAlias.swift */; }; + OBJ_2065 /* SubContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_491 /* SubContainer.swift */; }; + OBJ_2066 /* Environment.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_493 /* Environment.swift */; }; + OBJ_2067 /* Provider.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_495 /* Provider.swift */; }; + OBJ_2068 /* BasicServiceFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_497 /* BasicServiceFactory.swift */; }; + OBJ_2069 /* Service.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_498 /* Service.swift */; }; + OBJ_2070 /* ServiceCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_499 /* ServiceCache.swift */; }; + OBJ_2071 /* ServiceFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_500 /* ServiceFactory.swift */; }; + OBJ_2072 /* ServiceID.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_501 /* ServiceID.swift */; }; + OBJ_2073 /* ServiceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_502 /* ServiceType.swift */; }; + OBJ_2074 /* Services.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_503 /* Services.swift */; }; + OBJ_2075 /* TypeServiceFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_504 /* TypeServiceFactory.swift */; }; + OBJ_2076 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_506 /* Deprecated.swift */; }; + OBJ_2077 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_507 /* Exports.swift */; }; + OBJ_2078 /* Extendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_508 /* Extendable.swift */; }; + OBJ_2079 /* ServiceError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_509 /* ServiceError.swift */; }; + OBJ_2081 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_2082 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_2083 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_2084 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_2085 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_2086 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_2087 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_2088 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_2089 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_2090 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_2091 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_2092 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_2093 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_2112 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_510 /* Package.swift */; }; + OBJ_2117 /* TemplateConditional.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_191 /* TemplateConditional.swift */; }; + OBJ_2118 /* TemplateConstant.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_192 /* TemplateConstant.swift */; }; + OBJ_2119 /* TemplateCustom.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_193 /* TemplateCustom.swift */; }; + OBJ_2120 /* TemplateDataContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_194 /* TemplateDataContext.swift */; }; + OBJ_2121 /* TemplateEmbed.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_195 /* TemplateEmbed.swift */; }; + OBJ_2122 /* TemplateExpression.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_196 /* TemplateExpression.swift */; }; + OBJ_2123 /* TemplateIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_197 /* TemplateIdentifier.swift */; }; + OBJ_2124 /* TemplateIterator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_198 /* TemplateIterator.swift */; }; + OBJ_2125 /* TemplateRaw.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_199 /* TemplateRaw.swift */; }; + OBJ_2126 /* TemplateSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_200 /* TemplateSource.swift */; }; + OBJ_2127 /* TemplateSyntax.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_201 /* TemplateSyntax.swift */; }; + OBJ_2128 /* TemplateSyntaxType.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_202 /* TemplateSyntaxType.swift */; }; + OBJ_2129 /* TemplateTag.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_203 /* TemplateTag.swift */; }; + OBJ_2130 /* TemplateData.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_205 /* TemplateData.swift */; }; + OBJ_2131 /* TemplateDataEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_206 /* TemplateDataEncoder.swift */; }; + OBJ_2132 /* TemplateDataRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_207 /* TemplateDataRepresentable.swift */; }; + OBJ_2133 /* TemplateDataStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_208 /* TemplateDataStorage.swift */; }; + OBJ_2134 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_209 /* Deprecated.swift */; }; + OBJ_2135 /* ASTCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_211 /* ASTCache.swift */; }; + OBJ_2136 /* PlaintextRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_212 /* PlaintextRenderer.swift */; }; + OBJ_2137 /* TemplateByteScanner.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_213 /* TemplateByteScanner.swift */; }; + OBJ_2138 /* TemplateParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_214 /* TemplateParser.swift */; }; + OBJ_2139 /* TemplateRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_215 /* TemplateRenderer.swift */; }; + OBJ_2140 /* TemplateSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_216 /* TemplateSerializer.swift */; }; + OBJ_2141 /* Capitalize.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_218 /* Capitalize.swift */; }; + OBJ_2142 /* Comment.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_219 /* Comment.swift */; }; + OBJ_2143 /* Contains.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_220 /* Contains.swift */; }; + OBJ_2144 /* Count.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_221 /* Count.swift */; }; + OBJ_2145 /* DateFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_222 /* DateFormat.swift */; }; + OBJ_2146 /* Lowercase.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_223 /* Lowercase.swift */; }; + OBJ_2147 /* Print.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_224 /* Print.swift */; }; + OBJ_2148 /* Raw.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_225 /* Raw.swift */; }; + OBJ_2149 /* TagContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_226 /* TagContext.swift */; }; + OBJ_2150 /* TagRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_227 /* TagRenderer.swift */; }; + OBJ_2151 /* Uppercase.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_228 /* Uppercase.swift */; }; + OBJ_2152 /* Var.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_229 /* Var.swift */; }; + OBJ_2153 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_231 /* Exports.swift */; }; + OBJ_2154 /* HTMLEscape.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_232 /* HTMLEscape.swift */; }; + OBJ_2155 /* TemplateError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_233 /* TemplateError.swift */; }; + OBJ_2156 /* View.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_234 /* View.swift */; }; + OBJ_2157 /* ViewRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_235 /* ViewRenderer.swift */; }; + OBJ_2159 /* Service.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Service::Service::Product" /* Service.framework */; }; + OBJ_2160 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_2161 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_2162 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_2163 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_2164 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_2165 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_2166 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_2167 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_2168 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_2169 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_2170 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_2171 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_2172 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_2192 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_236 /* Package.swift */; }; + OBJ_2197 /* URLEncodedFormDecoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_177 /* URLEncodedFormDecoder.swift */; }; + OBJ_2198 /* URLEncodedFormEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_178 /* URLEncodedFormEncoder.swift */; }; + OBJ_2199 /* URLEncodedFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_180 /* URLEncodedFormData.swift */; }; + OBJ_2200 /* URLEncodedFormDataConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_181 /* URLEncodedFormDataConvertible.swift */; }; + OBJ_2201 /* URLEncodedFormParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_182 /* URLEncodedFormParser.swift */; }; + OBJ_2202 /* URLEncodedFormSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_183 /* URLEncodedFormSerializer.swift */; }; + OBJ_2203 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_185 /* Exports.swift */; }; + OBJ_2204 /* URLEncodedFormError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_186 /* URLEncodedFormError.swift */; }; + OBJ_2206 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_2207 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_2208 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_2209 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_2210 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_2211 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_2212 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_2213 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_2214 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_2215 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_2216 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_2217 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_2218 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_2237 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_187 /* Package.swift */; }; + OBJ_2242 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_154 /* Exports.swift */; }; + OBJ_2243 /* Validatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_155 /* Validatable.swift */; }; + OBJ_2244 /* ValidationError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_156 /* ValidationError.swift */; }; + OBJ_2245 /* Validations.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_157 /* Validations.swift */; }; + OBJ_2246 /* Validator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_158 /* Validator.swift */; }; + OBJ_2247 /* ValidatorType.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_159 /* ValidatorType.swift */; }; + OBJ_2248 /* AndValidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_161 /* AndValidator.swift */; }; + OBJ_2249 /* CharacterSetValidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_162 /* CharacterSetValidator.swift */; }; + OBJ_2250 /* CountValidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_163 /* CountValidator.swift */; }; + OBJ_2251 /* EmailValidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_164 /* EmailValidator.swift */; }; + OBJ_2252 /* EmptyValidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_165 /* EmptyValidator.swift */; }; + OBJ_2253 /* InValidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_166 /* InValidator.swift */; }; + OBJ_2254 /* NilIgnoringValidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_167 /* NilIgnoringValidator.swift */; }; + OBJ_2255 /* NilValidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_168 /* NilValidator.swift */; }; + OBJ_2256 /* NotValidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_169 /* NotValidator.swift */; }; + OBJ_2257 /* OrValidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_170 /* OrValidator.swift */; }; + OBJ_2258 /* RangeValidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_171 /* RangeValidator.swift */; }; + OBJ_2259 /* URLValidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_172 /* URLValidator.swift */; }; + OBJ_2261 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_2262 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_2263 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_2264 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_2265 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_2266 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_2267 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_2268 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_2269 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_2270 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_2271 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_2272 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_2273 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_2292 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_173 /* Package.swift */; }; + OBJ_2297 /* Application.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_52 /* Application.swift */; }; + OBJ_2298 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_54 /* Client.swift */; }; + OBJ_2299 /* FoundationClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_55 /* FoundationClient.swift */; }; + OBJ_2300 /* BootCommand.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_57 /* BootCommand.swift */; }; + OBJ_2301 /* CommandConfig+Default.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_58 /* CommandConfig+Default.swift */; }; + OBJ_2302 /* RoutesCommand.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_59 /* RoutesCommand.swift */; }; + OBJ_2303 /* ServeCommand.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_60 /* ServeCommand.swift */; }; + OBJ_2304 /* Content.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_62 /* Content.swift */; }; + OBJ_2305 /* ContentCoders.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_63 /* ContentCoders.swift */; }; + OBJ_2306 /* ContentConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_64 /* ContentConfig.swift */; }; + OBJ_2307 /* ContentContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_65 /* ContentContainer.swift */; }; + OBJ_2308 /* FormDataCoder+HTTP.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_66 /* FormDataCoder+HTTP.swift */; }; + OBJ_2309 /* HTTPMessageContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_67 /* HTTPMessageContainer.swift */; }; + OBJ_2310 /* JSONCoder+Custom.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_68 /* JSONCoder+Custom.swift */; }; + OBJ_2311 /* PlaintextEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_69 /* PlaintextEncoder.swift */; }; + OBJ_2312 /* QueryContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_70 /* QueryContainer.swift */; }; + OBJ_2313 /* SingleValueGet.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_71 /* SingleValueGet.swift */; }; + OBJ_2314 /* URLEncoded.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_72 /* URLEncoded.swift */; }; + OBJ_2315 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_73 /* Deprecated.swift */; }; + OBJ_2316 /* Abort.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_75 /* Abort.swift */; }; + OBJ_2317 /* AbortError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_76 /* AbortError.swift */; }; + OBJ_2318 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_77 /* Error.swift */; }; + OBJ_2319 /* Logger+LogError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_79 /* Logger+LogError.swift */; }; + OBJ_2320 /* CORSMiddleware.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_81 /* CORSMiddleware.swift */; }; + OBJ_2321 /* DateMiddleware.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_82 /* DateMiddleware.swift */; }; + OBJ_2322 /* ErrorMiddleware.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_83 /* ErrorMiddleware.swift */; }; + OBJ_2323 /* FileMiddleware.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_84 /* FileMiddleware.swift */; }; + OBJ_2324 /* Middleware.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_85 /* Middleware.swift */; }; + OBJ_2325 /* MiddlewareConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_86 /* MiddlewareConfig.swift */; }; + OBJ_2326 /* HTTPMethod+String.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_88 /* HTTPMethod+String.swift */; }; + OBJ_2327 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_89 /* Request.swift */; }; + OBJ_2328 /* RequestCodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_90 /* RequestCodable.swift */; }; + OBJ_2329 /* ApplicationResponder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_92 /* ApplicationResponder.swift */; }; + OBJ_2330 /* BasicResponder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_93 /* BasicResponder.swift */; }; + OBJ_2331 /* HTTPStatus.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_94 /* HTTPStatus.swift */; }; + OBJ_2332 /* Redirect.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_95 /* Redirect.swift */; }; + OBJ_2333 /* Responder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_96 /* Responder.swift */; }; + OBJ_2334 /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_97 /* Response.swift */; }; + OBJ_2335 /* ResponseCodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_98 /* ResponseCodable.swift */; }; + OBJ_2336 /* EngineRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_100 /* EngineRouter.swift */; }; + OBJ_2337 /* ParametersContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_101 /* ParametersContainer.swift */; }; + OBJ_2338 /* RouteCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_102 /* RouteCollection.swift */; }; + OBJ_2339 /* Router+Content.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_103 /* Router+Content.swift */; }; + OBJ_2340 /* Router+Function.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_104 /* Router+Function.swift */; }; + OBJ_2341 /* Router+LazyMiddleware.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_105 /* Router+LazyMiddleware.swift */; }; + OBJ_2342 /* Router+Method.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_106 /* Router+Method.swift */; }; + OBJ_2343 /* Router+Middleware.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_107 /* Router+Middleware.swift */; }; + OBJ_2344 /* Router+Path.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_108 /* Router+Path.swift */; }; + OBJ_2345 /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_109 /* Router.swift */; }; + OBJ_2346 /* NIOServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_111 /* NIOServer.swift */; }; + OBJ_2347 /* NIOServerConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_112 /* NIOServerConfig.swift */; }; + OBJ_2348 /* RunningServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_113 /* RunningServer.swift */; }; + OBJ_2349 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_114 /* Server.swift */; }; + OBJ_2350 /* Config+Default.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_116 /* Config+Default.swift */; }; + OBJ_2351 /* Services+Default.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_117 /* Services+Default.swift */; }; + OBJ_2352 /* VaporProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_118 /* VaporProvider.swift */; }; + OBJ_2353 /* KeyedCacheSessions.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_120 /* KeyedCacheSessions.swift */; }; + OBJ_2354 /* MemorySessions.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_121 /* MemorySessions.swift */; }; + OBJ_2355 /* Request+Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_122 /* Request+Session.swift */; }; + OBJ_2356 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_123 /* Session.swift */; }; + OBJ_2357 /* SessionCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_124 /* SessionCache.swift */; }; + OBJ_2358 /* SessionData.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_125 /* SessionData.swift */; }; + OBJ_2359 /* Sessions.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_126 /* Sessions.swift */; }; + OBJ_2360 /* SessionsConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_127 /* SessionsConfig.swift */; }; + OBJ_2361 /* SessionsMiddleware.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_128 /* SessionsMiddleware.swift */; }; + OBJ_2362 /* AnyResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_130 /* AnyResponse.swift */; }; + OBJ_2363 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_131 /* Exports.swift */; }; + OBJ_2364 /* FileIO.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_132 /* FileIO.swift */; }; + OBJ_2365 /* Thread.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_133 /* Thread.swift */; }; + OBJ_2366 /* Vapor+View.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_135 /* Vapor+View.swift */; }; + OBJ_2367 /* NIOWebSocketClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_137 /* NIOWebSocketClient.swift */; }; + OBJ_2368 /* NIOWebSocketServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_138 /* NIOWebSocketServer.swift */; }; + OBJ_2369 /* WebSocketClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_139 /* WebSocketClient.swift */; }; + OBJ_2370 /* WebSocketResponder.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_140 /* WebSocketResponder.swift */; }; + OBJ_2371 /* WebSocketServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_141 /* WebSocketServer.swift */; }; + OBJ_2373 /* WebSocket.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "WebSocket::WebSocket::Product" /* WebSocket.framework */; }; + OBJ_2374 /* NIOWebSocket.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOWebSocket::Product" /* NIOWebSocket.framework */; }; + OBJ_2375 /* Validation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Validation::Validation::Product" /* Validation.framework */; }; + OBJ_2376 /* URLEncodedForm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "URLEncodedForm::URLEncodedForm::Product" /* URLEncodedForm.framework */; }; + OBJ_2377 /* TemplateKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "TemplateKit::TemplateKit::Product" /* TemplateKit.framework */; }; + OBJ_2378 /* Routing.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Routing::Routing::Product" /* Routing.framework */; }; + OBJ_2379 /* Multipart.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Multipart::Multipart::Product" /* Multipart.framework */; }; + OBJ_2380 /* HTTP.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "HTTP::HTTP::Product" /* HTTP.framework */; }; + OBJ_2381 /* NIOHTTP1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOHTTP1::Product" /* NIOHTTP1.framework */; }; + OBJ_2382 /* CNIOZlib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOZlib::Product" /* CNIOZlib.framework */; }; + OBJ_2383 /* CNIOHTTPParser.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOHTTPParser::Product" /* CNIOHTTPParser.framework */; }; + OBJ_2384 /* NIOOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio-ssl::NIOOpenSSL::Product" /* NIOOpenSSL.framework */; }; + OBJ_2385 /* NIOTLS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOTLS::Product" /* NIOTLS.framework */; }; + OBJ_2386 /* CNIOOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio-ssl::CNIOOpenSSL::Product" /* CNIOOpenSSL.framework */; }; + OBJ_2387 /* DatabaseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "DatabaseKit::DatabaseKit::Product" /* DatabaseKit.framework */; }; + OBJ_2388 /* Crypto.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::Crypto::Product" /* Crypto.framework */; }; + OBJ_2389 /* Random.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::Random::Product" /* Random.framework */; }; + OBJ_2390 /* CCryptoOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CCryptoOpenSSL::Product" /* CCryptoOpenSSL.framework */; }; + OBJ_2391 /* CBcrypt.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CBcrypt::Product" /* CBcrypt.framework */; }; + OBJ_2392 /* CBase32.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CBase32::Product" /* CBase32.framework */; }; + OBJ_2393 /* Command.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Command::Product" /* Command.framework */; }; + OBJ_2394 /* Console.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Console::Product" /* Console.framework */; }; + OBJ_2395 /* Service.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Service::Service::Product" /* Service.framework */; }; + OBJ_2396 /* Logging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Logging::Product" /* Logging.framework */; }; + OBJ_2397 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_2398 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_2399 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_2400 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_2401 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_2402 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_2403 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_2404 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_2405 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_2406 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_2407 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_2408 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_2409 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_2452 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_142 /* Package.swift */; }; + OBJ_2457 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_145 /* Exports.swift */; }; + OBJ_2458 /* WebSocket+Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_146 /* WebSocket+Client.swift */; }; + OBJ_2459 /* WebSocket+Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_147 /* WebSocket+Server.swift */; }; + OBJ_2460 /* WebSocket.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_148 /* WebSocket.swift */; }; + OBJ_2461 /* WebSocketFrameSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_149 /* WebSocketFrameSequence.swift */; }; + OBJ_2462 /* WebSocketHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_150 /* WebSocketHandler.swift */; }; + OBJ_2464 /* NIOWebSocket.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOWebSocket::Product" /* NIOWebSocket.framework */; }; + OBJ_2465 /* HTTP.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "HTTP::HTTP::Product" /* HTTP.framework */; }; + OBJ_2466 /* NIOHTTP1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOHTTP1::Product" /* NIOHTTP1.framework */; }; + OBJ_2467 /* CNIOZlib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOZlib::Product" /* CNIOZlib.framework */; }; + OBJ_2468 /* CNIOHTTPParser.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOHTTPParser::Product" /* CNIOHTTPParser.framework */; }; + OBJ_2469 /* NIOOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio-ssl::NIOOpenSSL::Product" /* NIOOpenSSL.framework */; }; + OBJ_2470 /* NIOTLS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOTLS::Product" /* NIOTLS.framework */; }; + OBJ_2471 /* CNIOOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio-ssl::CNIOOpenSSL::Product" /* CNIOOpenSSL.framework */; }; + OBJ_2472 /* Crypto.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::Crypto::Product" /* Crypto.framework */; }; + OBJ_2473 /* Random.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::Random::Product" /* Random.framework */; }; + OBJ_2474 /* CCryptoOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CCryptoOpenSSL::Product" /* CCryptoOpenSSL.framework */; }; + OBJ_2475 /* CBcrypt.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CBcrypt::Product" /* CBcrypt.framework */; }; + OBJ_2476 /* CBase32.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CBase32::Product" /* CBase32.framework */; }; + OBJ_2477 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_2478 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_2479 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_2480 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_2481 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_2482 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_2483 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_2484 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_2485 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_2486 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_2487 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_2488 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_2489 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_2521 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_151 /* Package.swift */; }; + OBJ_2527 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_328 /* Package.swift */; }; + OBJ_2533 /* Package.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_701 /* Package.swift */; }; + OBJ_757 /* boot.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_9 /* boot.swift */; }; + OBJ_758 /* configure.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_10 /* configure.swift */; }; + OBJ_759 /* routes.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_11 /* routes.swift */; }; + OBJ_761 /* SQLite.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "SQLite.swift::SQLite::Product" /* SQLite.framework */; }; + OBJ_762 /* SQLiteObjc.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "SQLite.swift::SQLiteObjc::Product" /* SQLiteObjc.framework */; }; + OBJ_763 /* Vapor.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Vapor::Vapor::Product" /* Vapor.framework */; }; + OBJ_764 /* WebSocket.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "WebSocket::WebSocket::Product" /* WebSocket.framework */; }; + OBJ_765 /* NIOWebSocket.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOWebSocket::Product" /* NIOWebSocket.framework */; }; + OBJ_766 /* Validation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Validation::Validation::Product" /* Validation.framework */; }; + OBJ_767 /* URLEncodedForm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "URLEncodedForm::URLEncodedForm::Product" /* URLEncodedForm.framework */; }; + OBJ_768 /* TemplateKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "TemplateKit::TemplateKit::Product" /* TemplateKit.framework */; }; + OBJ_769 /* Routing.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Routing::Routing::Product" /* Routing.framework */; }; + OBJ_770 /* Multipart.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Multipart::Multipart::Product" /* Multipart.framework */; }; + OBJ_771 /* HTTP.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "HTTP::HTTP::Product" /* HTTP.framework */; }; + OBJ_772 /* NIOHTTP1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOHTTP1::Product" /* NIOHTTP1.framework */; }; + OBJ_773 /* CNIOZlib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOZlib::Product" /* CNIOZlib.framework */; }; + OBJ_774 /* CNIOHTTPParser.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOHTTPParser::Product" /* CNIOHTTPParser.framework */; }; + OBJ_775 /* NIOOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio-ssl::NIOOpenSSL::Product" /* NIOOpenSSL.framework */; }; + OBJ_776 /* NIOTLS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOTLS::Product" /* NIOTLS.framework */; }; + OBJ_777 /* CNIOOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio-ssl::CNIOOpenSSL::Product" /* CNIOOpenSSL.framework */; }; + OBJ_778 /* DatabaseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "DatabaseKit::DatabaseKit::Product" /* DatabaseKit.framework */; }; + OBJ_779 /* Crypto.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::Crypto::Product" /* Crypto.framework */; }; + OBJ_780 /* Random.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::Random::Product" /* Random.framework */; }; + OBJ_781 /* CCryptoOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CCryptoOpenSSL::Product" /* CCryptoOpenSSL.framework */; }; + OBJ_782 /* CBcrypt.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CBcrypt::Product" /* CBcrypt.framework */; }; + OBJ_783 /* CBase32.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CBase32::Product" /* CBase32.framework */; }; + OBJ_784 /* Command.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Command::Product" /* Command.framework */; }; + OBJ_785 /* Console.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Console::Product" /* Console.framework */; }; + OBJ_786 /* Service.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Service::Service::Product" /* Service.framework */; }; + OBJ_787 /* Logging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Logging::Product" /* Logging.framework */; }; + OBJ_788 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_789 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_790 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_791 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_792 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_793 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_794 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_795 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_796 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_797 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_798 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_799 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_800 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_886 /* AppTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_16 /* AppTests.swift */; }; + OBJ_888 /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "CapCollectorServer::App::Product" /* App.framework */; }; + OBJ_889 /* SQLite.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "SQLite.swift::SQLite::Product" /* SQLite.framework */; }; + OBJ_890 /* SQLiteObjc.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "SQLite.swift::SQLiteObjc::Product" /* SQLiteObjc.framework */; }; + OBJ_891 /* Vapor.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Vapor::Vapor::Product" /* Vapor.framework */; }; + OBJ_892 /* WebSocket.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "WebSocket::WebSocket::Product" /* WebSocket.framework */; }; + OBJ_893 /* NIOWebSocket.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOWebSocket::Product" /* NIOWebSocket.framework */; }; + OBJ_894 /* Validation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Validation::Validation::Product" /* Validation.framework */; }; + OBJ_895 /* URLEncodedForm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "URLEncodedForm::URLEncodedForm::Product" /* URLEncodedForm.framework */; }; + OBJ_896 /* TemplateKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "TemplateKit::TemplateKit::Product" /* TemplateKit.framework */; }; + OBJ_897 /* Routing.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Routing::Routing::Product" /* Routing.framework */; }; + OBJ_898 /* Multipart.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Multipart::Multipart::Product" /* Multipart.framework */; }; + OBJ_899 /* HTTP.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "HTTP::HTTP::Product" /* HTTP.framework */; }; + OBJ_900 /* NIOHTTP1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOHTTP1::Product" /* NIOHTTP1.framework */; }; + OBJ_901 /* CNIOZlib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOZlib::Product" /* CNIOZlib.framework */; }; + OBJ_902 /* CNIOHTTPParser.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOHTTPParser::Product" /* CNIOHTTPParser.framework */; }; + OBJ_903 /* NIOOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio-ssl::NIOOpenSSL::Product" /* NIOOpenSSL.framework */; }; + OBJ_904 /* NIOTLS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOTLS::Product" /* NIOTLS.framework */; }; + OBJ_905 /* CNIOOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio-ssl::CNIOOpenSSL::Product" /* CNIOOpenSSL.framework */; }; + OBJ_906 /* DatabaseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "DatabaseKit::DatabaseKit::Product" /* DatabaseKit.framework */; }; + OBJ_907 /* Crypto.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::Crypto::Product" /* Crypto.framework */; }; + OBJ_908 /* Random.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::Random::Product" /* Random.framework */; }; + OBJ_909 /* CCryptoOpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CCryptoOpenSSL::Product" /* CCryptoOpenSSL.framework */; }; + OBJ_910 /* CBcrypt.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CBcrypt::Product" /* CBcrypt.framework */; }; + OBJ_911 /* CBase32.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Crypto::CBase32::Product" /* CBase32.framework */; }; + OBJ_912 /* Command.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Command::Product" /* Command.framework */; }; + OBJ_913 /* Console.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Console::Product" /* Console.framework */; }; + OBJ_914 /* Service.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Service::Service::Product" /* Service.framework */; }; + OBJ_915 /* Logging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Console::Logging::Product" /* Logging.framework */; }; + OBJ_916 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Core::Product" /* Core.framework */; }; + OBJ_917 /* NIOFoundationCompat.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; }; + OBJ_918 /* COperatingSystem.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; }; + OBJ_919 /* Bits.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Bits::Product" /* Bits.framework */; }; + OBJ_920 /* Debugging.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Debugging::Product" /* Debugging.framework */; }; + OBJ_921 /* Async.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "Core::Async::Product" /* Async.framework */; }; + OBJ_922 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_923 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_924 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_925 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_926 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_927 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_928 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; + OBJ_974 /* Async+NIO.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_513 /* Async+NIO.swift */; }; + OBJ_975 /* AsyncError.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_514 /* AsyncError.swift */; }; + OBJ_976 /* Collection+Future.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_515 /* Collection+Future.swift */; }; + OBJ_977 /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_516 /* Deprecated.swift */; }; + OBJ_978 /* Exports.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_517 /* Exports.swift */; }; + OBJ_979 /* Future+DoCatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_518 /* Future+DoCatch.swift */; }; + OBJ_980 /* Future+Flatten.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_519 /* Future+Flatten.swift */; }; + OBJ_981 /* Future+Global.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_520 /* Future+Global.swift */; }; + OBJ_982 /* Future+Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_521 /* Future+Map.swift */; }; + OBJ_983 /* Future+Transform.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_522 /* Future+Transform.swift */; }; + OBJ_984 /* Future+Variadic.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_523 /* Future+Variadic.swift */; }; + OBJ_985 /* Future+Void.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_524 /* Future+Void.swift */; }; + OBJ_986 /* FutureType.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_525 /* FutureType.swift */; }; + OBJ_987 /* QueueHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_526 /* QueueHandler.swift */; }; + OBJ_988 /* Worker.swift in Sources */ = {isa = PBXBuildFile; fileRef = OBJ_527 /* Worker.swift */; }; + OBJ_990 /* NIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIO::Product" /* NIO.framework */; }; + OBJ_991 /* CNIOSHA1.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; }; + OBJ_992 /* NIOPriorityQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; }; + OBJ_993 /* NIOConcurrencyHelpers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; }; + OBJ_994 /* CNIOAtomics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; }; + OBJ_995 /* CNIODarwin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; }; + OBJ_996 /* CNIOLinux.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + CE0A4E4C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "CapCollectorServer::App"; + remoteInfo = App; + }; + CE0A4E4D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "SQLite.swift::SQLite"; + remoteInfo = SQLite; + }; + CE0A4E4E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "SQLite.swift::SQLiteObjc"; + remoteInfo = SQLiteObjc; + }; + CE0A4E4F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "SQLite.swift::SQLiteObjc"; + remoteInfo = SQLiteObjc; + }; + CE0A4E502471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Vapor::Vapor"; + remoteInfo = Vapor; + }; + CE0A4E512471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "WebSocket::WebSocket"; + remoteInfo = WebSocket; + }; + CE0A4E522471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOWebSocket"; + remoteInfo = NIOWebSocket; + }; + CE0A4E532471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOHTTP1"; + remoteInfo = NIOHTTP1; + }; + CE0A4E542471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOZlib"; + remoteInfo = CNIOZlib; + }; + CE0A4E552471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOHTTPParser"; + remoteInfo = CNIOHTTPParser; + }; + CE0A4E562471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4E572471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4E582471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4E592471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4E5A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4E5B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4E5C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4E5D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4E5E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4E5F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4E602471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4E612471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4E622471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4E632471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4E642471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOZlib"; + remoteInfo = CNIOZlib; + }; + CE0A4E652471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOHTTPParser"; + remoteInfo = CNIOHTTPParser; + }; + CE0A4E662471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4E672471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4E682471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4E692471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4E6A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4E6B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4E6C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4E6D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "HTTP::HTTP"; + remoteInfo = HTTP; + }; + CE0A4E6E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOHTTP1"; + remoteInfo = NIOHTTP1; + }; + CE0A4E6F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOZlib"; + remoteInfo = CNIOZlib; + }; + CE0A4E702471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOHTTPParser"; + remoteInfo = CNIOHTTPParser; + }; + CE0A4E712471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio-ssl::NIOOpenSSL"; + remoteInfo = NIOOpenSSL; + }; + CE0A4E722471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOTLS"; + remoteInfo = NIOTLS; + }; + CE0A4E732471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4E742471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4E752471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4E762471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4E772471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4E782471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4E792471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4E7A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4E7B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4E7C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4E7D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4E7E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4E7F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4E802471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4E812471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio-ssl::CNIOOpenSSL"; + remoteInfo = CNIOOpenSSL; + }; + CE0A4E822471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOTLS"; + remoteInfo = NIOTLS; + }; + CE0A4E832471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio-ssl::CNIOOpenSSL"; + remoteInfo = CNIOOpenSSL; + }; + CE0A4E842471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4E852471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4E862471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4E872471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4E882471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4E892471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4E8A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4E8B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4E8C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4E8D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4E8E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4E8F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4E902471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4E912471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4E922471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4E932471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4E942471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4E952471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4E962471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4E972471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4E982471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4E992471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4E9A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4E9B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4E9C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4E9D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4E9E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4E9F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4EA02471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4EA12471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4EA22471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4EA32471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4EA42471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4EA52471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4EA62471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4EA72471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4EA82471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4EA92471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4EAA2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4EAB2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4EAC2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4EAD2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4EAE2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4EAF2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4EB02471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4EB12471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4EB22471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4EB32471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOHTTP1"; + remoteInfo = NIOHTTP1; + }; + CE0A4EB42471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOZlib"; + remoteInfo = CNIOZlib; + }; + CE0A4EB52471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOHTTPParser"; + remoteInfo = CNIOHTTPParser; + }; + CE0A4EB62471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio-ssl::NIOOpenSSL"; + remoteInfo = NIOOpenSSL; + }; + CE0A4EB72471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOTLS"; + remoteInfo = NIOTLS; + }; + CE0A4EB82471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio-ssl::CNIOOpenSSL"; + remoteInfo = CNIOOpenSSL; + }; + CE0A4EB92471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::Crypto"; + remoteInfo = Crypto; + }; + CE0A4EBA2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4EBB2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4EBC2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4EBD2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4EBE2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::Random"; + remoteInfo = Random; + }; + CE0A4EBF2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4EC02471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4EC12471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4EC22471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4EC32471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4EC42471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4EC52471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4EC62471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4EC72471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4EC82471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4EC92471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4ECA2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4ECB2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4ECC2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4ECD2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4ECE2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4ECF2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4ED02471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4ED12471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CCryptoOpenSSL"; + remoteInfo = CCryptoOpenSSL; + }; + CE0A4ED22471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CBcrypt"; + remoteInfo = CBcrypt; + }; + CE0A4ED32471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CBase32"; + remoteInfo = CBase32; + }; + CE0A4ED42471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::Random"; + remoteInfo = Random; + }; + CE0A4ED52471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CCryptoOpenSSL"; + remoteInfo = CCryptoOpenSSL; + }; + CE0A4ED62471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CBcrypt"; + remoteInfo = CBcrypt; + }; + CE0A4ED72471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CBase32"; + remoteInfo = CBase32; + }; + CE0A4ED82471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4ED92471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4EDA2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4EDB2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4EDC2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4EDD2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4EDE2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4EDF2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4EE02471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4EE12471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4EE22471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4EE32471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4EE42471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4EE52471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOWebSocket"; + remoteInfo = NIOWebSocket; + }; + CE0A4EE62471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Validation::Validation"; + remoteInfo = Validation; + }; + CE0A4EE72471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4EE82471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4EE92471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4EEA2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4EEB2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4EEC2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4EED2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4EEE2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4EEF2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4EF02471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4EF12471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4EF22471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4EF32471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4EF42471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "URLEncodedForm::URLEncodedForm"; + remoteInfo = URLEncodedForm; + }; + CE0A4EF52471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4EF62471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4EF72471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4EF82471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4EF92471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4EFA2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4EFB2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4EFC2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4EFD2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4EFE2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4EFF2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4F002471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4F012471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4F022471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "TemplateKit::TemplateKit"; + remoteInfo = TemplateKit; + }; + CE0A4F032471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Service::Service"; + remoteInfo = Service; + }; + CE0A4F042471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4F052471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4F062471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4F072471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4F082471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4F092471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4F0A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4F0B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4F0C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4F0D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4F0E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4F0F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4F102471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4F112471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4F122471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4F132471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4F142471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4F152471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4F162471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4F172471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4F182471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4F192471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4F1A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4F1B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4F1C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4F1D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4F1E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Routing::Routing"; + remoteInfo = Routing; + }; + CE0A4F1F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Service::Service"; + remoteInfo = Service; + }; + CE0A4F202471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4F212471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4F222471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4F232471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4F242471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4F252471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4F262471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4F272471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4F282471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4F292471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4F2A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4F2B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4F2C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4F2D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Multipart::Multipart"; + remoteInfo = Multipart; + }; + CE0A4F2E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4F2F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4F302471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4F312471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4F322471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4F332471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4F342471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4F352471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4F362471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4F372471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4F382471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4F392471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4F3A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4F3B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "HTTP::HTTP"; + remoteInfo = HTTP; + }; + CE0A4F3C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOHTTP1"; + remoteInfo = NIOHTTP1; + }; + CE0A4F3D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOZlib"; + remoteInfo = CNIOZlib; + }; + CE0A4F3E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOHTTPParser"; + remoteInfo = CNIOHTTPParser; + }; + CE0A4F3F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio-ssl::NIOOpenSSL"; + remoteInfo = NIOOpenSSL; + }; + CE0A4F402471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOTLS"; + remoteInfo = NIOTLS; + }; + CE0A4F412471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio-ssl::CNIOOpenSSL"; + remoteInfo = CNIOOpenSSL; + }; + CE0A4F422471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "DatabaseKit::DatabaseKit"; + remoteInfo = DatabaseKit; + }; + CE0A4F432471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Service::Service"; + remoteInfo = Service; + }; + CE0A4F442471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4F452471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4F462471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4F472471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4F482471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4F492471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4F4A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4F4B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4F4C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4F4D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4F4E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4F4F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4F502471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4F512471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::Crypto"; + remoteInfo = Crypto; + }; + CE0A4F522471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::Random"; + remoteInfo = Random; + }; + CE0A4F532471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CCryptoOpenSSL"; + remoteInfo = CCryptoOpenSSL; + }; + CE0A4F542471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CBcrypt"; + remoteInfo = CBcrypt; + }; + CE0A4F552471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CBase32"; + remoteInfo = CBase32; + }; + CE0A4F562471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Command"; + remoteInfo = Command; + }; + CE0A4F572471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Console"; + remoteInfo = Console; + }; + CE0A4F582471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Service::Service"; + remoteInfo = Service; + }; + CE0A4F592471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Logging"; + remoteInfo = Logging; + }; + CE0A4F5A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4F5B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4F5C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4F5D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4F5E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4F5F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4F602471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4F612471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4F622471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4F632471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4F642471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4F652471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4F662471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4F672471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4F682471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4F692471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4F6A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4F6B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4F6C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4F6D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4F6E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4F6F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4F702471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4F712471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4F722471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4F732471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4F742471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Service::Service"; + remoteInfo = Service; + }; + CE0A4F752471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Logging"; + remoteInfo = Logging; + }; + CE0A4F762471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4F772471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4F782471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4F792471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4F7A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4F7B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4F7C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4F7D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4F7E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4F7F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4F802471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4F812471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4F822471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4F832471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Console"; + remoteInfo = Console; + }; + CE0A4F842471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Service::Service"; + remoteInfo = Service; + }; + CE0A4F852471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Logging"; + remoteInfo = Logging; + }; + CE0A4F862471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4F872471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4F882471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4F892471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4F8A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4F8B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4F8C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4F8D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4F8E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4F8F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4F902471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4F912471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4F922471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4F932471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "WebSocket::WebSocket"; + remoteInfo = WebSocket; + }; + CE0A4F942471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOWebSocket"; + remoteInfo = NIOWebSocket; + }; + CE0A4F952471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Validation::Validation"; + remoteInfo = Validation; + }; + CE0A4F962471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "URLEncodedForm::URLEncodedForm"; + remoteInfo = URLEncodedForm; + }; + CE0A4F972471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "TemplateKit::TemplateKit"; + remoteInfo = TemplateKit; + }; + CE0A4F982471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Routing::Routing"; + remoteInfo = Routing; + }; + CE0A4F992471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Multipart::Multipart"; + remoteInfo = Multipart; + }; + CE0A4F9A2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "HTTP::HTTP"; + remoteInfo = HTTP; + }; + CE0A4F9B2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOHTTP1"; + remoteInfo = NIOHTTP1; + }; + CE0A4F9C2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOZlib"; + remoteInfo = CNIOZlib; + }; + CE0A4F9D2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOHTTPParser"; + remoteInfo = CNIOHTTPParser; + }; + CE0A4F9E2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio-ssl::NIOOpenSSL"; + remoteInfo = NIOOpenSSL; + }; + CE0A4F9F2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOTLS"; + remoteInfo = NIOTLS; + }; + CE0A4FA02471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio-ssl::CNIOOpenSSL"; + remoteInfo = CNIOOpenSSL; + }; + CE0A4FA12471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "DatabaseKit::DatabaseKit"; + remoteInfo = DatabaseKit; + }; + CE0A4FA22471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::Crypto"; + remoteInfo = Crypto; + }; + CE0A4FA32471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::Random"; + remoteInfo = Random; + }; + CE0A4FA42471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CCryptoOpenSSL"; + remoteInfo = CCryptoOpenSSL; + }; + CE0A4FA52471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CBcrypt"; + remoteInfo = CBcrypt; + }; + CE0A4FA62471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CBase32"; + remoteInfo = CBase32; + }; + CE0A4FA72471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Command"; + remoteInfo = Command; + }; + CE0A4FA82471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Console"; + remoteInfo = Console; + }; + CE0A4FA92471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Service::Service"; + remoteInfo = Service; + }; + CE0A4FAA2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Logging"; + remoteInfo = Logging; + }; + CE0A4FAB2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4FAC2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4FAD2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4FAE2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4FAF2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4FB02471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4FB12471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4FB22471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4FB32471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4FB42471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4FB52471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4FB62471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4FB72471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4FB82471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "SQLite.swift::SQLite"; + remoteInfo = SQLite; + }; + CE0A4FB92471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "SQLite.swift::SQLiteObjc"; + remoteInfo = SQLiteObjc; + }; + CE0A4FBA2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Vapor::Vapor"; + remoteInfo = Vapor; + }; + CE0A4FBB2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "WebSocket::WebSocket"; + remoteInfo = WebSocket; + }; + CE0A4FBC2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOWebSocket"; + remoteInfo = NIOWebSocket; + }; + CE0A4FBD2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Validation::Validation"; + remoteInfo = Validation; + }; + CE0A4FBE2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "URLEncodedForm::URLEncodedForm"; + remoteInfo = URLEncodedForm; + }; + CE0A4FBF2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "TemplateKit::TemplateKit"; + remoteInfo = TemplateKit; + }; + CE0A4FC02471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Routing::Routing"; + remoteInfo = Routing; + }; + CE0A4FC12471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Multipart::Multipart"; + remoteInfo = Multipart; + }; + CE0A4FC22471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "HTTP::HTTP"; + remoteInfo = HTTP; + }; + CE0A4FC32471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOHTTP1"; + remoteInfo = NIOHTTP1; + }; + CE0A4FC42471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOZlib"; + remoteInfo = CNIOZlib; + }; + CE0A4FC52471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOHTTPParser"; + remoteInfo = CNIOHTTPParser; + }; + CE0A4FC62471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio-ssl::NIOOpenSSL"; + remoteInfo = NIOOpenSSL; + }; + CE0A4FC72471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOTLS"; + remoteInfo = NIOTLS; + }; + CE0A4FC82471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio-ssl::CNIOOpenSSL"; + remoteInfo = CNIOOpenSSL; + }; + CE0A4FC92471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "DatabaseKit::DatabaseKit"; + remoteInfo = DatabaseKit; + }; + CE0A4FCA2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::Crypto"; + remoteInfo = Crypto; + }; + CE0A4FCB2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::Random"; + remoteInfo = Random; + }; + CE0A4FCC2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CCryptoOpenSSL"; + remoteInfo = CCryptoOpenSSL; + }; + CE0A4FCD2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CBcrypt"; + remoteInfo = CBcrypt; + }; + CE0A4FCE2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CBase32"; + remoteInfo = CBase32; + }; + CE0A4FCF2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Command"; + remoteInfo = Command; + }; + CE0A4FD02471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Console"; + remoteInfo = Console; + }; + CE0A4FD12471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Service::Service"; + remoteInfo = Service; + }; + CE0A4FD22471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Logging"; + remoteInfo = Logging; + }; + CE0A4FD32471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4FD42471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4FD52471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4FD62471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A4FD72471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A4FD82471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A4FD92471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A4FDA2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A4FDB2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A4FDC2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A4FDD2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A4FDE2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A4FDF2471B7B000A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A4FE02471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "CapCollectorServer::App"; + remoteInfo = App; + }; + CE0A4FE12471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "SQLite.swift::SQLite"; + remoteInfo = SQLite; + }; + CE0A4FE22471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "SQLite.swift::SQLiteObjc"; + remoteInfo = SQLiteObjc; + }; + CE0A4FE32471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Vapor::Vapor"; + remoteInfo = Vapor; + }; + CE0A4FE42471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "WebSocket::WebSocket"; + remoteInfo = WebSocket; + }; + CE0A4FE52471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOWebSocket"; + remoteInfo = NIOWebSocket; + }; + CE0A4FE62471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Validation::Validation"; + remoteInfo = Validation; + }; + CE0A4FE72471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "URLEncodedForm::URLEncodedForm"; + remoteInfo = URLEncodedForm; + }; + CE0A4FE82471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "TemplateKit::TemplateKit"; + remoteInfo = TemplateKit; + }; + CE0A4FE92471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Routing::Routing"; + remoteInfo = Routing; + }; + CE0A4FEA2471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Multipart::Multipart"; + remoteInfo = Multipart; + }; + CE0A4FEB2471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "HTTP::HTTP"; + remoteInfo = HTTP; + }; + CE0A4FEC2471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOHTTP1"; + remoteInfo = NIOHTTP1; + }; + CE0A4FED2471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOZlib"; + remoteInfo = CNIOZlib; + }; + CE0A4FEE2471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOHTTPParser"; + remoteInfo = CNIOHTTPParser; + }; + CE0A4FEF2471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio-ssl::NIOOpenSSL"; + remoteInfo = NIOOpenSSL; + }; + CE0A4FF02471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOTLS"; + remoteInfo = NIOTLS; + }; + CE0A4FF12471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio-ssl::CNIOOpenSSL"; + remoteInfo = CNIOOpenSSL; + }; + CE0A4FF22471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "DatabaseKit::DatabaseKit"; + remoteInfo = DatabaseKit; + }; + CE0A4FF32471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::Crypto"; + remoteInfo = Crypto; + }; + CE0A4FF42471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::Random"; + remoteInfo = Random; + }; + CE0A4FF52471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CCryptoOpenSSL"; + remoteInfo = CCryptoOpenSSL; + }; + CE0A4FF62471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CBcrypt"; + remoteInfo = CBcrypt; + }; + CE0A4FF72471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Crypto::CBase32"; + remoteInfo = CBase32; + }; + CE0A4FF82471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Command"; + remoteInfo = Command; + }; + CE0A4FF92471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Console"; + remoteInfo = Console; + }; + CE0A4FFA2471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Service::Service"; + remoteInfo = Service; + }; + CE0A4FFB2471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Console::Logging"; + remoteInfo = Logging; + }; + CE0A4FFC2471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Core"; + remoteInfo = Core; + }; + CE0A4FFD2471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOFoundationCompat"; + remoteInfo = NIOFoundationCompat; + }; + CE0A4FFE2471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::COperatingSystem"; + remoteInfo = COperatingSystem; + }; + CE0A4FFF2471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Bits"; + remoteInfo = Bits; + }; + CE0A50002471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Debugging"; + remoteInfo = Debugging; + }; + CE0A50012471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "Core::Async"; + remoteInfo = Async; + }; + CE0A50022471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIO"; + remoteInfo = NIO; + }; + CE0A50032471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOSHA1"; + remoteInfo = CNIOSHA1; + }; + CE0A50042471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOPriorityQueue"; + remoteInfo = NIOPriorityQueue; + }; + CE0A50052471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::NIOConcurrencyHelpers"; + remoteInfo = NIOConcurrencyHelpers; + }; + CE0A50062471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOAtomics"; + remoteInfo = CNIOAtomics; + }; + CE0A50072471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIODarwin"; + remoteInfo = CNIODarwin; + }; + CE0A50082471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "swift-nio::CNIOLinux"; + remoteInfo = CNIOLinux; + }; + CE0A50092471B7B100A9E753 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = "CapCollectorServer::AppTests"; + remoteInfo = AppTests; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + CE0A500A2471B82500A9E753 /* Router+Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Router+Extensions.swift"; sourceTree = ""; }; + CE0A500C2471B85000A9E753 /* Log.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Log.swift; sourceTree = ""; }; + CE0A500E2471BC2200A9E753 /* Error.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Error.swift; sourceTree = ""; }; + "CapCollectorServer::App::Product" /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = App.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "CapCollectorServer::AppTests::Product" /* AppTests.xctest */ = {isa = PBXFileReference; lastKnownFileType = file; path = AppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + "CapCollectorServer::Run::Product" /* Run */ = {isa = PBXFileReference; lastKnownFileType = text; path = Run; sourceTree = BUILT_PRODUCTS_DIR; }; + "Console::Command::Product" /* Command.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Command.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Console::Console::Product" /* Console.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Console.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Console::Logging::Product" /* Logging.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Logging.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Core::Async::Product" /* Async.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Async.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Core::Bits::Product" /* Bits.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Bits.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Core::COperatingSystem::Product" /* COperatingSystem.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = COperatingSystem.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Core::Core::Product" /* Core.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Core.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Core::Debugging::Product" /* Debugging.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Debugging.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Crypto::CBase32::Product" /* CBase32.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CBase32.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Crypto::CBcrypt::Product" /* CBcrypt.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CBcrypt.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Crypto::CCryptoOpenSSL::Product" /* CCryptoOpenSSL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CCryptoOpenSSL.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Crypto::Crypto::Product" /* Crypto.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Crypto.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Crypto::Random::Product" /* Random.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Random.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "DatabaseKit::DatabaseKit::Product" /* DatabaseKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = DatabaseKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "HTTP::HTTP::Product" /* HTTP.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = HTTP.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Multipart::Multipart::Product" /* Multipart.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Multipart.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + OBJ_10 /* configure.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = configure.swift; sourceTree = ""; }; + OBJ_100 /* EngineRouter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EngineRouter.swift; sourceTree = ""; }; + OBJ_101 /* ParametersContainer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ParametersContainer.swift; sourceTree = ""; }; + OBJ_102 /* RouteCollection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RouteCollection.swift; sourceTree = ""; }; + OBJ_103 /* Router+Content.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Router+Content.swift"; sourceTree = ""; }; + OBJ_104 /* Router+Function.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Router+Function.swift"; sourceTree = ""; }; + OBJ_105 /* Router+LazyMiddleware.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Router+LazyMiddleware.swift"; sourceTree = ""; }; + OBJ_106 /* Router+Method.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Router+Method.swift"; sourceTree = ""; }; + OBJ_107 /* Router+Middleware.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Router+Middleware.swift"; sourceTree = ""; }; + OBJ_108 /* Router+Path.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Router+Path.swift"; sourceTree = ""; }; + OBJ_109 /* Router.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Router.swift; sourceTree = ""; }; + OBJ_11 /* routes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = routes.swift; sourceTree = ""; }; + OBJ_111 /* NIOServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NIOServer.swift; sourceTree = ""; }; + OBJ_112 /* NIOServerConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NIOServerConfig.swift; sourceTree = ""; }; + OBJ_113 /* RunningServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunningServer.swift; sourceTree = ""; }; + OBJ_114 /* Server.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Server.swift; sourceTree = ""; }; + OBJ_116 /* Config+Default.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Config+Default.swift"; sourceTree = ""; }; + OBJ_117 /* Services+Default.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Services+Default.swift"; sourceTree = ""; }; + OBJ_118 /* VaporProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VaporProvider.swift; sourceTree = ""; }; + OBJ_120 /* KeyedCacheSessions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KeyedCacheSessions.swift; sourceTree = ""; }; + OBJ_121 /* MemorySessions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MemorySessions.swift; sourceTree = ""; }; + OBJ_122 /* Request+Session.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Request+Session.swift"; sourceTree = ""; }; + OBJ_123 /* Session.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Session.swift; sourceTree = ""; }; + OBJ_124 /* SessionCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SessionCache.swift; sourceTree = ""; }; + OBJ_125 /* SessionData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SessionData.swift; sourceTree = ""; }; + OBJ_126 /* Sessions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Sessions.swift; sourceTree = ""; }; + OBJ_127 /* SessionsConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SessionsConfig.swift; sourceTree = ""; }; + OBJ_128 /* SessionsMiddleware.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SessionsMiddleware.swift; sourceTree = ""; }; + OBJ_13 /* main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = main.swift; sourceTree = ""; }; + OBJ_130 /* AnyResponse.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnyResponse.swift; sourceTree = ""; }; + OBJ_131 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_132 /* FileIO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileIO.swift; sourceTree = ""; }; + OBJ_133 /* Thread.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Thread.swift; sourceTree = ""; }; + OBJ_135 /* Vapor+View.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Vapor+View.swift"; sourceTree = ""; }; + OBJ_137 /* NIOWebSocketClient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NIOWebSocketClient.swift; sourceTree = ""; }; + OBJ_138 /* NIOWebSocketServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NIOWebSocketServer.swift; sourceTree = ""; }; + OBJ_139 /* WebSocketClient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebSocketClient.swift; sourceTree = ""; }; + OBJ_140 /* WebSocketResponder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebSocketResponder.swift; sourceTree = ""; }; + OBJ_141 /* WebSocketServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebSocketServer.swift; sourceTree = ""; }; + OBJ_142 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = /Users/user/Development/CapCollectorServer/.build/checkouts/vapor/Package.swift; sourceTree = ""; }; + OBJ_145 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_146 /* WebSocket+Client.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "WebSocket+Client.swift"; sourceTree = ""; }; + OBJ_147 /* WebSocket+Server.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "WebSocket+Server.swift"; sourceTree = ""; }; + OBJ_148 /* WebSocket.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebSocket.swift; sourceTree = ""; }; + OBJ_149 /* WebSocketFrameSequence.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebSocketFrameSequence.swift; sourceTree = ""; }; + OBJ_150 /* WebSocketHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebSocketHandler.swift; sourceTree = ""; }; + OBJ_151 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = /Users/user/Development/CapCollectorServer/.build/checkouts/websocket/Package.swift; sourceTree = ""; }; + OBJ_154 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_155 /* Validatable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Validatable.swift; sourceTree = ""; }; + OBJ_156 /* ValidationError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ValidationError.swift; sourceTree = ""; }; + OBJ_157 /* Validations.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Validations.swift; sourceTree = ""; }; + OBJ_158 /* Validator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Validator.swift; sourceTree = ""; }; + OBJ_159 /* ValidatorType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ValidatorType.swift; sourceTree = ""; }; + OBJ_16 /* AppTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppTests.swift; sourceTree = ""; }; + OBJ_161 /* AndValidator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AndValidator.swift; sourceTree = ""; }; + OBJ_162 /* CharacterSetValidator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CharacterSetValidator.swift; sourceTree = ""; }; + OBJ_163 /* CountValidator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CountValidator.swift; sourceTree = ""; }; + OBJ_164 /* EmailValidator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmailValidator.swift; sourceTree = ""; }; + OBJ_165 /* EmptyValidator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmptyValidator.swift; sourceTree = ""; }; + OBJ_166 /* InValidator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InValidator.swift; sourceTree = ""; }; + OBJ_167 /* NilIgnoringValidator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NilIgnoringValidator.swift; sourceTree = ""; }; + OBJ_168 /* NilValidator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NilValidator.swift; sourceTree = ""; }; + OBJ_169 /* NotValidator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotValidator.swift; sourceTree = ""; }; + OBJ_170 /* OrValidator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrValidator.swift; sourceTree = ""; }; + OBJ_171 /* RangeValidator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RangeValidator.swift; sourceTree = ""; }; + OBJ_172 /* URLValidator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = URLValidator.swift; sourceTree = ""; }; + OBJ_173 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = /Users/user/Development/CapCollectorServer/.build/checkouts/validation/Package.swift; sourceTree = ""; }; + OBJ_177 /* URLEncodedFormDecoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = URLEncodedFormDecoder.swift; sourceTree = ""; }; + OBJ_178 /* URLEncodedFormEncoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = URLEncodedFormEncoder.swift; sourceTree = ""; }; + OBJ_180 /* URLEncodedFormData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = URLEncodedFormData.swift; sourceTree = ""; }; + OBJ_181 /* URLEncodedFormDataConvertible.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = URLEncodedFormDataConvertible.swift; sourceTree = ""; }; + OBJ_182 /* URLEncodedFormParser.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = URLEncodedFormParser.swift; sourceTree = ""; }; + OBJ_183 /* URLEncodedFormSerializer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = URLEncodedFormSerializer.swift; sourceTree = ""; }; + OBJ_185 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_186 /* URLEncodedFormError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = URLEncodedFormError.swift; sourceTree = ""; }; + OBJ_187 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = "/Users/user/Development/CapCollectorServer/.build/checkouts/url-encoded-form/Package.swift"; sourceTree = ""; }; + OBJ_191 /* TemplateConditional.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateConditional.swift; sourceTree = ""; }; + OBJ_192 /* TemplateConstant.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateConstant.swift; sourceTree = ""; }; + OBJ_193 /* TemplateCustom.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateCustom.swift; sourceTree = ""; }; + OBJ_194 /* TemplateDataContext.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateDataContext.swift; sourceTree = ""; }; + OBJ_195 /* TemplateEmbed.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateEmbed.swift; sourceTree = ""; }; + OBJ_196 /* TemplateExpression.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateExpression.swift; sourceTree = ""; }; + OBJ_197 /* TemplateIdentifier.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateIdentifier.swift; sourceTree = ""; }; + OBJ_198 /* TemplateIterator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateIterator.swift; sourceTree = ""; }; + OBJ_199 /* TemplateRaw.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateRaw.swift; sourceTree = ""; }; + OBJ_200 /* TemplateSource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateSource.swift; sourceTree = ""; }; + OBJ_201 /* TemplateSyntax.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateSyntax.swift; sourceTree = ""; }; + OBJ_202 /* TemplateSyntaxType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateSyntaxType.swift; sourceTree = ""; }; + OBJ_203 /* TemplateTag.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateTag.swift; sourceTree = ""; }; + OBJ_205 /* TemplateData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateData.swift; sourceTree = ""; }; + OBJ_206 /* TemplateDataEncoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateDataEncoder.swift; sourceTree = ""; }; + OBJ_207 /* TemplateDataRepresentable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateDataRepresentable.swift; sourceTree = ""; }; + OBJ_208 /* TemplateDataStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateDataStorage.swift; sourceTree = ""; }; + OBJ_209 /* Deprecated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Deprecated.swift; sourceTree = ""; }; + OBJ_21 /* Blob.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Blob.swift; sourceTree = ""; }; + OBJ_211 /* ASTCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ASTCache.swift; sourceTree = ""; }; + OBJ_212 /* PlaintextRenderer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlaintextRenderer.swift; sourceTree = ""; }; + OBJ_213 /* TemplateByteScanner.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateByteScanner.swift; sourceTree = ""; }; + OBJ_214 /* TemplateParser.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateParser.swift; sourceTree = ""; }; + OBJ_215 /* TemplateRenderer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateRenderer.swift; sourceTree = ""; }; + OBJ_216 /* TemplateSerializer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateSerializer.swift; sourceTree = ""; }; + OBJ_218 /* Capitalize.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Capitalize.swift; sourceTree = ""; }; + OBJ_219 /* Comment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Comment.swift; sourceTree = ""; }; + OBJ_22 /* Connection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Connection.swift; sourceTree = ""; }; + OBJ_220 /* Contains.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Contains.swift; sourceTree = ""; }; + OBJ_221 /* Count.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Count.swift; sourceTree = ""; }; + OBJ_222 /* DateFormat.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateFormat.swift; sourceTree = ""; }; + OBJ_223 /* Lowercase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lowercase.swift; sourceTree = ""; }; + OBJ_224 /* Print.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Print.swift; sourceTree = ""; }; + OBJ_225 /* Raw.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Raw.swift; sourceTree = ""; }; + OBJ_226 /* TagContext.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TagContext.swift; sourceTree = ""; }; + OBJ_227 /* TagRenderer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TagRenderer.swift; sourceTree = ""; }; + OBJ_228 /* Uppercase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Uppercase.swift; sourceTree = ""; }; + OBJ_229 /* Var.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Var.swift; sourceTree = ""; }; + OBJ_23 /* Errors.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Errors.swift; sourceTree = ""; }; + OBJ_231 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_232 /* HTMLEscape.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTMLEscape.swift; sourceTree = ""; }; + OBJ_233 /* TemplateError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TemplateError.swift; sourceTree = ""; }; + OBJ_234 /* View.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = View.swift; sourceTree = ""; }; + OBJ_235 /* ViewRenderer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewRenderer.swift; sourceTree = ""; }; + OBJ_236 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = "/Users/user/Development/CapCollectorServer/.build/checkouts/template-kit/Package.swift"; sourceTree = ""; }; + OBJ_24 /* Statement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Statement.swift; sourceTree = ""; }; + OBJ_240 /* Parameter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Parameter.swift; sourceTree = ""; }; + OBJ_241 /* ParameterValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ParameterValue.swift; sourceTree = ""; }; + OBJ_242 /* Parameters.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Parameters.swift; sourceTree = ""; }; + OBJ_244 /* PathComponent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PathComponent.swift; sourceTree = ""; }; + OBJ_245 /* Route.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Route.swift; sourceTree = ""; }; + OBJ_246 /* RouterOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RouterOption.swift; sourceTree = ""; }; + OBJ_248 /* RoutableComponent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RoutableComponent.swift; sourceTree = ""; }; + OBJ_249 /* RouterNode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RouterNode.swift; sourceTree = ""; }; + OBJ_25 /* Value.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Value.swift; sourceTree = ""; }; + OBJ_250 /* TrieRouter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TrieRouter.swift; sourceTree = ""; }; + OBJ_252 /* Deprecated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Deprecated.swift; sourceTree = ""; }; + OBJ_253 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_254 /* RoutingError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RoutingError.swift; sourceTree = ""; }; + OBJ_255 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = /Users/user/Development/CapCollectorServer/.build/checkouts/routing/Package.swift; sourceTree = ""; }; + OBJ_258 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_259 /* FormDataDecoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FormDataDecoder.swift; sourceTree = ""; }; + OBJ_260 /* FormDataEncoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FormDataEncoder.swift; sourceTree = ""; }; + OBJ_261 /* MultipartError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MultipartError.swift; sourceTree = ""; }; + OBJ_262 /* MultipartParser.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MultipartParser.swift; sourceTree = ""; }; + OBJ_263 /* MultipartPart.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MultipartPart.swift; sourceTree = ""; }; + OBJ_264 /* MultipartPartConvertible.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MultipartPartConvertible.swift; sourceTree = ""; }; + OBJ_265 /* MultipartSerializer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MultipartSerializer.swift; sourceTree = ""; }; + OBJ_266 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = /Users/user/Development/CapCollectorServer/.build/checkouts/multipart/Package.swift; sourceTree = ""; }; + OBJ_27 /* Cipher.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Cipher.swift; sourceTree = ""; }; + OBJ_270 /* HTTPBody.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPBody.swift; sourceTree = ""; }; + OBJ_271 /* HTTPBodyRepresentable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPBodyRepresentable.swift; sourceTree = ""; }; + OBJ_272 /* HTTPBodyStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPBodyStorage.swift; sourceTree = ""; }; + OBJ_273 /* HTTPChunkedStream.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPChunkedStream.swift; sourceTree = ""; }; + OBJ_275 /* HTTPMessageCoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPMessageCoder.swift; sourceTree = ""; }; + OBJ_277 /* HTTPCookieValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPCookieValue.swift; sourceTree = ""; }; + OBJ_278 /* HTTPCookies.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPCookies.swift; sourceTree = ""; }; + OBJ_279 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_28 /* FTS4.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FTS4.swift; sourceTree = ""; }; + OBJ_281 /* Forwarded.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Forwarded.swift; sourceTree = ""; }; + OBJ_282 /* HTTPHeaderName.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPHeaderName.swift; sourceTree = ""; }; + OBJ_283 /* HTTPHeaders.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPHeaders.swift; sourceTree = ""; }; + OBJ_284 /* HTTPMessage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPMessage.swift; sourceTree = ""; }; + OBJ_285 /* HTTPRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPRequest.swift; sourceTree = ""; }; + OBJ_286 /* HTTPResponse.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPResponse.swift; sourceTree = ""; }; + OBJ_287 /* MediaTypePreference.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MediaTypePreference.swift; sourceTree = ""; }; + OBJ_288 /* URL+HTTP.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "URL+HTTP.swift"; sourceTree = ""; }; + OBJ_29 /* FTS5.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FTS5.swift; sourceTree = ""; }; + OBJ_290 /* HTTPClient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPClient.swift; sourceTree = ""; }; + OBJ_291 /* HTTPClientProtocolUpgrader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPClientProtocolUpgrader.swift; sourceTree = ""; }; + OBJ_292 /* HTTPScheme.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPScheme.swift; sourceTree = ""; }; + OBJ_293 /* HTTPServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPServer.swift; sourceTree = ""; }; + OBJ_294 /* HTTPServerResponder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPServerResponder.swift; sourceTree = ""; }; + OBJ_296 /* HTTPError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPError.swift; sourceTree = ""; }; + OBJ_297 /* HTTPHeaders+Basic.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "HTTPHeaders+Basic.swift"; sourceTree = ""; }; + OBJ_298 /* HTTPHeaders+Bearer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "HTTPHeaders+Bearer.swift"; sourceTree = ""; }; + OBJ_299 /* RFC1123.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RFC1123.swift; sourceTree = ""; }; + OBJ_30 /* RTree.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RTree.swift; sourceTree = ""; }; + OBJ_300 /* String+IsIPAddress.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+IsIPAddress.swift"; sourceTree = ""; }; + OBJ_301 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = /Users/user/Development/CapCollectorServer/.build/checkouts/http/Package.swift; sourceTree = ""; }; + OBJ_304 /* helpers.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = helpers.c; sourceTree = ""; }; + OBJ_305 /* shims.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = shims.c; sourceTree = ""; }; + OBJ_307 /* c_nio_openssl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = c_nio_openssl.h; sourceTree = ""; }; + OBJ_308 /* module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; name = module.modulemap; path = /Users/user/Development/CapCollectorServer/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap; sourceTree = ""; }; + OBJ_31 /* Foundation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Foundation.swift; sourceTree = ""; }; + OBJ_310 /* ByteBufferBIO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ByteBufferBIO.swift; sourceTree = ""; }; + OBJ_311 /* IdentityVerification.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IdentityVerification.swift; sourceTree = ""; }; + OBJ_312 /* OpenSSLClientHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenSSLClientHandler.swift; sourceTree = ""; }; + OBJ_313 /* OpenSSLHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenSSLHandler.swift; sourceTree = ""; }; + OBJ_314 /* OpenSSLServerHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenSSLServerHandler.swift; sourceTree = ""; }; + OBJ_315 /* PosixPort.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PosixPort.swift; sourceTree = ""; }; + OBJ_316 /* SSLCertificate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SSLCertificate.swift; sourceTree = ""; }; + OBJ_317 /* SSLConnection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SSLConnection.swift; sourceTree = ""; }; + OBJ_318 /* SSLContext.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SSLContext.swift; sourceTree = ""; }; + OBJ_319 /* SSLErrors.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SSLErrors.swift; sourceTree = ""; }; + OBJ_32 /* Helpers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Helpers.swift; sourceTree = ""; }; + OBJ_320 /* SSLInit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SSLInit.swift; sourceTree = ""; }; + OBJ_321 /* SSLPKCS12Bundle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SSLPKCS12Bundle.swift; sourceTree = ""; }; + OBJ_322 /* SSLPointerTricks.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SSLPointerTricks.swift; sourceTree = ""; }; + OBJ_323 /* SSLPrivateKey.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SSLPrivateKey.swift; sourceTree = ""; }; + OBJ_324 /* SSLPublicKey.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SSLPublicKey.swift; sourceTree = ""; }; + OBJ_325 /* SSLVerificationCallbacks.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SSLVerificationCallbacks.swift; sourceTree = ""; }; + OBJ_326 /* TLSConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TLSConfiguration.swift; sourceTree = ""; }; + OBJ_328 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = "/Users/user/Development/CapCollectorServer/.build/checkouts/swift-nio-ssl/Package.swift"; sourceTree = ""; }; + OBJ_332 /* Container+CachedConnection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Container+CachedConnection.swift"; sourceTree = ""; }; + OBJ_333 /* Container+NewConnection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Container+NewConnection.swift"; sourceTree = ""; }; + OBJ_334 /* DatabaseConnectable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseConnectable.swift; sourceTree = ""; }; + OBJ_335 /* DatabaseConnection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseConnection.swift; sourceTree = ""; }; + OBJ_336 /* DatabaseStringFindable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseStringFindable.swift; sourceTree = ""; }; + OBJ_338 /* Container+ConnectionPool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Container+ConnectionPool.swift"; sourceTree = ""; }; + OBJ_339 /* DatabaseConnectionPool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseConnectionPool.swift; sourceTree = ""; }; + OBJ_34 /* AggregateFunctions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AggregateFunctions.swift; sourceTree = ""; }; + OBJ_340 /* DatabaseConnectionPoolCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseConnectionPoolCache.swift; sourceTree = ""; }; + OBJ_341 /* DatabaseConnectionPoolConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseConnectionPoolConfig.swift; sourceTree = ""; }; + OBJ_343 /* ConfiguredDatabase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConfiguredDatabase.swift; sourceTree = ""; }; + OBJ_344 /* Database.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Database.swift; sourceTree = ""; }; + OBJ_345 /* DatabaseConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseConfig.swift; sourceTree = ""; }; + OBJ_346 /* DatabaseIdentifier.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseIdentifier.swift; sourceTree = ""; }; + OBJ_347 /* DatabaseQueryable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseQueryable.swift; sourceTree = ""; }; + OBJ_348 /* Databases.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Databases.swift; sourceTree = ""; }; + OBJ_35 /* Coding.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Coding.swift; sourceTree = ""; }; + OBJ_350 /* DatabaseKeyedCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseKeyedCache.swift; sourceTree = ""; }; + OBJ_351 /* DictionaryKeyedCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DictionaryKeyedCache.swift; sourceTree = ""; }; + OBJ_352 /* KeyedCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KeyedCache.swift; sourceTree = ""; }; + OBJ_353 /* KeyedCacheSupporting.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KeyedCacheSupporting.swift; sourceTree = ""; }; + OBJ_354 /* MemoryKeyedCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MemoryKeyedCache.swift; sourceTree = ""; }; + OBJ_356 /* DatabaseLog.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseLog.swift; sourceTree = ""; }; + OBJ_357 /* DatabaseLogHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseLogHandler.swift; sourceTree = ""; }; + OBJ_358 /* DatabaseLogger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseLogger.swift; sourceTree = ""; }; + OBJ_359 /* LogSupporting.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LogSupporting.swift; sourceTree = ""; }; + OBJ_36 /* Collation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Collation.swift; sourceTree = ""; }; + OBJ_360 /* PrintLogHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PrintLogHandler.swift; sourceTree = ""; }; + OBJ_362 /* DatabaseKitProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseKitProvider.swift; sourceTree = ""; }; + OBJ_364 /* DatabaseKitError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatabaseKitError.swift; sourceTree = ""; }; + OBJ_365 /* Deprecated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Deprecated.swift; sourceTree = ""; }; + OBJ_366 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_367 /* URL+DatabaseName.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "URL+DatabaseName.swift"; sourceTree = ""; }; + OBJ_368 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = "/Users/user/Development/CapCollectorServer/.build/checkouts/database-kit/Package.swift"; sourceTree = ""; }; + OBJ_37 /* CoreFunctions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreFunctions.swift; sourceTree = ""; }; + OBJ_371 /* base32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = base32.c; sourceTree = ""; }; + OBJ_373 /* module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; name = module.modulemap; path = /Users/user/Development/CapCollectorServer/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap; sourceTree = ""; }; + OBJ_375 /* bcrypt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = bcrypt.c; sourceTree = ""; }; + OBJ_376 /* blf.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = blf.c; sourceTree = ""; }; + OBJ_378 /* module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; name = module.modulemap; path = /Users/user/Development/CapCollectorServer/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap; sourceTree = ""; }; + OBJ_38 /* CustomFunctions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomFunctions.swift; sourceTree = ""; }; + OBJ_380 /* shim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = shim.c; sourceTree = ""; }; + OBJ_382 /* c_crypto_openssl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = c_crypto_openssl.h; sourceTree = ""; }; + OBJ_383 /* module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; name = module.modulemap; path = /Users/user/Development/CapCollectorServer/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap; sourceTree = ""; }; + OBJ_386 /* BCryptDigest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BCryptDigest.swift; sourceTree = ""; }; + OBJ_388 /* AuthenticatedCipher.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AuthenticatedCipher.swift; sourceTree = ""; }; + OBJ_389 /* AuthenticatedCipherAlgorithm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AuthenticatedCipherAlgorithm.swift; sourceTree = ""; }; + OBJ_39 /* DateAndTimeFunctions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateAndTimeFunctions.swift; sourceTree = ""; }; + OBJ_390 /* Cipher.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Cipher.swift; sourceTree = ""; }; + OBJ_391 /* CipherAlgorithm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CipherAlgorithm.swift; sourceTree = ""; }; + OBJ_392 /* OpenSSLCipherAlgorithm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenSSLCipherAlgorithm.swift; sourceTree = ""; }; + OBJ_393 /* OpenSSLStreamCipher.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenSSLStreamCipher.swift; sourceTree = ""; }; + OBJ_395 /* Digest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Digest.swift; sourceTree = ""; }; + OBJ_396 /* DigestAlgorithm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DigestAlgorithm.swift; sourceTree = ""; }; + OBJ_398 /* HMAC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HMAC.swift; sourceTree = ""; }; + OBJ_399 /* OTP.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OTP.swift; sourceTree = ""; }; + OBJ_40 /* Expression.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Expression.swift; sourceTree = ""; }; + OBJ_401 /* RSA.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RSA.swift; sourceTree = ""; }; + OBJ_402 /* RSAKey.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RSAKey.swift; sourceTree = ""; }; + OBJ_403 /* RSAPadding.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RSAPadding.swift; sourceTree = ""; }; + OBJ_405 /* CryptoRandom.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CryptoRandom.swift; sourceTree = ""; }; + OBJ_407 /* Base32.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Base32.swift; sourceTree = ""; }; + OBJ_408 /* CryptoError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CryptoError.swift; sourceTree = ""; }; + OBJ_409 /* Deprecated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Deprecated.swift; sourceTree = ""; }; + OBJ_41 /* Operators.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Operators.swift; sourceTree = ""; }; + OBJ_410 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_412 /* Array+Random.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Array+Random.swift"; sourceTree = ""; }; + OBJ_413 /* OSRandom.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OSRandom.swift; sourceTree = ""; }; + OBJ_414 /* RandomProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RandomProtocol.swift; sourceTree = ""; }; + OBJ_415 /* URandom.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = URandom.swift; sourceTree = ""; }; + OBJ_416 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = /Users/user/Development/CapCollectorServer/.build/checkouts/crypto/Package.swift; sourceTree = ""; }; + OBJ_42 /* Query.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Query.swift; sourceTree = ""; }; + OBJ_420 /* CommandOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommandOption.swift; sourceTree = ""; }; + OBJ_421 /* CommandRunnable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommandRunnable.swift; sourceTree = ""; }; + OBJ_423 /* Command.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Command.swift; sourceTree = ""; }; + OBJ_424 /* CommandArgument.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommandArgument.swift; sourceTree = ""; }; + OBJ_426 /* CommandConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommandConfig.swift; sourceTree = ""; }; + OBJ_427 /* Commands.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Commands.swift; sourceTree = ""; }; + OBJ_429 /* BasicCommandGroup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasicCommandGroup.swift; sourceTree = ""; }; + OBJ_43 /* Schema.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Schema.swift; sourceTree = ""; }; + OBJ_430 /* CommandGroup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommandGroup.swift; sourceTree = ""; }; + OBJ_432 /* CommandContext.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommandContext.swift; sourceTree = ""; }; + OBJ_433 /* CommandInput.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommandInput.swift; sourceTree = ""; }; + OBJ_434 /* Console+Run.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Console+Run.swift"; sourceTree = ""; }; + OBJ_435 /* Output+Autocomplete.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Output+Autocomplete.swift"; sourceTree = ""; }; + OBJ_436 /* Output+Help.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Output+Help.swift"; sourceTree = ""; }; + OBJ_438 /* CommandError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommandError.swift; sourceTree = ""; }; + OBJ_439 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_44 /* Setter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Setter.swift; sourceTree = ""; }; + OBJ_440 /* Utilities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Utilities.swift; sourceTree = ""; }; + OBJ_443 /* ActivityBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActivityBar.swift; sourceTree = ""; }; + OBJ_444 /* ActivityIndicator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActivityIndicator.swift; sourceTree = ""; }; + OBJ_445 /* ActivityIndicatorRenderer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActivityIndicatorRenderer.swift; sourceTree = ""; }; + OBJ_446 /* ActivityIndicatorState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActivityIndicatorState.swift; sourceTree = ""; }; + OBJ_447 /* CustomActivity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomActivity.swift; sourceTree = ""; }; + OBJ_448 /* LoadingBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoadingBar.swift; sourceTree = ""; }; + OBJ_449 /* ProgressBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProgressBar.swift; sourceTree = ""; }; + OBJ_451 /* Console+Clear.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Console+Clear.swift"; sourceTree = ""; }; + OBJ_452 /* Console+Ephemeral.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Console+Ephemeral.swift"; sourceTree = ""; }; + OBJ_453 /* ConsoleClear.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConsoleClear.swift; sourceTree = ""; }; + OBJ_454 /* Console.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Console.swift; sourceTree = ""; }; + OBJ_455 /* Deprecated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Deprecated.swift; sourceTree = ""; }; + OBJ_457 /* Console+Ask.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Console+Ask.swift"; sourceTree = ""; }; + OBJ_458 /* Console+Choose.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Console+Choose.swift"; sourceTree = ""; }; + OBJ_459 /* Console+Confirm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Console+Confirm.swift"; sourceTree = ""; }; + OBJ_46 /* SQLiteObjc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SQLiteObjc.m; sourceTree = ""; }; + OBJ_460 /* Console+Input.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Console+Input.swift"; sourceTree = ""; }; + OBJ_462 /* Console+Center.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Console+Center.swift"; sourceTree = ""; }; + OBJ_463 /* Console+Output.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Console+Output.swift"; sourceTree = ""; }; + OBJ_464 /* Console+Wait.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Console+Wait.swift"; sourceTree = ""; }; + OBJ_465 /* ConsoleColor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConsoleColor.swift; sourceTree = ""; }; + OBJ_466 /* ConsoleStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConsoleStyle.swift; sourceTree = ""; }; + OBJ_467 /* ConsoleText.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConsoleText.swift; sourceTree = ""; }; + OBJ_468 /* ConsoleTextFragment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConsoleTextFragment.swift; sourceTree = ""; }; + OBJ_470 /* ANSI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ANSI.swift; sourceTree = ""; }; + OBJ_471 /* Terminal.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Terminal.swift; sourceTree = ""; }; + OBJ_473 /* ConsoleError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConsoleError.swift; sourceTree = ""; }; + OBJ_474 /* ConsoleLogger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConsoleLogger.swift; sourceTree = ""; }; + OBJ_475 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_477 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_478 /* LogLevel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LogLevel.swift; sourceTree = ""; }; + OBJ_479 /* Logger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Logger.swift; sourceTree = ""; }; + OBJ_48 /* SQLiteObjc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SQLiteObjc.h; sourceTree = ""; }; + OBJ_480 /* PrintLogger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PrintLogger.swift; sourceTree = ""; }; + OBJ_481 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = /Users/user/Development/CapCollectorServer/.build/checkouts/console/Package.swift; sourceTree = ""; }; + OBJ_485 /* Config.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Config.swift; sourceTree = ""; }; + OBJ_487 /* BasicContainer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasicContainer.swift; sourceTree = ""; }; + OBJ_488 /* BasicSubContainer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasicSubContainer.swift; sourceTree = ""; }; + OBJ_489 /* Container.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Container.swift; sourceTree = ""; }; + OBJ_49 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = /Users/user/Development/CapCollectorServer/.build/checkouts/SQLite.swift/Package.swift; sourceTree = ""; }; + OBJ_490 /* ContainerAlias.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContainerAlias.swift; sourceTree = ""; }; + OBJ_491 /* SubContainer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SubContainer.swift; sourceTree = ""; }; + OBJ_493 /* Environment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Environment.swift; sourceTree = ""; }; + OBJ_495 /* Provider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Provider.swift; sourceTree = ""; }; + OBJ_497 /* BasicServiceFactory.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasicServiceFactory.swift; sourceTree = ""; }; + OBJ_498 /* Service.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Service.swift; sourceTree = ""; }; + OBJ_499 /* ServiceCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ServiceCache.swift; sourceTree = ""; }; + OBJ_500 /* ServiceFactory.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ServiceFactory.swift; sourceTree = ""; }; + OBJ_501 /* ServiceID.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ServiceID.swift; sourceTree = ""; }; + OBJ_502 /* ServiceType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ServiceType.swift; sourceTree = ""; }; + OBJ_503 /* Services.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Services.swift; sourceTree = ""; }; + OBJ_504 /* TypeServiceFactory.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TypeServiceFactory.swift; sourceTree = ""; }; + OBJ_506 /* Deprecated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Deprecated.swift; sourceTree = ""; }; + OBJ_507 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_508 /* Extendable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Extendable.swift; sourceTree = ""; }; + OBJ_509 /* ServiceError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ServiceError.swift; sourceTree = ""; }; + OBJ_510 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = /Users/user/Development/CapCollectorServer/.build/checkouts/service/Package.swift; sourceTree = ""; }; + OBJ_513 /* Async+NIO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Async+NIO.swift"; sourceTree = ""; }; + OBJ_514 /* AsyncError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AsyncError.swift; sourceTree = ""; }; + OBJ_515 /* Collection+Future.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Collection+Future.swift"; sourceTree = ""; }; + OBJ_516 /* Deprecated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Deprecated.swift; sourceTree = ""; }; + OBJ_517 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_518 /* Future+DoCatch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Future+DoCatch.swift"; sourceTree = ""; }; + OBJ_519 /* Future+Flatten.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Future+Flatten.swift"; sourceTree = ""; }; + OBJ_52 /* Application.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Application.swift; sourceTree = ""; }; + OBJ_520 /* Future+Global.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Future+Global.swift"; sourceTree = ""; }; + OBJ_521 /* Future+Map.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Future+Map.swift"; sourceTree = ""; }; + OBJ_522 /* Future+Transform.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Future+Transform.swift"; sourceTree = ""; }; + OBJ_523 /* Future+Variadic.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Future+Variadic.swift"; sourceTree = ""; }; + OBJ_524 /* Future+Void.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Future+Void.swift"; sourceTree = ""; }; + OBJ_525 /* FutureType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FutureType.swift; sourceTree = ""; }; + OBJ_526 /* QueueHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QueueHandler.swift; sourceTree = ""; }; + OBJ_527 /* Worker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Worker.swift; sourceTree = ""; }; + OBJ_529 /* BitsError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BitsError.swift; sourceTree = ""; }; + OBJ_530 /* Byte+Alphabet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Byte+Alphabet.swift"; sourceTree = ""; }; + OBJ_531 /* Byte+Control.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Byte+Control.swift"; sourceTree = ""; }; + OBJ_532 /* Byte+Digit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Byte+Digit.swift"; sourceTree = ""; }; + OBJ_533 /* ByteBuffer+binaryFloatingPointOperations.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ByteBuffer+binaryFloatingPointOperations.swift"; sourceTree = ""; }; + OBJ_534 /* ByteBuffer+peek.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ByteBuffer+peek.swift"; sourceTree = ""; }; + OBJ_535 /* ByteBuffer+require.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ByteBuffer+require.swift"; sourceTree = ""; }; + OBJ_536 /* ByteBuffer+string.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ByteBuffer+string.swift"; sourceTree = ""; }; + OBJ_537 /* Bytes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Bytes.swift; sourceTree = ""; }; + OBJ_538 /* Data+Bytes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Data+Bytes.swift"; sourceTree = ""; }; + OBJ_539 /* Data+Strings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Data+Strings.swift"; sourceTree = ""; }; + OBJ_54 /* Client.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Client.swift; sourceTree = ""; }; + OBJ_540 /* Deprecated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Deprecated.swift; sourceTree = ""; }; + OBJ_542 /* libc.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = libc.swift; sourceTree = ""; }; + OBJ_544 /* BasicKey.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasicKey.swift; sourceTree = ""; }; + OBJ_545 /* CaseInsensitiveString.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CaseInsensitiveString.swift; sourceTree = ""; }; + OBJ_547 /* Decodable+Reflectable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Decodable+Reflectable.swift"; sourceTree = ""; }; + OBJ_548 /* ReflectionDecodable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReflectionDecodable.swift; sourceTree = ""; }; + OBJ_549 /* ReflectionDecoders.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReflectionDecoders.swift; sourceTree = ""; }; + OBJ_55 /* FoundationClient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FoundationClient.swift; sourceTree = ""; }; + OBJ_550 /* CoreError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreError.swift; sourceTree = ""; }; + OBJ_551 /* Data+Base64URL.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Data+Base64URL.swift"; sourceTree = ""; }; + OBJ_552 /* Data+Hex.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Data+Hex.swift"; sourceTree = ""; }; + OBJ_553 /* DataCoders.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DataCoders.swift; sourceTree = ""; }; + OBJ_554 /* Deprecated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Deprecated.swift; sourceTree = ""; }; + OBJ_555 /* DirectoryConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DirectoryConfig.swift; sourceTree = ""; }; + OBJ_556 /* Exports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Exports.swift; sourceTree = ""; }; + OBJ_557 /* File.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = File.swift; sourceTree = ""; }; + OBJ_558 /* Future+Unwrap.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Future+Unwrap.swift"; sourceTree = ""; }; + OBJ_559 /* FutureEncoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FutureEncoder.swift; sourceTree = ""; }; + OBJ_560 /* HeaderValue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HeaderValue.swift; sourceTree = ""; }; + OBJ_561 /* LosslessDataConvertible.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LosslessDataConvertible.swift; sourceTree = ""; }; + OBJ_562 /* MediaType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MediaType.swift; sourceTree = ""; }; + OBJ_563 /* NestedData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NestedData.swift; sourceTree = ""; }; + OBJ_564 /* NotFound.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotFound.swift; sourceTree = ""; }; + OBJ_565 /* OptionalType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OptionalType.swift; sourceTree = ""; }; + OBJ_566 /* Process+Execute.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Process+Execute.swift"; sourceTree = ""; }; + OBJ_567 /* Reflectable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Reflectable.swift; sourceTree = ""; }; + OBJ_568 /* String+Utilities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Utilities.swift"; sourceTree = ""; }; + OBJ_569 /* Thread+Async.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Thread+Async.swift"; sourceTree = ""; }; + OBJ_57 /* BootCommand.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BootCommand.swift; sourceTree = ""; }; + OBJ_571 /* Debuggable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Debuggable.swift; sourceTree = ""; }; + OBJ_572 /* Demangler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Demangler.swift; sourceTree = ""; }; + OBJ_573 /* SourceLocation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SourceLocation.swift; sourceTree = ""; }; + OBJ_574 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = /Users/user/Development/CapCollectorServer/.build/checkouts/core/Package.swift; sourceTree = ""; }; + OBJ_578 /* c-atomics.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = "c-atomics.c"; sourceTree = ""; }; + OBJ_58 /* CommandConfig+Default.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CommandConfig+Default.swift"; sourceTree = ""; }; + OBJ_580 /* CNIOAtomics.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CNIOAtomics.h; sourceTree = ""; }; + OBJ_581 /* cpp_magic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cpp_magic.h; sourceTree = ""; }; + OBJ_583 /* shim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = shim.c; sourceTree = ""; }; + OBJ_585 /* CNIODarwin.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CNIODarwin.h; sourceTree = ""; }; + OBJ_587 /* c_nio_http_parser.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = c_nio_http_parser.c; sourceTree = ""; }; + OBJ_589 /* c_nio_http_parser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = c_nio_http_parser.h; sourceTree = ""; }; + OBJ_59 /* RoutesCommand.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RoutesCommand.swift; sourceTree = ""; }; + OBJ_590 /* CNIOHTTPParser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CNIOHTTPParser.h; sourceTree = ""; }; + OBJ_592 /* ifaddrs-android.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = "ifaddrs-android.c"; sourceTree = ""; }; + OBJ_593 /* shim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = shim.c; sourceTree = ""; }; + OBJ_595 /* CNIOLinux.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CNIOLinux.h; sourceTree = ""; }; + OBJ_596 /* ifaddrs-android.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ifaddrs-android.h"; sourceTree = ""; }; + OBJ_598 /* c_nio_sha1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = c_nio_sha1.c; sourceTree = ""; }; + OBJ_6 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; path = Package.swift; sourceTree = ""; }; + OBJ_60 /* ServeCommand.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ServeCommand.swift; sourceTree = ""; }; + OBJ_600 /* CNIOSHA1.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CNIOSHA1.h; sourceTree = ""; }; + OBJ_602 /* empty.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = empty.c; sourceTree = ""; }; + OBJ_604 /* CNIOZlib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CNIOZlib.h; sourceTree = ""; }; + OBJ_606 /* AddressedEnvelope.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressedEnvelope.swift; sourceTree = ""; }; + OBJ_607 /* BaseSocket.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseSocket.swift; sourceTree = ""; }; + OBJ_608 /* BaseSocketChannel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseSocketChannel.swift; sourceTree = ""; }; + OBJ_609 /* BlockingIOThreadPool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BlockingIOThreadPool.swift; sourceTree = ""; }; + OBJ_610 /* Bootstrap.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Bootstrap.swift; sourceTree = ""; }; + OBJ_611 /* ByteBuffer-aux.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ByteBuffer-aux.swift"; sourceTree = ""; }; + OBJ_612 /* ByteBuffer-core.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ByteBuffer-core.swift"; sourceTree = ""; }; + OBJ_613 /* ByteBuffer-int.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ByteBuffer-int.swift"; sourceTree = ""; }; + OBJ_614 /* ByteBuffer-views.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ByteBuffer-views.swift"; sourceTree = ""; }; + OBJ_615 /* Channel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Channel.swift; sourceTree = ""; }; + OBJ_616 /* ChannelHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChannelHandler.swift; sourceTree = ""; }; + OBJ_617 /* ChannelHandlers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChannelHandlers.swift; sourceTree = ""; }; + OBJ_618 /* ChannelInvoker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChannelInvoker.swift; sourceTree = ""; }; + OBJ_619 /* ChannelOption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChannelOption.swift; sourceTree = ""; }; + OBJ_62 /* Content.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Content.swift; sourceTree = ""; }; + OBJ_620 /* ChannelPipeline.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChannelPipeline.swift; sourceTree = ""; }; + OBJ_621 /* CircularBuffer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CircularBuffer.swift; sourceTree = ""; }; + OBJ_622 /* Codec.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Codec.swift; sourceTree = ""; }; + OBJ_623 /* CompositeError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CompositeError.swift; sourceTree = ""; }; + OBJ_624 /* ContiguousCollection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContiguousCollection.swift; sourceTree = ""; }; + OBJ_625 /* DeadChannel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeadChannel.swift; sourceTree = ""; }; + OBJ_626 /* Embedded.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Embedded.swift; sourceTree = ""; }; + OBJ_627 /* EventLoop.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EventLoop.swift; sourceTree = ""; }; + OBJ_628 /* EventLoopFuture.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EventLoopFuture.swift; sourceTree = ""; }; + OBJ_629 /* FileDescriptor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileDescriptor.swift; sourceTree = ""; }; + OBJ_63 /* ContentCoders.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentCoders.swift; sourceTree = ""; }; + OBJ_630 /* FileHandle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileHandle.swift; sourceTree = ""; }; + OBJ_631 /* FileRegion.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileRegion.swift; sourceTree = ""; }; + OBJ_632 /* GetaddrinfoResolver.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GetaddrinfoResolver.swift; sourceTree = ""; }; + OBJ_633 /* HappyEyeballs.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HappyEyeballs.swift; sourceTree = ""; }; + OBJ_634 /* Heap.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Heap.swift; sourceTree = ""; }; + OBJ_635 /* IO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IO.swift; sourceTree = ""; }; + OBJ_636 /* IOData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IOData.swift; sourceTree = ""; }; + OBJ_637 /* IntegerTypes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntegerTypes.swift; sourceTree = ""; }; + OBJ_638 /* Interfaces.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Interfaces.swift; sourceTree = ""; }; + OBJ_639 /* Linux.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Linux.swift; sourceTree = ""; }; + OBJ_64 /* ContentConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentConfig.swift; sourceTree = ""; }; + OBJ_640 /* LinuxCPUSet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LinuxCPUSet.swift; sourceTree = ""; }; + OBJ_641 /* MarkedCircularBuffer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkedCircularBuffer.swift; sourceTree = ""; }; + OBJ_642 /* MulticastChannel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MulticastChannel.swift; sourceTree = ""; }; + OBJ_643 /* NIOAny.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NIOAny.swift; sourceTree = ""; }; + OBJ_644 /* NonBlockingFileIO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NonBlockingFileIO.swift; sourceTree = ""; }; + OBJ_645 /* PendingDatagramWritesManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PendingDatagramWritesManager.swift; sourceTree = ""; }; + OBJ_646 /* PendingWritesManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PendingWritesManager.swift; sourceTree = ""; }; + OBJ_647 /* PriorityQueue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PriorityQueue.swift; sourceTree = ""; }; + OBJ_648 /* RecvByteBufferAllocator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RecvByteBufferAllocator.swift; sourceTree = ""; }; + OBJ_649 /* Resolver.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Resolver.swift; sourceTree = ""; }; + OBJ_65 /* ContentContainer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentContainer.swift; sourceTree = ""; }; + OBJ_650 /* Selectable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Selectable.swift; sourceTree = ""; }; + OBJ_651 /* Selector.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Selector.swift; sourceTree = ""; }; + OBJ_652 /* ServerSocket.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ServerSocket.swift; sourceTree = ""; }; + OBJ_653 /* Socket.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Socket.swift; sourceTree = ""; }; + OBJ_654 /* SocketAddresses.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SocketAddresses.swift; sourceTree = ""; }; + OBJ_655 /* SocketChannel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SocketChannel.swift; sourceTree = ""; }; + OBJ_656 /* SocketOptionProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SocketOptionProvider.swift; sourceTree = ""; }; + OBJ_657 /* System.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = System.swift; sourceTree = ""; }; + OBJ_658 /* Thread.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Thread.swift; sourceTree = ""; }; + OBJ_659 /* TypeAssistedChannelHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TypeAssistedChannelHandler.swift; sourceTree = ""; }; + OBJ_66 /* FormDataCoder+HTTP.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "FormDataCoder+HTTP.swift"; sourceTree = ""; }; + OBJ_660 /* Utilities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Utilities.swift; sourceTree = ""; }; + OBJ_664 /* atomics.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = atomics.swift; sourceTree = ""; }; + OBJ_665 /* lock.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = lock.swift; sourceTree = ""; }; + OBJ_669 /* ByteBuffer-foundation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ByteBuffer-foundation.swift"; sourceTree = ""; }; + OBJ_67 /* HTTPMessageContainer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPMessageContainer.swift; sourceTree = ""; }; + OBJ_671 /* ByteCollectionUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ByteCollectionUtils.swift; sourceTree = ""; }; + OBJ_672 /* HTTPDecoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPDecoder.swift; sourceTree = ""; }; + OBJ_673 /* HTTPEncoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPEncoder.swift; sourceTree = ""; }; + OBJ_674 /* HTTPPipelineSetup.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPPipelineSetup.swift; sourceTree = ""; }; + OBJ_675 /* HTTPResponseCompressor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPResponseCompressor.swift; sourceTree = ""; }; + OBJ_676 /* HTTPServerPipelineHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPServerPipelineHandler.swift; sourceTree = ""; }; + OBJ_677 /* HTTPServerProtocolErrorHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPServerProtocolErrorHandler.swift; sourceTree = ""; }; + OBJ_678 /* HTTPTypes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPTypes.swift; sourceTree = ""; }; + OBJ_679 /* HTTPUpgradeHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPUpgradeHandler.swift; sourceTree = ""; }; + OBJ_68 /* JSONCoder+Custom.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "JSONCoder+Custom.swift"; sourceTree = ""; }; + OBJ_684 /* Heap.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Heap.swift; sourceTree = ""; }; + OBJ_685 /* PriorityQueue.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PriorityQueue.swift; sourceTree = ""; }; + OBJ_687 /* ApplicationProtocolNegotiationHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ApplicationProtocolNegotiationHandler.swift; sourceTree = ""; }; + OBJ_688 /* SNIHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SNIHandler.swift; sourceTree = ""; }; + OBJ_689 /* TLSEvents.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TLSEvents.swift; sourceTree = ""; }; + OBJ_69 /* PlaintextEncoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlaintextEncoder.swift; sourceTree = ""; }; + OBJ_691 /* Base64.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Base64.swift; sourceTree = ""; }; + OBJ_692 /* SHA1.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SHA1.swift; sourceTree = ""; }; + OBJ_693 /* WebSocketErrorCodes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebSocketErrorCodes.swift; sourceTree = ""; }; + OBJ_694 /* WebSocketFrame.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebSocketFrame.swift; sourceTree = ""; }; + OBJ_695 /* WebSocketFrameDecoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebSocketFrameDecoder.swift; sourceTree = ""; }; + OBJ_696 /* WebSocketFrameEncoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebSocketFrameEncoder.swift; sourceTree = ""; }; + OBJ_697 /* WebSocketOpcode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebSocketOpcode.swift; sourceTree = ""; }; + OBJ_698 /* WebSocketProtocolErrorHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebSocketProtocolErrorHandler.swift; sourceTree = ""; }; + OBJ_699 /* WebSocketUpgrader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WebSocketUpgrader.swift; sourceTree = ""; }; + OBJ_70 /* QueryContainer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QueryContainer.swift; sourceTree = ""; }; + OBJ_701 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; name = Package.swift; path = "/Users/user/Development/CapCollectorServer/.build/checkouts/swift-nio/Package.swift"; sourceTree = ""; }; + OBJ_71 /* SingleValueGet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SingleValueGet.swift; sourceTree = ""; }; + OBJ_72 /* URLEncoded.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = URLEncoded.swift; sourceTree = ""; }; + OBJ_73 /* Deprecated.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Deprecated.swift; sourceTree = ""; }; + OBJ_746 /* Resources */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Resources; sourceTree = SOURCE_ROOT; }; + OBJ_747 /* Public */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Public; sourceTree = SOURCE_ROOT; }; + OBJ_748 /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; + OBJ_749 /* cloud.yml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = cloud.yml; sourceTree = ""; }; + OBJ_75 /* Abort.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Abort.swift; sourceTree = ""; }; + OBJ_750 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + OBJ_751 /* circle.yml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = circle.yml; sourceTree = ""; }; + OBJ_76 /* AbortError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AbortError.swift; sourceTree = ""; }; + OBJ_77 /* Error.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Error.swift; sourceTree = ""; }; + OBJ_79 /* Logger+LogError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Logger+LogError.swift"; sourceTree = ""; }; + OBJ_81 /* CORSMiddleware.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CORSMiddleware.swift; sourceTree = ""; }; + OBJ_82 /* DateMiddleware.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateMiddleware.swift; sourceTree = ""; }; + OBJ_83 /* ErrorMiddleware.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ErrorMiddleware.swift; sourceTree = ""; }; + OBJ_84 /* FileMiddleware.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileMiddleware.swift; sourceTree = ""; }; + OBJ_85 /* Middleware.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Middleware.swift; sourceTree = ""; }; + OBJ_86 /* MiddlewareConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MiddlewareConfig.swift; sourceTree = ""; }; + OBJ_88 /* HTTPMethod+String.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "HTTPMethod+String.swift"; sourceTree = ""; }; + OBJ_89 /* Request.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Request.swift; sourceTree = ""; }; + OBJ_9 /* boot.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = boot.swift; sourceTree = ""; }; + OBJ_90 /* RequestCodable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RequestCodable.swift; sourceTree = ""; }; + OBJ_92 /* ApplicationResponder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ApplicationResponder.swift; sourceTree = ""; }; + OBJ_93 /* BasicResponder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasicResponder.swift; sourceTree = ""; }; + OBJ_94 /* HTTPStatus.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HTTPStatus.swift; sourceTree = ""; }; + OBJ_95 /* Redirect.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Redirect.swift; sourceTree = ""; }; + OBJ_96 /* Responder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Responder.swift; sourceTree = ""; }; + OBJ_97 /* Response.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Response.swift; sourceTree = ""; }; + OBJ_98 /* ResponseCodable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ResponseCodable.swift; sourceTree = ""; }; + "Routing::Routing::Product" /* Routing.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Routing.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "SQLite.swift::SQLite::Product" /* SQLite.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = SQLite.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "SQLite.swift::SQLiteObjc::Product" /* SQLiteObjc.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = SQLiteObjc.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Service::Service::Product" /* Service.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Service.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "TemplateKit::TemplateKit::Product" /* TemplateKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = TemplateKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "URLEncodedForm::URLEncodedForm::Product" /* URLEncodedForm.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = URLEncodedForm.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Validation::Validation::Product" /* Validation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Validation.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "Vapor::Vapor::Product" /* Vapor.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Vapor.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "WebSocket::WebSocket::Product" /* WebSocket.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WebSocket.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio-ssl::CNIOOpenSSL::Product" /* CNIOOpenSSL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CNIOOpenSSL.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio-ssl::NIOOpenSSL::Product" /* NIOOpenSSL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = NIOOpenSSL.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CNIOAtomics.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CNIODarwin.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio::CNIOHTTPParser::Product" /* CNIOHTTPParser.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CNIOHTTPParser.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CNIOLinux.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CNIOSHA1.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio::CNIOZlib::Product" /* CNIOZlib.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CNIOZlib.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio::NIO::Product" /* NIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = NIO.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = NIOConcurrencyHelpers.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = NIOFoundationCompat.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio::NIOHTTP1::Product" /* NIOHTTP1.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = NIOHTTP1.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = NIOPriorityQueue.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio::NIOTLS::Product" /* NIOTLS.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = NIOTLS.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + "swift-nio::NIOWebSocket::Product" /* NIOWebSocket.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = NIOWebSocket.framework; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + OBJ_1020 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1021 /* NIO.framework in Frameworks */, + OBJ_1022 /* CNIOSHA1.framework in Frameworks */, + OBJ_1023 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1024 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1025 /* CNIOAtomics.framework in Frameworks */, + OBJ_1026 /* CNIODarwin.framework in Frameworks */, + OBJ_1027 /* CNIOLinux.framework in Frameworks */, + OBJ_1028 /* Debugging.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1042 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1049 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1055 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1064 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1072 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1081 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1091 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1098 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1106 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1114 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1120 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1152 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1153 /* Console.framework in Frameworks */, + OBJ_1154 /* Service.framework in Frameworks */, + OBJ_1155 /* Logging.framework in Frameworks */, + OBJ_1156 /* Core.framework in Frameworks */, + OBJ_1157 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_1158 /* COperatingSystem.framework in Frameworks */, + OBJ_1159 /* Bits.framework in Frameworks */, + OBJ_1160 /* Debugging.framework in Frameworks */, + OBJ_1161 /* Async.framework in Frameworks */, + OBJ_1162 /* NIO.framework in Frameworks */, + OBJ_1163 /* CNIOSHA1.framework in Frameworks */, + OBJ_1164 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1165 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1166 /* CNIOAtomics.framework in Frameworks */, + OBJ_1167 /* CNIODarwin.framework in Frameworks */, + OBJ_1168 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1217 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1218 /* Service.framework in Frameworks */, + OBJ_1219 /* Logging.framework in Frameworks */, + OBJ_1220 /* Core.framework in Frameworks */, + OBJ_1221 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_1222 /* COperatingSystem.framework in Frameworks */, + OBJ_1223 /* Bits.framework in Frameworks */, + OBJ_1224 /* Debugging.framework in Frameworks */, + OBJ_1225 /* Async.framework in Frameworks */, + OBJ_1226 /* NIO.framework in Frameworks */, + OBJ_1227 /* CNIOSHA1.framework in Frameworks */, + OBJ_1228 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1229 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1230 /* CNIOAtomics.framework in Frameworks */, + OBJ_1231 /* CNIODarwin.framework in Frameworks */, + OBJ_1232 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1283 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1284 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_1285 /* COperatingSystem.framework in Frameworks */, + OBJ_1286 /* Bits.framework in Frameworks */, + OBJ_1287 /* Debugging.framework in Frameworks */, + OBJ_1288 /* Async.framework in Frameworks */, + OBJ_1289 /* NIO.framework in Frameworks */, + OBJ_1290 /* CNIOSHA1.framework in Frameworks */, + OBJ_1291 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1292 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1293 /* CNIOAtomics.framework in Frameworks */, + OBJ_1294 /* CNIODarwin.framework in Frameworks */, + OBJ_1295 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1337 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1338 /* Core.framework in Frameworks */, + OBJ_1339 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_1340 /* COperatingSystem.framework in Frameworks */, + OBJ_1341 /* Async.framework in Frameworks */, + OBJ_1342 /* Random.framework in Frameworks */, + OBJ_1343 /* Bits.framework in Frameworks */, + OBJ_1344 /* NIO.framework in Frameworks */, + OBJ_1345 /* CNIOSHA1.framework in Frameworks */, + OBJ_1346 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1347 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1348 /* CNIOAtomics.framework in Frameworks */, + OBJ_1349 /* CNIODarwin.framework in Frameworks */, + OBJ_1350 /* CNIOLinux.framework in Frameworks */, + OBJ_1351 /* Debugging.framework in Frameworks */, + OBJ_1352 /* CCryptoOpenSSL.framework in Frameworks */, + OBJ_1353 /* CBcrypt.framework in Frameworks */, + OBJ_1354 /* CBase32.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1412 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1413 /* Service.framework in Frameworks */, + OBJ_1414 /* Core.framework in Frameworks */, + OBJ_1415 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_1416 /* COperatingSystem.framework in Frameworks */, + OBJ_1417 /* Bits.framework in Frameworks */, + OBJ_1418 /* Debugging.framework in Frameworks */, + OBJ_1419 /* Async.framework in Frameworks */, + OBJ_1420 /* NIO.framework in Frameworks */, + OBJ_1421 /* CNIOSHA1.framework in Frameworks */, + OBJ_1422 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1423 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1424 /* CNIOAtomics.framework in Frameworks */, + OBJ_1425 /* CNIODarwin.framework in Frameworks */, + OBJ_1426 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1454 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1485 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1486 /* NIOHTTP1.framework in Frameworks */, + OBJ_1487 /* CNIOZlib.framework in Frameworks */, + OBJ_1488 /* CNIOHTTPParser.framework in Frameworks */, + OBJ_1489 /* NIOOpenSSL.framework in Frameworks */, + OBJ_1490 /* NIOTLS.framework in Frameworks */, + OBJ_1491 /* CNIOOpenSSL.framework in Frameworks */, + OBJ_1492 /* Core.framework in Frameworks */, + OBJ_1493 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_1494 /* COperatingSystem.framework in Frameworks */, + OBJ_1495 /* Bits.framework in Frameworks */, + OBJ_1496 /* Debugging.framework in Frameworks */, + OBJ_1497 /* Async.framework in Frameworks */, + OBJ_1498 /* NIO.framework in Frameworks */, + OBJ_1499 /* CNIOSHA1.framework in Frameworks */, + OBJ_1500 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1501 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1502 /* CNIOAtomics.framework in Frameworks */, + OBJ_1503 /* CNIODarwin.framework in Frameworks */, + OBJ_1504 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1538 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1539 /* Core.framework in Frameworks */, + OBJ_1540 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_1541 /* COperatingSystem.framework in Frameworks */, + OBJ_1542 /* Bits.framework in Frameworks */, + OBJ_1543 /* Debugging.framework in Frameworks */, + OBJ_1544 /* Async.framework in Frameworks */, + OBJ_1545 /* NIO.framework in Frameworks */, + OBJ_1546 /* CNIOSHA1.framework in Frameworks */, + OBJ_1547 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1548 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1549 /* CNIOAtomics.framework in Frameworks */, + OBJ_1550 /* CNIODarwin.framework in Frameworks */, + OBJ_1551 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1577 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1578 /* Core.framework in Frameworks */, + OBJ_1579 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_1580 /* COperatingSystem.framework in Frameworks */, + OBJ_1581 /* Async.framework in Frameworks */, + OBJ_1582 /* Bits.framework in Frameworks */, + OBJ_1583 /* NIO.framework in Frameworks */, + OBJ_1584 /* CNIOSHA1.framework in Frameworks */, + OBJ_1585 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1586 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1587 /* CNIOAtomics.framework in Frameworks */, + OBJ_1588 /* CNIODarwin.framework in Frameworks */, + OBJ_1589 /* CNIOLinux.framework in Frameworks */, + OBJ_1590 /* Debugging.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1669 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1670 /* CNIOSHA1.framework in Frameworks */, + OBJ_1671 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1672 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1673 /* CNIOAtomics.framework in Frameworks */, + OBJ_1674 /* CNIODarwin.framework in Frameworks */, + OBJ_1675 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1688 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1689 /* CNIOAtomics.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1696 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1697 /* NIO.framework in Frameworks */, + OBJ_1698 /* CNIOSHA1.framework in Frameworks */, + OBJ_1699 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1700 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1701 /* CNIOAtomics.framework in Frameworks */, + OBJ_1702 /* CNIODarwin.framework in Frameworks */, + OBJ_1703 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1724 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1725 /* CNIOZlib.framework in Frameworks */, + OBJ_1726 /* CNIOHTTPParser.framework in Frameworks */, + OBJ_1727 /* NIO.framework in Frameworks */, + OBJ_1728 /* CNIOSHA1.framework in Frameworks */, + OBJ_1729 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1730 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1731 /* CNIOAtomics.framework in Frameworks */, + OBJ_1732 /* CNIODarwin.framework in Frameworks */, + OBJ_1733 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1764 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1765 /* NIOTLS.framework in Frameworks */, + OBJ_1766 /* NIO.framework in Frameworks */, + OBJ_1767 /* CNIOSHA1.framework in Frameworks */, + OBJ_1768 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1769 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1770 /* CNIOAtomics.framework in Frameworks */, + OBJ_1771 /* CNIODarwin.framework in Frameworks */, + OBJ_1772 /* CNIOLinux.framework in Frameworks */, + OBJ_1773 /* CNIOOpenSSL.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1789 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1797 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1798 /* NIO.framework in Frameworks */, + OBJ_1799 /* CNIOSHA1.framework in Frameworks */, + OBJ_1800 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1801 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1802 /* CNIOAtomics.framework in Frameworks */, + OBJ_1803 /* CNIODarwin.framework in Frameworks */, + OBJ_1804 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1825 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1826 /* NIOHTTP1.framework in Frameworks */, + OBJ_1827 /* CNIOZlib.framework in Frameworks */, + OBJ_1828 /* CNIOHTTPParser.framework in Frameworks */, + OBJ_1829 /* NIO.framework in Frameworks */, + OBJ_1830 /* CNIOSHA1.framework in Frameworks */, + OBJ_1831 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1832 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1833 /* CNIOAtomics.framework in Frameworks */, + OBJ_1834 /* CNIODarwin.framework in Frameworks */, + OBJ_1835 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1854 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1855 /* Bits.framework in Frameworks */, + OBJ_1856 /* NIO.framework in Frameworks */, + OBJ_1857 /* CNIOSHA1.framework in Frameworks */, + OBJ_1858 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1859 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1860 /* CNIOAtomics.framework in Frameworks */, + OBJ_1861 /* CNIODarwin.framework in Frameworks */, + OBJ_1862 /* CNIOLinux.framework in Frameworks */, + OBJ_1863 /* Debugging.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1889 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1890 /* Service.framework in Frameworks */, + OBJ_1891 /* Core.framework in Frameworks */, + OBJ_1892 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_1893 /* COperatingSystem.framework in Frameworks */, + OBJ_1894 /* Async.framework in Frameworks */, + OBJ_1895 /* Bits.framework in Frameworks */, + OBJ_1896 /* NIO.framework in Frameworks */, + OBJ_1897 /* CNIOSHA1.framework in Frameworks */, + OBJ_1898 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1899 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1900 /* CNIOAtomics.framework in Frameworks */, + OBJ_1901 /* CNIODarwin.framework in Frameworks */, + OBJ_1902 /* CNIOLinux.framework in Frameworks */, + OBJ_1903 /* Debugging.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1930 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1931 /* App.framework in Frameworks */, + OBJ_1932 /* SQLite.framework in Frameworks */, + OBJ_1933 /* SQLiteObjc.framework in Frameworks */, + OBJ_1934 /* Vapor.framework in Frameworks */, + OBJ_1935 /* WebSocket.framework in Frameworks */, + OBJ_1936 /* NIOWebSocket.framework in Frameworks */, + OBJ_1937 /* Validation.framework in Frameworks */, + OBJ_1938 /* URLEncodedForm.framework in Frameworks */, + OBJ_1939 /* TemplateKit.framework in Frameworks */, + OBJ_1940 /* Routing.framework in Frameworks */, + OBJ_1941 /* Multipart.framework in Frameworks */, + OBJ_1942 /* HTTP.framework in Frameworks */, + OBJ_1943 /* NIOHTTP1.framework in Frameworks */, + OBJ_1944 /* CNIOZlib.framework in Frameworks */, + OBJ_1945 /* CNIOHTTPParser.framework in Frameworks */, + OBJ_1946 /* NIOOpenSSL.framework in Frameworks */, + OBJ_1947 /* NIOTLS.framework in Frameworks */, + OBJ_1948 /* CNIOOpenSSL.framework in Frameworks */, + OBJ_1949 /* DatabaseKit.framework in Frameworks */, + OBJ_1950 /* Crypto.framework in Frameworks */, + OBJ_1951 /* Random.framework in Frameworks */, + OBJ_1952 /* CCryptoOpenSSL.framework in Frameworks */, + OBJ_1953 /* CBcrypt.framework in Frameworks */, + OBJ_1954 /* CBase32.framework in Frameworks */, + OBJ_1955 /* Command.framework in Frameworks */, + OBJ_1956 /* Console.framework in Frameworks */, + OBJ_1957 /* Service.framework in Frameworks */, + OBJ_1958 /* Logging.framework in Frameworks */, + OBJ_1959 /* Core.framework in Frameworks */, + OBJ_1960 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_1961 /* COperatingSystem.framework in Frameworks */, + OBJ_1962 /* Bits.framework in Frameworks */, + OBJ_1963 /* Debugging.framework in Frameworks */, + OBJ_1964 /* Async.framework in Frameworks */, + OBJ_1965 /* NIO.framework in Frameworks */, + OBJ_1966 /* CNIOSHA1.framework in Frameworks */, + OBJ_1967 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_1968 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_1969 /* CNIOAtomics.framework in Frameworks */, + OBJ_1970 /* CNIODarwin.framework in Frameworks */, + OBJ_1971 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2039 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2040 /* SQLiteObjc.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2055 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2080 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2081 /* Core.framework in Frameworks */, + OBJ_2082 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_2083 /* COperatingSystem.framework in Frameworks */, + OBJ_2084 /* Bits.framework in Frameworks */, + OBJ_2085 /* Debugging.framework in Frameworks */, + OBJ_2086 /* Async.framework in Frameworks */, + OBJ_2087 /* NIO.framework in Frameworks */, + OBJ_2088 /* CNIOSHA1.framework in Frameworks */, + OBJ_2089 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_2090 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_2091 /* CNIOAtomics.framework in Frameworks */, + OBJ_2092 /* CNIODarwin.framework in Frameworks */, + OBJ_2093 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2158 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2159 /* Service.framework in Frameworks */, + OBJ_2160 /* Core.framework in Frameworks */, + OBJ_2161 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_2162 /* COperatingSystem.framework in Frameworks */, + OBJ_2163 /* Bits.framework in Frameworks */, + OBJ_2164 /* Debugging.framework in Frameworks */, + OBJ_2165 /* Async.framework in Frameworks */, + OBJ_2166 /* NIO.framework in Frameworks */, + OBJ_2167 /* CNIOSHA1.framework in Frameworks */, + OBJ_2168 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_2169 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_2170 /* CNIOAtomics.framework in Frameworks */, + OBJ_2171 /* CNIODarwin.framework in Frameworks */, + OBJ_2172 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2205 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2206 /* Core.framework in Frameworks */, + OBJ_2207 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_2208 /* COperatingSystem.framework in Frameworks */, + OBJ_2209 /* Bits.framework in Frameworks */, + OBJ_2210 /* Debugging.framework in Frameworks */, + OBJ_2211 /* Async.framework in Frameworks */, + OBJ_2212 /* NIO.framework in Frameworks */, + OBJ_2213 /* CNIOSHA1.framework in Frameworks */, + OBJ_2214 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_2215 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_2216 /* CNIOAtomics.framework in Frameworks */, + OBJ_2217 /* CNIODarwin.framework in Frameworks */, + OBJ_2218 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2260 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2261 /* Core.framework in Frameworks */, + OBJ_2262 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_2263 /* COperatingSystem.framework in Frameworks */, + OBJ_2264 /* Bits.framework in Frameworks */, + OBJ_2265 /* Debugging.framework in Frameworks */, + OBJ_2266 /* Async.framework in Frameworks */, + OBJ_2267 /* NIO.framework in Frameworks */, + OBJ_2268 /* CNIOSHA1.framework in Frameworks */, + OBJ_2269 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_2270 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_2271 /* CNIOAtomics.framework in Frameworks */, + OBJ_2272 /* CNIODarwin.framework in Frameworks */, + OBJ_2273 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2372 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2373 /* WebSocket.framework in Frameworks */, + OBJ_2374 /* NIOWebSocket.framework in Frameworks */, + OBJ_2375 /* Validation.framework in Frameworks */, + OBJ_2376 /* URLEncodedForm.framework in Frameworks */, + OBJ_2377 /* TemplateKit.framework in Frameworks */, + OBJ_2378 /* Routing.framework in Frameworks */, + OBJ_2379 /* Multipart.framework in Frameworks */, + OBJ_2380 /* HTTP.framework in Frameworks */, + OBJ_2381 /* NIOHTTP1.framework in Frameworks */, + OBJ_2382 /* CNIOZlib.framework in Frameworks */, + OBJ_2383 /* CNIOHTTPParser.framework in Frameworks */, + OBJ_2384 /* NIOOpenSSL.framework in Frameworks */, + OBJ_2385 /* NIOTLS.framework in Frameworks */, + OBJ_2386 /* CNIOOpenSSL.framework in Frameworks */, + OBJ_2387 /* DatabaseKit.framework in Frameworks */, + OBJ_2388 /* Crypto.framework in Frameworks */, + OBJ_2389 /* Random.framework in Frameworks */, + OBJ_2390 /* CCryptoOpenSSL.framework in Frameworks */, + OBJ_2391 /* CBcrypt.framework in Frameworks */, + OBJ_2392 /* CBase32.framework in Frameworks */, + OBJ_2393 /* Command.framework in Frameworks */, + OBJ_2394 /* Console.framework in Frameworks */, + OBJ_2395 /* Service.framework in Frameworks */, + OBJ_2396 /* Logging.framework in Frameworks */, + OBJ_2397 /* Core.framework in Frameworks */, + OBJ_2398 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_2399 /* COperatingSystem.framework in Frameworks */, + OBJ_2400 /* Bits.framework in Frameworks */, + OBJ_2401 /* Debugging.framework in Frameworks */, + OBJ_2402 /* Async.framework in Frameworks */, + OBJ_2403 /* NIO.framework in Frameworks */, + OBJ_2404 /* CNIOSHA1.framework in Frameworks */, + OBJ_2405 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_2406 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_2407 /* CNIOAtomics.framework in Frameworks */, + OBJ_2408 /* CNIODarwin.framework in Frameworks */, + OBJ_2409 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2463 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2464 /* NIOWebSocket.framework in Frameworks */, + OBJ_2465 /* HTTP.framework in Frameworks */, + OBJ_2466 /* NIOHTTP1.framework in Frameworks */, + OBJ_2467 /* CNIOZlib.framework in Frameworks */, + OBJ_2468 /* CNIOHTTPParser.framework in Frameworks */, + OBJ_2469 /* NIOOpenSSL.framework in Frameworks */, + OBJ_2470 /* NIOTLS.framework in Frameworks */, + OBJ_2471 /* CNIOOpenSSL.framework in Frameworks */, + OBJ_2472 /* Crypto.framework in Frameworks */, + OBJ_2473 /* Random.framework in Frameworks */, + OBJ_2474 /* CCryptoOpenSSL.framework in Frameworks */, + OBJ_2475 /* CBcrypt.framework in Frameworks */, + OBJ_2476 /* CBase32.framework in Frameworks */, + OBJ_2477 /* Core.framework in Frameworks */, + OBJ_2478 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_2479 /* COperatingSystem.framework in Frameworks */, + OBJ_2480 /* Bits.framework in Frameworks */, + OBJ_2481 /* Debugging.framework in Frameworks */, + OBJ_2482 /* Async.framework in Frameworks */, + OBJ_2483 /* NIO.framework in Frameworks */, + OBJ_2484 /* CNIOSHA1.framework in Frameworks */, + OBJ_2485 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_2486 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_2487 /* CNIOAtomics.framework in Frameworks */, + OBJ_2488 /* CNIODarwin.framework in Frameworks */, + OBJ_2489 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_760 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_761 /* SQLite.framework in Frameworks */, + OBJ_762 /* SQLiteObjc.framework in Frameworks */, + OBJ_763 /* Vapor.framework in Frameworks */, + OBJ_764 /* WebSocket.framework in Frameworks */, + OBJ_765 /* NIOWebSocket.framework in Frameworks */, + OBJ_766 /* Validation.framework in Frameworks */, + OBJ_767 /* URLEncodedForm.framework in Frameworks */, + OBJ_768 /* TemplateKit.framework in Frameworks */, + OBJ_769 /* Routing.framework in Frameworks */, + OBJ_770 /* Multipart.framework in Frameworks */, + OBJ_771 /* HTTP.framework in Frameworks */, + OBJ_772 /* NIOHTTP1.framework in Frameworks */, + OBJ_773 /* CNIOZlib.framework in Frameworks */, + OBJ_774 /* CNIOHTTPParser.framework in Frameworks */, + OBJ_775 /* NIOOpenSSL.framework in Frameworks */, + OBJ_776 /* NIOTLS.framework in Frameworks */, + OBJ_777 /* CNIOOpenSSL.framework in Frameworks */, + OBJ_778 /* DatabaseKit.framework in Frameworks */, + OBJ_779 /* Crypto.framework in Frameworks */, + OBJ_780 /* Random.framework in Frameworks */, + OBJ_781 /* CCryptoOpenSSL.framework in Frameworks */, + OBJ_782 /* CBcrypt.framework in Frameworks */, + OBJ_783 /* CBase32.framework in Frameworks */, + OBJ_784 /* Command.framework in Frameworks */, + OBJ_785 /* Console.framework in Frameworks */, + OBJ_786 /* Service.framework in Frameworks */, + OBJ_787 /* Logging.framework in Frameworks */, + OBJ_788 /* Core.framework in Frameworks */, + OBJ_789 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_790 /* COperatingSystem.framework in Frameworks */, + OBJ_791 /* Bits.framework in Frameworks */, + OBJ_792 /* Debugging.framework in Frameworks */, + OBJ_793 /* Async.framework in Frameworks */, + OBJ_794 /* NIO.framework in Frameworks */, + OBJ_795 /* CNIOSHA1.framework in Frameworks */, + OBJ_796 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_797 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_798 /* CNIOAtomics.framework in Frameworks */, + OBJ_799 /* CNIODarwin.framework in Frameworks */, + OBJ_800 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_887 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_888 /* App.framework in Frameworks */, + OBJ_889 /* SQLite.framework in Frameworks */, + OBJ_890 /* SQLiteObjc.framework in Frameworks */, + OBJ_891 /* Vapor.framework in Frameworks */, + OBJ_892 /* WebSocket.framework in Frameworks */, + OBJ_893 /* NIOWebSocket.framework in Frameworks */, + OBJ_894 /* Validation.framework in Frameworks */, + OBJ_895 /* URLEncodedForm.framework in Frameworks */, + OBJ_896 /* TemplateKit.framework in Frameworks */, + OBJ_897 /* Routing.framework in Frameworks */, + OBJ_898 /* Multipart.framework in Frameworks */, + OBJ_899 /* HTTP.framework in Frameworks */, + OBJ_900 /* NIOHTTP1.framework in Frameworks */, + OBJ_901 /* CNIOZlib.framework in Frameworks */, + OBJ_902 /* CNIOHTTPParser.framework in Frameworks */, + OBJ_903 /* NIOOpenSSL.framework in Frameworks */, + OBJ_904 /* NIOTLS.framework in Frameworks */, + OBJ_905 /* CNIOOpenSSL.framework in Frameworks */, + OBJ_906 /* DatabaseKit.framework in Frameworks */, + OBJ_907 /* Crypto.framework in Frameworks */, + OBJ_908 /* Random.framework in Frameworks */, + OBJ_909 /* CCryptoOpenSSL.framework in Frameworks */, + OBJ_910 /* CBcrypt.framework in Frameworks */, + OBJ_911 /* CBase32.framework in Frameworks */, + OBJ_912 /* Command.framework in Frameworks */, + OBJ_913 /* Console.framework in Frameworks */, + OBJ_914 /* Service.framework in Frameworks */, + OBJ_915 /* Logging.framework in Frameworks */, + OBJ_916 /* Core.framework in Frameworks */, + OBJ_917 /* NIOFoundationCompat.framework in Frameworks */, + OBJ_918 /* COperatingSystem.framework in Frameworks */, + OBJ_919 /* Bits.framework in Frameworks */, + OBJ_920 /* Debugging.framework in Frameworks */, + OBJ_921 /* Async.framework in Frameworks */, + OBJ_922 /* NIO.framework in Frameworks */, + OBJ_923 /* CNIOSHA1.framework in Frameworks */, + OBJ_924 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_925 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_926 /* CNIOAtomics.framework in Frameworks */, + OBJ_927 /* CNIODarwin.framework in Frameworks */, + OBJ_928 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_989 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 0; + files = ( + OBJ_990 /* NIO.framework in Frameworks */, + OBJ_991 /* CNIOSHA1.framework in Frameworks */, + OBJ_992 /* NIOPriorityQueue.framework in Frameworks */, + OBJ_993 /* NIOConcurrencyHelpers.framework in Frameworks */, + OBJ_994 /* CNIOAtomics.framework in Frameworks */, + OBJ_995 /* CNIODarwin.framework in Frameworks */, + OBJ_996 /* CNIOLinux.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + OBJ_110 /* Server */ = { + isa = PBXGroup; + children = ( + OBJ_111 /* NIOServer.swift */, + OBJ_112 /* NIOServerConfig.swift */, + OBJ_113 /* RunningServer.swift */, + OBJ_114 /* Server.swift */, + ); + path = Server; + sourceTree = ""; + }; + OBJ_115 /* Services */ = { + isa = PBXGroup; + children = ( + OBJ_116 /* Config+Default.swift */, + OBJ_117 /* Services+Default.swift */, + OBJ_118 /* VaporProvider.swift */, + ); + path = Services; + sourceTree = ""; + }; + OBJ_119 /* Sessions */ = { + isa = PBXGroup; + children = ( + OBJ_120 /* KeyedCacheSessions.swift */, + OBJ_121 /* MemorySessions.swift */, + OBJ_122 /* Request+Session.swift */, + OBJ_123 /* Session.swift */, + OBJ_124 /* SessionCache.swift */, + OBJ_125 /* SessionData.swift */, + OBJ_126 /* Sessions.swift */, + OBJ_127 /* SessionsConfig.swift */, + OBJ_128 /* SessionsMiddleware.swift */, + ); + path = Sessions; + sourceTree = ""; + }; + OBJ_12 /* Run */ = { + isa = PBXGroup; + children = ( + OBJ_13 /* main.swift */, + ); + name = Run; + path = Sources/Run; + sourceTree = SOURCE_ROOT; + }; + OBJ_129 /* Utilities */ = { + isa = PBXGroup; + children = ( + OBJ_130 /* AnyResponse.swift */, + OBJ_131 /* Exports.swift */, + OBJ_132 /* FileIO.swift */, + OBJ_133 /* Thread.swift */, + ); + path = Utilities; + sourceTree = ""; + }; + OBJ_134 /* View */ = { + isa = PBXGroup; + children = ( + OBJ_135 /* Vapor+View.swift */, + ); + path = View; + sourceTree = ""; + }; + OBJ_136 /* WebSocket */ = { + isa = PBXGroup; + children = ( + OBJ_137 /* NIOWebSocketClient.swift */, + OBJ_138 /* NIOWebSocketServer.swift */, + OBJ_139 /* WebSocketClient.swift */, + OBJ_140 /* WebSocketResponder.swift */, + OBJ_141 /* WebSocketServer.swift */, + ); + path = WebSocket; + sourceTree = ""; + }; + OBJ_14 /* Tests */ = { + isa = PBXGroup; + children = ( + OBJ_15 /* AppTests */, + ); + name = Tests; + sourceTree = SOURCE_ROOT; + }; + OBJ_143 /* WebSocket 1.1.2 */ = { + isa = PBXGroup; + children = ( + OBJ_144 /* WebSocket */, + OBJ_151 /* Package.swift */, + ); + name = "WebSocket 1.1.2"; + sourceTree = SOURCE_ROOT; + }; + OBJ_144 /* WebSocket */ = { + isa = PBXGroup; + children = ( + OBJ_145 /* Exports.swift */, + OBJ_146 /* WebSocket+Client.swift */, + OBJ_147 /* WebSocket+Server.swift */, + OBJ_148 /* WebSocket.swift */, + OBJ_149 /* WebSocketFrameSequence.swift */, + OBJ_150 /* WebSocketHandler.swift */, + ); + name = WebSocket; + path = .build/checkouts/websocket/Sources/WebSocket; + sourceTree = SOURCE_ROOT; + }; + OBJ_15 /* AppTests */ = { + isa = PBXGroup; + children = ( + OBJ_16 /* AppTests.swift */, + ); + name = AppTests; + path = Tests/AppTests; + sourceTree = SOURCE_ROOT; + }; + OBJ_152 /* Validation 2.1.1 */ = { + isa = PBXGroup; + children = ( + OBJ_153 /* Validation */, + OBJ_173 /* Package.swift */, + ); + name = "Validation 2.1.1"; + sourceTree = SOURCE_ROOT; + }; + OBJ_153 /* Validation */ = { + isa = PBXGroup; + children = ( + OBJ_154 /* Exports.swift */, + OBJ_155 /* Validatable.swift */, + OBJ_156 /* ValidationError.swift */, + OBJ_157 /* Validations.swift */, + OBJ_158 /* Validator.swift */, + OBJ_159 /* ValidatorType.swift */, + OBJ_160 /* Validators */, + ); + name = Validation; + path = .build/checkouts/validation/Sources/Validation; + sourceTree = SOURCE_ROOT; + }; + OBJ_160 /* Validators */ = { + isa = PBXGroup; + children = ( + OBJ_161 /* AndValidator.swift */, + OBJ_162 /* CharacterSetValidator.swift */, + OBJ_163 /* CountValidator.swift */, + OBJ_164 /* EmailValidator.swift */, + OBJ_165 /* EmptyValidator.swift */, + OBJ_166 /* InValidator.swift */, + OBJ_167 /* NilIgnoringValidator.swift */, + OBJ_168 /* NilValidator.swift */, + OBJ_169 /* NotValidator.swift */, + OBJ_170 /* OrValidator.swift */, + OBJ_171 /* RangeValidator.swift */, + OBJ_172 /* URLValidator.swift */, + ); + path = Validators; + sourceTree = ""; + }; + OBJ_17 /* Dependencies */ = { + isa = PBXGroup; + children = ( + OBJ_18 /* SQLite.swift 0.12.2 */, + OBJ_50 /* Vapor 3.3.3 */, + OBJ_143 /* WebSocket 1.1.2 */, + OBJ_152 /* Validation 2.1.1 */, + OBJ_174 /* URLEncodedForm 1.1.0 */, + OBJ_188 /* TemplateKit 1.5.0 */, + OBJ_237 /* Routing 3.1.0 */, + OBJ_256 /* Multipart 3.1.2 */, + OBJ_267 /* HTTP 3.3.2 */, + OBJ_302 /* swift-nio-ssl 1.4.0 */, + OBJ_329 /* DatabaseKit 1.3.3 */, + OBJ_369 /* Crypto 3.3.3 */, + OBJ_417 /* Console 3.1.1 */, + OBJ_482 /* Service 1.0.2 */, + OBJ_511 /* Core 3.10.0 */, + OBJ_575 /* swift-nio 1.14.2 */, + ); + name = Dependencies; + sourceTree = ""; + }; + OBJ_174 /* URLEncodedForm 1.1.0 */ = { + isa = PBXGroup; + children = ( + OBJ_175 /* URLEncodedForm */, + OBJ_187 /* Package.swift */, + ); + name = "URLEncodedForm 1.1.0"; + sourceTree = SOURCE_ROOT; + }; + OBJ_175 /* URLEncodedForm */ = { + isa = PBXGroup; + children = ( + OBJ_176 /* Codable */, + OBJ_179 /* Data */, + OBJ_184 /* Utilities */, + ); + name = URLEncodedForm; + path = ".build/checkouts/url-encoded-form/Sources/URLEncodedForm"; + sourceTree = SOURCE_ROOT; + }; + OBJ_176 /* Codable */ = { + isa = PBXGroup; + children = ( + OBJ_177 /* URLEncodedFormDecoder.swift */, + OBJ_178 /* URLEncodedFormEncoder.swift */, + ); + path = Codable; + sourceTree = ""; + }; + OBJ_179 /* Data */ = { + isa = PBXGroup; + children = ( + OBJ_180 /* URLEncodedFormData.swift */, + OBJ_181 /* URLEncodedFormDataConvertible.swift */, + OBJ_182 /* URLEncodedFormParser.swift */, + OBJ_183 /* URLEncodedFormSerializer.swift */, + ); + path = Data; + sourceTree = ""; + }; + OBJ_18 /* SQLite.swift 0.12.2 */ = { + isa = PBXGroup; + children = ( + OBJ_19 /* SQLite */, + OBJ_45 /* SQLiteObjc */, + OBJ_49 /* Package.swift */, + ); + name = "SQLite.swift 0.12.2"; + sourceTree = SOURCE_ROOT; + }; + OBJ_184 /* Utilities */ = { + isa = PBXGroup; + children = ( + OBJ_185 /* Exports.swift */, + OBJ_186 /* URLEncodedFormError.swift */, + ); + path = Utilities; + sourceTree = ""; + }; + OBJ_188 /* TemplateKit 1.5.0 */ = { + isa = PBXGroup; + children = ( + OBJ_189 /* TemplateKit */, + OBJ_236 /* Package.swift */, + ); + name = "TemplateKit 1.5.0"; + sourceTree = SOURCE_ROOT; + }; + OBJ_189 /* TemplateKit */ = { + isa = PBXGroup; + children = ( + OBJ_190 /* AST */, + OBJ_204 /* Data */, + OBJ_209 /* Deprecated.swift */, + OBJ_210 /* Pipeline */, + OBJ_217 /* Tag */, + OBJ_230 /* Utilities */, + OBJ_234 /* View.swift */, + OBJ_235 /* ViewRenderer.swift */, + ); + name = TemplateKit; + path = ".build/checkouts/template-kit/Sources/TemplateKit"; + sourceTree = SOURCE_ROOT; + }; + OBJ_19 /* SQLite */ = { + isa = PBXGroup; + children = ( + OBJ_20 /* Core */, + OBJ_26 /* Extensions */, + OBJ_31 /* Foundation.swift */, + OBJ_32 /* Helpers.swift */, + OBJ_33 /* Typed */, + ); + name = SQLite; + path = .build/checkouts/SQLite.swift/Sources/SQLite; + sourceTree = SOURCE_ROOT; + }; + OBJ_190 /* AST */ = { + isa = PBXGroup; + children = ( + OBJ_191 /* TemplateConditional.swift */, + OBJ_192 /* TemplateConstant.swift */, + OBJ_193 /* TemplateCustom.swift */, + OBJ_194 /* TemplateDataContext.swift */, + OBJ_195 /* TemplateEmbed.swift */, + OBJ_196 /* TemplateExpression.swift */, + OBJ_197 /* TemplateIdentifier.swift */, + OBJ_198 /* TemplateIterator.swift */, + OBJ_199 /* TemplateRaw.swift */, + OBJ_200 /* TemplateSource.swift */, + OBJ_201 /* TemplateSyntax.swift */, + OBJ_202 /* TemplateSyntaxType.swift */, + OBJ_203 /* TemplateTag.swift */, + ); + path = AST; + sourceTree = ""; + }; + OBJ_20 /* Core */ = { + isa = PBXGroup; + children = ( + OBJ_21 /* Blob.swift */, + OBJ_22 /* Connection.swift */, + OBJ_23 /* Errors.swift */, + OBJ_24 /* Statement.swift */, + OBJ_25 /* Value.swift */, + ); + path = Core; + sourceTree = ""; + }; + OBJ_204 /* Data */ = { + isa = PBXGroup; + children = ( + OBJ_205 /* TemplateData.swift */, + OBJ_206 /* TemplateDataEncoder.swift */, + OBJ_207 /* TemplateDataRepresentable.swift */, + OBJ_208 /* TemplateDataStorage.swift */, + ); + path = Data; + sourceTree = ""; + }; + OBJ_210 /* Pipeline */ = { + isa = PBXGroup; + children = ( + OBJ_211 /* ASTCache.swift */, + OBJ_212 /* PlaintextRenderer.swift */, + OBJ_213 /* TemplateByteScanner.swift */, + OBJ_214 /* TemplateParser.swift */, + OBJ_215 /* TemplateRenderer.swift */, + OBJ_216 /* TemplateSerializer.swift */, + ); + path = Pipeline; + sourceTree = ""; + }; + OBJ_217 /* Tag */ = { + isa = PBXGroup; + children = ( + OBJ_218 /* Capitalize.swift */, + OBJ_219 /* Comment.swift */, + OBJ_220 /* Contains.swift */, + OBJ_221 /* Count.swift */, + OBJ_222 /* DateFormat.swift */, + OBJ_223 /* Lowercase.swift */, + OBJ_224 /* Print.swift */, + OBJ_225 /* Raw.swift */, + OBJ_226 /* TagContext.swift */, + OBJ_227 /* TagRenderer.swift */, + OBJ_228 /* Uppercase.swift */, + OBJ_229 /* Var.swift */, + ); + path = Tag; + sourceTree = ""; + }; + OBJ_230 /* Utilities */ = { + isa = PBXGroup; + children = ( + OBJ_231 /* Exports.swift */, + OBJ_232 /* HTMLEscape.swift */, + OBJ_233 /* TemplateError.swift */, + ); + path = Utilities; + sourceTree = ""; + }; + OBJ_237 /* Routing 3.1.0 */ = { + isa = PBXGroup; + children = ( + OBJ_238 /* Routing */, + OBJ_255 /* Package.swift */, + ); + name = "Routing 3.1.0"; + sourceTree = SOURCE_ROOT; + }; + OBJ_238 /* Routing */ = { + isa = PBXGroup; + children = ( + OBJ_239 /* Parameter */, + OBJ_243 /* Register */, + OBJ_247 /* Routing */, + OBJ_251 /* Utilities */, + ); + name = Routing; + path = .build/checkouts/routing/Sources/Routing; + sourceTree = SOURCE_ROOT; + }; + OBJ_239 /* Parameter */ = { + isa = PBXGroup; + children = ( + OBJ_240 /* Parameter.swift */, + OBJ_241 /* ParameterValue.swift */, + OBJ_242 /* Parameters.swift */, + ); + path = Parameter; + sourceTree = ""; + }; + OBJ_243 /* Register */ = { + isa = PBXGroup; + children = ( + OBJ_244 /* PathComponent.swift */, + OBJ_245 /* Route.swift */, + OBJ_246 /* RouterOption.swift */, + ); + path = Register; + sourceTree = ""; + }; + OBJ_247 /* Routing */ = { + isa = PBXGroup; + children = ( + OBJ_248 /* RoutableComponent.swift */, + OBJ_249 /* RouterNode.swift */, + OBJ_250 /* TrieRouter.swift */, + ); + path = Routing; + sourceTree = ""; + }; + OBJ_251 /* Utilities */ = { + isa = PBXGroup; + children = ( + OBJ_252 /* Deprecated.swift */, + OBJ_253 /* Exports.swift */, + OBJ_254 /* RoutingError.swift */, + ); + path = Utilities; + sourceTree = ""; + }; + OBJ_256 /* Multipart 3.1.2 */ = { + isa = PBXGroup; + children = ( + OBJ_257 /* Multipart */, + OBJ_266 /* Package.swift */, + ); + name = "Multipart 3.1.2"; + sourceTree = SOURCE_ROOT; + }; + OBJ_257 /* Multipart */ = { + isa = PBXGroup; + children = ( + OBJ_258 /* Exports.swift */, + OBJ_259 /* FormDataDecoder.swift */, + OBJ_260 /* FormDataEncoder.swift */, + OBJ_261 /* MultipartError.swift */, + OBJ_262 /* MultipartParser.swift */, + OBJ_263 /* MultipartPart.swift */, + OBJ_264 /* MultipartPartConvertible.swift */, + OBJ_265 /* MultipartSerializer.swift */, + ); + name = Multipart; + path = .build/checkouts/multipart/Sources/Multipart; + sourceTree = SOURCE_ROOT; + }; + OBJ_26 /* Extensions */ = { + isa = PBXGroup; + children = ( + OBJ_27 /* Cipher.swift */, + OBJ_28 /* FTS4.swift */, + OBJ_29 /* FTS5.swift */, + OBJ_30 /* RTree.swift */, + ); + path = Extensions; + sourceTree = ""; + }; + OBJ_267 /* HTTP 3.3.2 */ = { + isa = PBXGroup; + children = ( + OBJ_268 /* HTTP */, + OBJ_301 /* Package.swift */, + ); + name = "HTTP 3.3.2"; + sourceTree = SOURCE_ROOT; + }; + OBJ_268 /* HTTP */ = { + isa = PBXGroup; + children = ( + OBJ_269 /* Body */, + OBJ_274 /* Codable */, + OBJ_276 /* Cookies */, + OBJ_279 /* Exports.swift */, + OBJ_280 /* Message */, + OBJ_289 /* Responder */, + OBJ_295 /* Utilities */, + ); + name = HTTP; + path = .build/checkouts/http/Sources/HTTP; + sourceTree = SOURCE_ROOT; + }; + OBJ_269 /* Body */ = { + isa = PBXGroup; + children = ( + OBJ_270 /* HTTPBody.swift */, + OBJ_271 /* HTTPBodyRepresentable.swift */, + OBJ_272 /* HTTPBodyStorage.swift */, + OBJ_273 /* HTTPChunkedStream.swift */, + ); + path = Body; + sourceTree = ""; + }; + OBJ_274 /* Codable */ = { + isa = PBXGroup; + children = ( + OBJ_275 /* HTTPMessageCoder.swift */, + ); + path = Codable; + sourceTree = ""; + }; + OBJ_276 /* Cookies */ = { + isa = PBXGroup; + children = ( + OBJ_277 /* HTTPCookieValue.swift */, + OBJ_278 /* HTTPCookies.swift */, + ); + path = Cookies; + sourceTree = ""; + }; + OBJ_280 /* Message */ = { + isa = PBXGroup; + children = ( + OBJ_281 /* Forwarded.swift */, + OBJ_282 /* HTTPHeaderName.swift */, + OBJ_283 /* HTTPHeaders.swift */, + OBJ_284 /* HTTPMessage.swift */, + OBJ_285 /* HTTPRequest.swift */, + OBJ_286 /* HTTPResponse.swift */, + OBJ_287 /* MediaTypePreference.swift */, + OBJ_288 /* URL+HTTP.swift */, + ); + path = Message; + sourceTree = ""; + }; + OBJ_289 /* Responder */ = { + isa = PBXGroup; + children = ( + OBJ_290 /* HTTPClient.swift */, + OBJ_291 /* HTTPClientProtocolUpgrader.swift */, + OBJ_292 /* HTTPScheme.swift */, + OBJ_293 /* HTTPServer.swift */, + OBJ_294 /* HTTPServerResponder.swift */, + ); + path = Responder; + sourceTree = ""; + }; + OBJ_295 /* Utilities */ = { + isa = PBXGroup; + children = ( + OBJ_296 /* HTTPError.swift */, + OBJ_297 /* HTTPHeaders+Basic.swift */, + OBJ_298 /* HTTPHeaders+Bearer.swift */, + OBJ_299 /* RFC1123.swift */, + OBJ_300 /* String+IsIPAddress.swift */, + ); + path = Utilities; + sourceTree = ""; + }; + OBJ_302 /* swift-nio-ssl 1.4.0 */ = { + isa = PBXGroup; + children = ( + OBJ_303 /* CNIOOpenSSL */, + OBJ_309 /* NIOOpenSSL */, + OBJ_327 /* NIOTLSServer */, + OBJ_328 /* Package.swift */, + ); + name = "swift-nio-ssl 1.4.0"; + sourceTree = SOURCE_ROOT; + }; + OBJ_303 /* CNIOOpenSSL */ = { + isa = PBXGroup; + children = ( + OBJ_304 /* helpers.c */, + OBJ_305 /* shims.c */, + OBJ_306 /* include */, + ); + name = CNIOOpenSSL; + path = ".build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL"; + sourceTree = SOURCE_ROOT; + }; + OBJ_306 /* include */ = { + isa = PBXGroup; + children = ( + OBJ_307 /* c_nio_openssl.h */, + OBJ_308 /* module.modulemap */, + ); + path = include; + sourceTree = ""; + }; + OBJ_309 /* NIOOpenSSL */ = { + isa = PBXGroup; + children = ( + OBJ_310 /* ByteBufferBIO.swift */, + OBJ_311 /* IdentityVerification.swift */, + OBJ_312 /* OpenSSLClientHandler.swift */, + OBJ_313 /* OpenSSLHandler.swift */, + OBJ_314 /* OpenSSLServerHandler.swift */, + OBJ_315 /* PosixPort.swift */, + OBJ_316 /* SSLCertificate.swift */, + OBJ_317 /* SSLConnection.swift */, + OBJ_318 /* SSLContext.swift */, + OBJ_319 /* SSLErrors.swift */, + OBJ_320 /* SSLInit.swift */, + OBJ_321 /* SSLPKCS12Bundle.swift */, + OBJ_322 /* SSLPointerTricks.swift */, + OBJ_323 /* SSLPrivateKey.swift */, + OBJ_324 /* SSLPublicKey.swift */, + OBJ_325 /* SSLVerificationCallbacks.swift */, + OBJ_326 /* TLSConfiguration.swift */, + ); + name = NIOOpenSSL; + path = ".build/checkouts/swift-nio-ssl/Sources/NIOOpenSSL"; + sourceTree = SOURCE_ROOT; + }; + OBJ_327 /* NIOTLSServer */ = { + isa = PBXGroup; + children = ( + ); + name = NIOTLSServer; + path = ".build/checkouts/swift-nio-ssl/Sources/NIOTLSServer"; + sourceTree = SOURCE_ROOT; + }; + OBJ_329 /* DatabaseKit 1.3.3 */ = { + isa = PBXGroup; + children = ( + OBJ_330 /* DatabaseKit */, + OBJ_368 /* Package.swift */, + ); + name = "DatabaseKit 1.3.3"; + sourceTree = SOURCE_ROOT; + }; + OBJ_33 /* Typed */ = { + isa = PBXGroup; + children = ( + OBJ_34 /* AggregateFunctions.swift */, + OBJ_35 /* Coding.swift */, + OBJ_36 /* Collation.swift */, + OBJ_37 /* CoreFunctions.swift */, + OBJ_38 /* CustomFunctions.swift */, + OBJ_39 /* DateAndTimeFunctions.swift */, + OBJ_40 /* Expression.swift */, + OBJ_41 /* Operators.swift */, + OBJ_42 /* Query.swift */, + OBJ_43 /* Schema.swift */, + OBJ_44 /* Setter.swift */, + ); + path = Typed; + sourceTree = ""; + }; + OBJ_330 /* DatabaseKit */ = { + isa = PBXGroup; + children = ( + OBJ_331 /* Connection */, + OBJ_337 /* ConnectionPool */, + OBJ_342 /* Database */, + OBJ_349 /* KeyedCache */, + OBJ_355 /* Log */, + OBJ_361 /* Service */, + OBJ_363 /* Utilities */, + ); + name = DatabaseKit; + path = ".build/checkouts/database-kit/Sources/DatabaseKit"; + sourceTree = SOURCE_ROOT; + }; + OBJ_331 /* Connection */ = { + isa = PBXGroup; + children = ( + OBJ_332 /* Container+CachedConnection.swift */, + OBJ_333 /* Container+NewConnection.swift */, + OBJ_334 /* DatabaseConnectable.swift */, + OBJ_335 /* DatabaseConnection.swift */, + OBJ_336 /* DatabaseStringFindable.swift */, + ); + path = Connection; + sourceTree = ""; + }; + OBJ_337 /* ConnectionPool */ = { + isa = PBXGroup; + children = ( + OBJ_338 /* Container+ConnectionPool.swift */, + OBJ_339 /* DatabaseConnectionPool.swift */, + OBJ_340 /* DatabaseConnectionPoolCache.swift */, + OBJ_341 /* DatabaseConnectionPoolConfig.swift */, + ); + path = ConnectionPool; + sourceTree = ""; + }; + OBJ_342 /* Database */ = { + isa = PBXGroup; + children = ( + OBJ_343 /* ConfiguredDatabase.swift */, + OBJ_344 /* Database.swift */, + OBJ_345 /* DatabaseConfig.swift */, + OBJ_346 /* DatabaseIdentifier.swift */, + OBJ_347 /* DatabaseQueryable.swift */, + OBJ_348 /* Databases.swift */, + ); + path = Database; + sourceTree = ""; + }; + OBJ_349 /* KeyedCache */ = { + isa = PBXGroup; + children = ( + OBJ_350 /* DatabaseKeyedCache.swift */, + OBJ_351 /* DictionaryKeyedCache.swift */, + OBJ_352 /* KeyedCache.swift */, + OBJ_353 /* KeyedCacheSupporting.swift */, + OBJ_354 /* MemoryKeyedCache.swift */, + ); + path = KeyedCache; + sourceTree = ""; + }; + OBJ_355 /* Log */ = { + isa = PBXGroup; + children = ( + OBJ_356 /* DatabaseLog.swift */, + OBJ_357 /* DatabaseLogHandler.swift */, + OBJ_358 /* DatabaseLogger.swift */, + OBJ_359 /* LogSupporting.swift */, + OBJ_360 /* PrintLogHandler.swift */, + ); + path = Log; + sourceTree = ""; + }; + OBJ_361 /* Service */ = { + isa = PBXGroup; + children = ( + OBJ_362 /* DatabaseKitProvider.swift */, + ); + path = Service; + sourceTree = ""; + }; + OBJ_363 /* Utilities */ = { + isa = PBXGroup; + children = ( + OBJ_364 /* DatabaseKitError.swift */, + OBJ_365 /* Deprecated.swift */, + OBJ_366 /* Exports.swift */, + OBJ_367 /* URL+DatabaseName.swift */, + ); + path = Utilities; + sourceTree = ""; + }; + OBJ_369 /* Crypto 3.3.3 */ = { + isa = PBXGroup; + children = ( + OBJ_370 /* CBase32 */, + OBJ_374 /* CBcrypt */, + OBJ_379 /* CCryptoOpenSSL */, + OBJ_384 /* Crypto */, + OBJ_411 /* Random */, + OBJ_416 /* Package.swift */, + ); + name = "Crypto 3.3.3"; + sourceTree = SOURCE_ROOT; + }; + OBJ_370 /* CBase32 */ = { + isa = PBXGroup; + children = ( + OBJ_371 /* base32.c */, + OBJ_372 /* include */, + ); + name = CBase32; + path = .build/checkouts/crypto/Sources/CBase32; + sourceTree = SOURCE_ROOT; + }; + OBJ_372 /* include */ = { + isa = PBXGroup; + children = ( + OBJ_373 /* module.modulemap */, + ); + path = include; + sourceTree = ""; + }; + OBJ_374 /* CBcrypt */ = { + isa = PBXGroup; + children = ( + OBJ_375 /* bcrypt.c */, + OBJ_376 /* blf.c */, + OBJ_377 /* include */, + ); + name = CBcrypt; + path = .build/checkouts/crypto/Sources/CBcrypt; + sourceTree = SOURCE_ROOT; + }; + OBJ_377 /* include */ = { + isa = PBXGroup; + children = ( + OBJ_378 /* module.modulemap */, + ); + path = include; + sourceTree = ""; + }; + OBJ_379 /* CCryptoOpenSSL */ = { + isa = PBXGroup; + children = ( + OBJ_380 /* shim.c */, + OBJ_381 /* include */, + ); + name = CCryptoOpenSSL; + path = .build/checkouts/crypto/Sources/CCryptoOpenSSL; + sourceTree = SOURCE_ROOT; + }; + OBJ_381 /* include */ = { + isa = PBXGroup; + children = ( + OBJ_382 /* c_crypto_openssl.h */, + OBJ_383 /* module.modulemap */, + ); + path = include; + sourceTree = ""; + }; + OBJ_384 /* Crypto */ = { + isa = PBXGroup; + children = ( + OBJ_385 /* BCrypt */, + OBJ_387 /* Cipher */, + OBJ_394 /* Digest */, + OBJ_397 /* MAC */, + OBJ_400 /* RSA */, + OBJ_404 /* Random */, + OBJ_406 /* Utilities */, + ); + name = Crypto; + path = .build/checkouts/crypto/Sources/Crypto; + sourceTree = SOURCE_ROOT; + }; + OBJ_385 /* BCrypt */ = { + isa = PBXGroup; + children = ( + OBJ_386 /* BCryptDigest.swift */, + ); + path = BCrypt; + sourceTree = ""; + }; + OBJ_387 /* Cipher */ = { + isa = PBXGroup; + children = ( + OBJ_388 /* AuthenticatedCipher.swift */, + OBJ_389 /* AuthenticatedCipherAlgorithm.swift */, + OBJ_390 /* Cipher.swift */, + OBJ_391 /* CipherAlgorithm.swift */, + OBJ_392 /* OpenSSLCipherAlgorithm.swift */, + OBJ_393 /* OpenSSLStreamCipher.swift */, + ); + path = Cipher; + sourceTree = ""; + }; + OBJ_394 /* Digest */ = { + isa = PBXGroup; + children = ( + OBJ_395 /* Digest.swift */, + OBJ_396 /* DigestAlgorithm.swift */, + ); + path = Digest; + sourceTree = ""; + }; + OBJ_397 /* MAC */ = { + isa = PBXGroup; + children = ( + OBJ_398 /* HMAC.swift */, + OBJ_399 /* OTP.swift */, + ); + path = MAC; + sourceTree = ""; + }; + OBJ_400 /* RSA */ = { + isa = PBXGroup; + children = ( + OBJ_401 /* RSA.swift */, + OBJ_402 /* RSAKey.swift */, + OBJ_403 /* RSAPadding.swift */, + ); + path = RSA; + sourceTree = ""; + }; + OBJ_404 /* Random */ = { + isa = PBXGroup; + children = ( + OBJ_405 /* CryptoRandom.swift */, + ); + path = Random; + sourceTree = ""; + }; + OBJ_406 /* Utilities */ = { + isa = PBXGroup; + children = ( + OBJ_407 /* Base32.swift */, + OBJ_408 /* CryptoError.swift */, + OBJ_409 /* Deprecated.swift */, + OBJ_410 /* Exports.swift */, + ); + path = Utilities; + sourceTree = ""; + }; + OBJ_411 /* Random */ = { + isa = PBXGroup; + children = ( + OBJ_412 /* Array+Random.swift */, + OBJ_413 /* OSRandom.swift */, + OBJ_414 /* RandomProtocol.swift */, + OBJ_415 /* URandom.swift */, + ); + name = Random; + path = .build/checkouts/crypto/Sources/Random; + sourceTree = SOURCE_ROOT; + }; + OBJ_417 /* Console 3.1.1 */ = { + isa = PBXGroup; + children = ( + OBJ_418 /* Command */, + OBJ_441 /* Console */, + OBJ_476 /* Logging */, + OBJ_481 /* Package.swift */, + ); + name = "Console 3.1.1"; + sourceTree = SOURCE_ROOT; + }; + OBJ_418 /* Command */ = { + isa = PBXGroup; + children = ( + OBJ_419 /* Base */, + OBJ_422 /* Command */, + OBJ_425 /* Config */, + OBJ_428 /* Group */, + OBJ_431 /* Run */, + OBJ_437 /* Utilities */, + ); + name = Command; + path = .build/checkouts/console/Sources/Command; + sourceTree = SOURCE_ROOT; + }; + OBJ_419 /* Base */ = { + isa = PBXGroup; + children = ( + OBJ_420 /* CommandOption.swift */, + OBJ_421 /* CommandRunnable.swift */, + ); + path = Base; + sourceTree = ""; + }; + OBJ_422 /* Command */ = { + isa = PBXGroup; + children = ( + OBJ_423 /* Command.swift */, + OBJ_424 /* CommandArgument.swift */, + ); + path = Command; + sourceTree = ""; + }; + OBJ_425 /* Config */ = { + isa = PBXGroup; + children = ( + OBJ_426 /* CommandConfig.swift */, + OBJ_427 /* Commands.swift */, + ); + path = Config; + sourceTree = ""; + }; + OBJ_428 /* Group */ = { + isa = PBXGroup; + children = ( + OBJ_429 /* BasicCommandGroup.swift */, + OBJ_430 /* CommandGroup.swift */, + ); + path = Group; + sourceTree = ""; + }; + OBJ_431 /* Run */ = { + isa = PBXGroup; + children = ( + OBJ_432 /* CommandContext.swift */, + OBJ_433 /* CommandInput.swift */, + OBJ_434 /* Console+Run.swift */, + OBJ_435 /* Output+Autocomplete.swift */, + OBJ_436 /* Output+Help.swift */, + ); + path = Run; + sourceTree = ""; + }; + OBJ_437 /* Utilities */ = { + isa = PBXGroup; + children = ( + OBJ_438 /* CommandError.swift */, + OBJ_439 /* Exports.swift */, + OBJ_440 /* Utilities.swift */, + ); + path = Utilities; + sourceTree = ""; + }; + OBJ_441 /* Console */ = { + isa = PBXGroup; + children = ( + OBJ_442 /* Activity */, + OBJ_450 /* Clear */, + OBJ_454 /* Console.swift */, + OBJ_455 /* Deprecated.swift */, + OBJ_456 /* Input */, + OBJ_461 /* Output */, + OBJ_469 /* Terminal */, + OBJ_472 /* Utilities */, + ); + name = Console; + path = .build/checkouts/console/Sources/Console; + sourceTree = SOURCE_ROOT; + }; + OBJ_442 /* Activity */ = { + isa = PBXGroup; + children = ( + OBJ_443 /* ActivityBar.swift */, + OBJ_444 /* ActivityIndicator.swift */, + OBJ_445 /* ActivityIndicatorRenderer.swift */, + OBJ_446 /* ActivityIndicatorState.swift */, + OBJ_447 /* CustomActivity.swift */, + OBJ_448 /* LoadingBar.swift */, + OBJ_449 /* ProgressBar.swift */, + ); + path = Activity; + sourceTree = ""; + }; + OBJ_45 /* SQLiteObjc */ = { + isa = PBXGroup; + children = ( + OBJ_46 /* SQLiteObjc.m */, + OBJ_47 /* include */, + ); + name = SQLiteObjc; + path = .build/checkouts/SQLite.swift/Sources/SQLiteObjc; + sourceTree = SOURCE_ROOT; + }; + OBJ_450 /* Clear */ = { + isa = PBXGroup; + children = ( + OBJ_451 /* Console+Clear.swift */, + OBJ_452 /* Console+Ephemeral.swift */, + OBJ_453 /* ConsoleClear.swift */, + ); + path = Clear; + sourceTree = ""; + }; + OBJ_456 /* Input */ = { + isa = PBXGroup; + children = ( + OBJ_457 /* Console+Ask.swift */, + OBJ_458 /* Console+Choose.swift */, + OBJ_459 /* Console+Confirm.swift */, + OBJ_460 /* Console+Input.swift */, + ); + path = Input; + sourceTree = ""; + }; + OBJ_461 /* Output */ = { + isa = PBXGroup; + children = ( + OBJ_462 /* Console+Center.swift */, + OBJ_463 /* Console+Output.swift */, + OBJ_464 /* Console+Wait.swift */, + OBJ_465 /* ConsoleColor.swift */, + OBJ_466 /* ConsoleStyle.swift */, + OBJ_467 /* ConsoleText.swift */, + OBJ_468 /* ConsoleTextFragment.swift */, + ); + path = Output; + sourceTree = ""; + }; + OBJ_469 /* Terminal */ = { + isa = PBXGroup; + children = ( + OBJ_470 /* ANSI.swift */, + OBJ_471 /* Terminal.swift */, + ); + path = Terminal; + sourceTree = ""; + }; + OBJ_47 /* include */ = { + isa = PBXGroup; + children = ( + OBJ_48 /* SQLiteObjc.h */, + ); + path = include; + sourceTree = ""; + }; + OBJ_472 /* Utilities */ = { + isa = PBXGroup; + children = ( + OBJ_473 /* ConsoleError.swift */, + OBJ_474 /* ConsoleLogger.swift */, + OBJ_475 /* Exports.swift */, + ); + path = Utilities; + sourceTree = ""; + }; + OBJ_476 /* Logging */ = { + isa = PBXGroup; + children = ( + OBJ_477 /* Exports.swift */, + OBJ_478 /* LogLevel.swift */, + OBJ_479 /* Logger.swift */, + OBJ_480 /* PrintLogger.swift */, + ); + name = Logging; + path = .build/checkouts/console/Sources/Logging; + sourceTree = SOURCE_ROOT; + }; + OBJ_482 /* Service 1.0.2 */ = { + isa = PBXGroup; + children = ( + OBJ_483 /* Service */, + OBJ_510 /* Package.swift */, + ); + name = "Service 1.0.2"; + sourceTree = SOURCE_ROOT; + }; + OBJ_483 /* Service */ = { + isa = PBXGroup; + children = ( + OBJ_484 /* Config */, + OBJ_486 /* Container */, + OBJ_492 /* Environment */, + OBJ_494 /* Provider */, + OBJ_496 /* Services */, + OBJ_505 /* Utilities */, + ); + name = Service; + path = .build/checkouts/service/Sources/Service; + sourceTree = SOURCE_ROOT; + }; + OBJ_484 /* Config */ = { + isa = PBXGroup; + children = ( + OBJ_485 /* Config.swift */, + ); + path = Config; + sourceTree = ""; + }; + OBJ_486 /* Container */ = { + isa = PBXGroup; + children = ( + OBJ_487 /* BasicContainer.swift */, + OBJ_488 /* BasicSubContainer.swift */, + OBJ_489 /* Container.swift */, + OBJ_490 /* ContainerAlias.swift */, + OBJ_491 /* SubContainer.swift */, + ); + path = Container; + sourceTree = ""; + }; + OBJ_492 /* Environment */ = { + isa = PBXGroup; + children = ( + OBJ_493 /* Environment.swift */, + ); + path = Environment; + sourceTree = ""; + }; + OBJ_494 /* Provider */ = { + isa = PBXGroup; + children = ( + OBJ_495 /* Provider.swift */, + ); + path = Provider; + sourceTree = ""; + }; + OBJ_496 /* Services */ = { + isa = PBXGroup; + children = ( + OBJ_497 /* BasicServiceFactory.swift */, + OBJ_498 /* Service.swift */, + OBJ_499 /* ServiceCache.swift */, + OBJ_500 /* ServiceFactory.swift */, + OBJ_501 /* ServiceID.swift */, + OBJ_502 /* ServiceType.swift */, + OBJ_503 /* Services.swift */, + OBJ_504 /* TypeServiceFactory.swift */, + ); + path = Services; + sourceTree = ""; + }; + OBJ_5 /* */ = { + isa = PBXGroup; + children = ( + OBJ_6 /* Package.swift */, + OBJ_7 /* Sources */, + OBJ_14 /* Tests */, + OBJ_17 /* Dependencies */, + OBJ_702 /* Products */, + OBJ_746 /* Resources */, + OBJ_747 /* Public */, + OBJ_748 /* LICENSE */, + OBJ_749 /* cloud.yml */, + OBJ_750 /* README.md */, + OBJ_751 /* circle.yml */, + ); + name = ""; + sourceTree = ""; + }; + OBJ_50 /* Vapor 3.3.3 */ = { + isa = PBXGroup; + children = ( + OBJ_51 /* Vapor */, + OBJ_142 /* Package.swift */, + ); + name = "Vapor 3.3.3"; + sourceTree = SOURCE_ROOT; + }; + OBJ_505 /* Utilities */ = { + isa = PBXGroup; + children = ( + OBJ_506 /* Deprecated.swift */, + OBJ_507 /* Exports.swift */, + OBJ_508 /* Extendable.swift */, + OBJ_509 /* ServiceError.swift */, + ); + path = Utilities; + sourceTree = ""; + }; + OBJ_51 /* Vapor */ = { + isa = PBXGroup; + children = ( + OBJ_52 /* Application.swift */, + OBJ_53 /* Client */, + OBJ_56 /* Commands */, + OBJ_61 /* Content */, + OBJ_73 /* Deprecated.swift */, + OBJ_74 /* Error */, + OBJ_78 /* Logging */, + OBJ_80 /* Middleware */, + OBJ_87 /* Request */, + OBJ_91 /* Response */, + OBJ_99 /* Routing */, + OBJ_110 /* Server */, + OBJ_115 /* Services */, + OBJ_119 /* Sessions */, + OBJ_129 /* Utilities */, + OBJ_134 /* View */, + OBJ_136 /* WebSocket */, + ); + name = Vapor; + path = .build/checkouts/vapor/Sources/Vapor; + sourceTree = SOURCE_ROOT; + }; + OBJ_511 /* Core 3.10.0 */ = { + isa = PBXGroup; + children = ( + OBJ_512 /* Async */, + OBJ_528 /* Bits */, + OBJ_541 /* COperatingSystem */, + OBJ_543 /* Core */, + OBJ_570 /* Debugging */, + OBJ_574 /* Package.swift */, + ); + name = "Core 3.10.0"; + sourceTree = SOURCE_ROOT; + }; + OBJ_512 /* Async */ = { + isa = PBXGroup; + children = ( + OBJ_513 /* Async+NIO.swift */, + OBJ_514 /* AsyncError.swift */, + OBJ_515 /* Collection+Future.swift */, + OBJ_516 /* Deprecated.swift */, + OBJ_517 /* Exports.swift */, + OBJ_518 /* Future+DoCatch.swift */, + OBJ_519 /* Future+Flatten.swift */, + OBJ_520 /* Future+Global.swift */, + OBJ_521 /* Future+Map.swift */, + OBJ_522 /* Future+Transform.swift */, + OBJ_523 /* Future+Variadic.swift */, + OBJ_524 /* Future+Void.swift */, + OBJ_525 /* FutureType.swift */, + OBJ_526 /* QueueHandler.swift */, + OBJ_527 /* Worker.swift */, + ); + name = Async; + path = .build/checkouts/core/Sources/Async; + sourceTree = SOURCE_ROOT; + }; + OBJ_528 /* Bits */ = { + isa = PBXGroup; + children = ( + OBJ_529 /* BitsError.swift */, + OBJ_530 /* Byte+Alphabet.swift */, + OBJ_531 /* Byte+Control.swift */, + OBJ_532 /* Byte+Digit.swift */, + OBJ_533 /* ByteBuffer+binaryFloatingPointOperations.swift */, + OBJ_534 /* ByteBuffer+peek.swift */, + OBJ_535 /* ByteBuffer+require.swift */, + OBJ_536 /* ByteBuffer+string.swift */, + OBJ_537 /* Bytes.swift */, + OBJ_538 /* Data+Bytes.swift */, + OBJ_539 /* Data+Strings.swift */, + OBJ_540 /* Deprecated.swift */, + ); + name = Bits; + path = .build/checkouts/core/Sources/Bits; + sourceTree = SOURCE_ROOT; + }; + OBJ_53 /* Client */ = { + isa = PBXGroup; + children = ( + OBJ_54 /* Client.swift */, + OBJ_55 /* FoundationClient.swift */, + ); + path = Client; + sourceTree = ""; + }; + OBJ_541 /* COperatingSystem */ = { + isa = PBXGroup; + children = ( + OBJ_542 /* libc.swift */, + ); + name = COperatingSystem; + path = .build/checkouts/core/Sources/COperatingSystem; + sourceTree = SOURCE_ROOT; + }; + OBJ_543 /* Core */ = { + isa = PBXGroup; + children = ( + OBJ_544 /* BasicKey.swift */, + OBJ_545 /* CaseInsensitiveString.swift */, + OBJ_546 /* CodableReflection */, + OBJ_550 /* CoreError.swift */, + OBJ_551 /* Data+Base64URL.swift */, + OBJ_552 /* Data+Hex.swift */, + OBJ_553 /* DataCoders.swift */, + OBJ_554 /* Deprecated.swift */, + OBJ_555 /* DirectoryConfig.swift */, + OBJ_556 /* Exports.swift */, + OBJ_557 /* File.swift */, + OBJ_558 /* Future+Unwrap.swift */, + OBJ_559 /* FutureEncoder.swift */, + OBJ_560 /* HeaderValue.swift */, + OBJ_561 /* LosslessDataConvertible.swift */, + OBJ_562 /* MediaType.swift */, + OBJ_563 /* NestedData.swift */, + OBJ_564 /* NotFound.swift */, + OBJ_565 /* OptionalType.swift */, + OBJ_566 /* Process+Execute.swift */, + OBJ_567 /* Reflectable.swift */, + OBJ_568 /* String+Utilities.swift */, + OBJ_569 /* Thread+Async.swift */, + ); + name = Core; + path = .build/checkouts/core/Sources/Core; + sourceTree = SOURCE_ROOT; + }; + OBJ_546 /* CodableReflection */ = { + isa = PBXGroup; + children = ( + OBJ_547 /* Decodable+Reflectable.swift */, + OBJ_548 /* ReflectionDecodable.swift */, + OBJ_549 /* ReflectionDecoders.swift */, + ); + path = CodableReflection; + sourceTree = ""; + }; + OBJ_56 /* Commands */ = { + isa = PBXGroup; + children = ( + OBJ_57 /* BootCommand.swift */, + OBJ_58 /* CommandConfig+Default.swift */, + OBJ_59 /* RoutesCommand.swift */, + OBJ_60 /* ServeCommand.swift */, + ); + path = Commands; + sourceTree = ""; + }; + OBJ_570 /* Debugging */ = { + isa = PBXGroup; + children = ( + OBJ_571 /* Debuggable.swift */, + OBJ_572 /* Demangler.swift */, + OBJ_573 /* SourceLocation.swift */, + ); + name = Debugging; + path = .build/checkouts/core/Sources/Debugging; + sourceTree = SOURCE_ROOT; + }; + OBJ_575 /* swift-nio 1.14.2 */ = { + isa = PBXGroup; + children = ( + OBJ_576 /* CNIOAtomics */, + OBJ_582 /* CNIODarwin */, + OBJ_586 /* CNIOHTTPParser */, + OBJ_591 /* CNIOLinux */, + OBJ_597 /* CNIOSHA1 */, + OBJ_601 /* CNIOZlib */, + OBJ_605 /* NIO */, + OBJ_661 /* NIOChatClient */, + OBJ_662 /* NIOChatServer */, + OBJ_663 /* NIOConcurrencyHelpers */, + OBJ_666 /* NIOEchoClient */, + OBJ_667 /* NIOEchoServer */, + OBJ_668 /* NIOFoundationCompat */, + OBJ_670 /* NIOHTTP1 */, + OBJ_680 /* NIOHTTP1Server */, + OBJ_681 /* NIOMulticastChat */, + OBJ_682 /* NIOPerformanceTester */, + OBJ_683 /* NIOPriorityQueue */, + OBJ_686 /* NIOTLS */, + OBJ_690 /* NIOWebSocket */, + OBJ_700 /* NIOWebSocketServer */, + OBJ_701 /* Package.swift */, + ); + name = "swift-nio 1.14.2"; + sourceTree = SOURCE_ROOT; + }; + OBJ_576 /* CNIOAtomics */ = { + isa = PBXGroup; + children = ( + OBJ_577 /* src */, + OBJ_579 /* include */, + ); + name = CNIOAtomics; + path = ".build/checkouts/swift-nio/Sources/CNIOAtomics"; + sourceTree = SOURCE_ROOT; + }; + OBJ_577 /* src */ = { + isa = PBXGroup; + children = ( + OBJ_578 /* c-atomics.c */, + ); + path = src; + sourceTree = ""; + }; + OBJ_579 /* include */ = { + isa = PBXGroup; + children = ( + OBJ_580 /* CNIOAtomics.h */, + OBJ_581 /* cpp_magic.h */, + ); + path = include; + sourceTree = ""; + }; + OBJ_582 /* CNIODarwin */ = { + isa = PBXGroup; + children = ( + OBJ_583 /* shim.c */, + OBJ_584 /* include */, + ); + name = CNIODarwin; + path = ".build/checkouts/swift-nio/Sources/CNIODarwin"; + sourceTree = SOURCE_ROOT; + }; + OBJ_584 /* include */ = { + isa = PBXGroup; + children = ( + OBJ_585 /* CNIODarwin.h */, + ); + path = include; + sourceTree = ""; + }; + OBJ_586 /* CNIOHTTPParser */ = { + isa = PBXGroup; + children = ( + OBJ_587 /* c_nio_http_parser.c */, + OBJ_588 /* include */, + ); + name = CNIOHTTPParser; + path = ".build/checkouts/swift-nio/Sources/CNIOHTTPParser"; + sourceTree = SOURCE_ROOT; + }; + OBJ_588 /* include */ = { + isa = PBXGroup; + children = ( + OBJ_589 /* c_nio_http_parser.h */, + OBJ_590 /* CNIOHTTPParser.h */, + ); + path = include; + sourceTree = ""; + }; + OBJ_591 /* CNIOLinux */ = { + isa = PBXGroup; + children = ( + OBJ_592 /* ifaddrs-android.c */, + OBJ_593 /* shim.c */, + OBJ_594 /* include */, + ); + name = CNIOLinux; + path = ".build/checkouts/swift-nio/Sources/CNIOLinux"; + sourceTree = SOURCE_ROOT; + }; + OBJ_594 /* include */ = { + isa = PBXGroup; + children = ( + OBJ_595 /* CNIOLinux.h */, + OBJ_596 /* ifaddrs-android.h */, + ); + path = include; + sourceTree = ""; + }; + OBJ_597 /* CNIOSHA1 */ = { + isa = PBXGroup; + children = ( + OBJ_598 /* c_nio_sha1.c */, + OBJ_599 /* include */, + ); + name = CNIOSHA1; + path = ".build/checkouts/swift-nio/Sources/CNIOSHA1"; + sourceTree = SOURCE_ROOT; + }; + OBJ_599 /* include */ = { + isa = PBXGroup; + children = ( + OBJ_600 /* CNIOSHA1.h */, + ); + path = include; + sourceTree = ""; + }; + OBJ_601 /* CNIOZlib */ = { + isa = PBXGroup; + children = ( + OBJ_602 /* empty.c */, + OBJ_603 /* include */, + ); + name = CNIOZlib; + path = ".build/checkouts/swift-nio/Sources/CNIOZlib"; + sourceTree = SOURCE_ROOT; + }; + OBJ_603 /* include */ = { + isa = PBXGroup; + children = ( + OBJ_604 /* CNIOZlib.h */, + ); + path = include; + sourceTree = ""; + }; + OBJ_605 /* NIO */ = { + isa = PBXGroup; + children = ( + OBJ_606 /* AddressedEnvelope.swift */, + OBJ_607 /* BaseSocket.swift */, + OBJ_608 /* BaseSocketChannel.swift */, + OBJ_609 /* BlockingIOThreadPool.swift */, + OBJ_610 /* Bootstrap.swift */, + OBJ_611 /* ByteBuffer-aux.swift */, + OBJ_612 /* ByteBuffer-core.swift */, + OBJ_613 /* ByteBuffer-int.swift */, + OBJ_614 /* ByteBuffer-views.swift */, + OBJ_615 /* Channel.swift */, + OBJ_616 /* ChannelHandler.swift */, + OBJ_617 /* ChannelHandlers.swift */, + OBJ_618 /* ChannelInvoker.swift */, + OBJ_619 /* ChannelOption.swift */, + OBJ_620 /* ChannelPipeline.swift */, + OBJ_621 /* CircularBuffer.swift */, + OBJ_622 /* Codec.swift */, + OBJ_623 /* CompositeError.swift */, + OBJ_624 /* ContiguousCollection.swift */, + OBJ_625 /* DeadChannel.swift */, + OBJ_626 /* Embedded.swift */, + OBJ_627 /* EventLoop.swift */, + OBJ_628 /* EventLoopFuture.swift */, + OBJ_629 /* FileDescriptor.swift */, + OBJ_630 /* FileHandle.swift */, + OBJ_631 /* FileRegion.swift */, + OBJ_632 /* GetaddrinfoResolver.swift */, + OBJ_633 /* HappyEyeballs.swift */, + OBJ_634 /* Heap.swift */, + OBJ_635 /* IO.swift */, + OBJ_636 /* IOData.swift */, + OBJ_637 /* IntegerTypes.swift */, + OBJ_638 /* Interfaces.swift */, + OBJ_639 /* Linux.swift */, + OBJ_640 /* LinuxCPUSet.swift */, + OBJ_641 /* MarkedCircularBuffer.swift */, + OBJ_642 /* MulticastChannel.swift */, + OBJ_643 /* NIOAny.swift */, + OBJ_644 /* NonBlockingFileIO.swift */, + OBJ_645 /* PendingDatagramWritesManager.swift */, + OBJ_646 /* PendingWritesManager.swift */, + OBJ_647 /* PriorityQueue.swift */, + OBJ_648 /* RecvByteBufferAllocator.swift */, + OBJ_649 /* Resolver.swift */, + OBJ_650 /* Selectable.swift */, + OBJ_651 /* Selector.swift */, + OBJ_652 /* ServerSocket.swift */, + OBJ_653 /* Socket.swift */, + OBJ_654 /* SocketAddresses.swift */, + OBJ_655 /* SocketChannel.swift */, + OBJ_656 /* SocketOptionProvider.swift */, + OBJ_657 /* System.swift */, + OBJ_658 /* Thread.swift */, + OBJ_659 /* TypeAssistedChannelHandler.swift */, + OBJ_660 /* Utilities.swift */, + ); + name = NIO; + path = ".build/checkouts/swift-nio/Sources/NIO"; + sourceTree = SOURCE_ROOT; + }; + OBJ_61 /* Content */ = { + isa = PBXGroup; + children = ( + OBJ_62 /* Content.swift */, + OBJ_63 /* ContentCoders.swift */, + OBJ_64 /* ContentConfig.swift */, + OBJ_65 /* ContentContainer.swift */, + OBJ_66 /* FormDataCoder+HTTP.swift */, + OBJ_67 /* HTTPMessageContainer.swift */, + OBJ_68 /* JSONCoder+Custom.swift */, + OBJ_69 /* PlaintextEncoder.swift */, + OBJ_70 /* QueryContainer.swift */, + OBJ_71 /* SingleValueGet.swift */, + OBJ_72 /* URLEncoded.swift */, + ); + path = Content; + sourceTree = ""; + }; + OBJ_661 /* NIOChatClient */ = { + isa = PBXGroup; + children = ( + ); + name = NIOChatClient; + path = ".build/checkouts/swift-nio/Sources/NIOChatClient"; + sourceTree = SOURCE_ROOT; + }; + OBJ_662 /* NIOChatServer */ = { + isa = PBXGroup; + children = ( + ); + name = NIOChatServer; + path = ".build/checkouts/swift-nio/Sources/NIOChatServer"; + sourceTree = SOURCE_ROOT; + }; + OBJ_663 /* NIOConcurrencyHelpers */ = { + isa = PBXGroup; + children = ( + OBJ_664 /* atomics.swift */, + OBJ_665 /* lock.swift */, + ); + name = NIOConcurrencyHelpers; + path = ".build/checkouts/swift-nio/Sources/NIOConcurrencyHelpers"; + sourceTree = SOURCE_ROOT; + }; + OBJ_666 /* NIOEchoClient */ = { + isa = PBXGroup; + children = ( + ); + name = NIOEchoClient; + path = ".build/checkouts/swift-nio/Sources/NIOEchoClient"; + sourceTree = SOURCE_ROOT; + }; + OBJ_667 /* NIOEchoServer */ = { + isa = PBXGroup; + children = ( + ); + name = NIOEchoServer; + path = ".build/checkouts/swift-nio/Sources/NIOEchoServer"; + sourceTree = SOURCE_ROOT; + }; + OBJ_668 /* NIOFoundationCompat */ = { + isa = PBXGroup; + children = ( + OBJ_669 /* ByteBuffer-foundation.swift */, + ); + name = NIOFoundationCompat; + path = ".build/checkouts/swift-nio/Sources/NIOFoundationCompat"; + sourceTree = SOURCE_ROOT; + }; + OBJ_670 /* NIOHTTP1 */ = { + isa = PBXGroup; + children = ( + OBJ_671 /* ByteCollectionUtils.swift */, + OBJ_672 /* HTTPDecoder.swift */, + OBJ_673 /* HTTPEncoder.swift */, + OBJ_674 /* HTTPPipelineSetup.swift */, + OBJ_675 /* HTTPResponseCompressor.swift */, + OBJ_676 /* HTTPServerPipelineHandler.swift */, + OBJ_677 /* HTTPServerProtocolErrorHandler.swift */, + OBJ_678 /* HTTPTypes.swift */, + OBJ_679 /* HTTPUpgradeHandler.swift */, + ); + name = NIOHTTP1; + path = ".build/checkouts/swift-nio/Sources/NIOHTTP1"; + sourceTree = SOURCE_ROOT; + }; + OBJ_680 /* NIOHTTP1Server */ = { + isa = PBXGroup; + children = ( + ); + name = NIOHTTP1Server; + path = ".build/checkouts/swift-nio/Sources/NIOHTTP1Server"; + sourceTree = SOURCE_ROOT; + }; + OBJ_681 /* NIOMulticastChat */ = { + isa = PBXGroup; + children = ( + ); + name = NIOMulticastChat; + path = ".build/checkouts/swift-nio/Sources/NIOMulticastChat"; + sourceTree = SOURCE_ROOT; + }; + OBJ_682 /* NIOPerformanceTester */ = { + isa = PBXGroup; + children = ( + ); + name = NIOPerformanceTester; + path = ".build/checkouts/swift-nio/Sources/NIOPerformanceTester"; + sourceTree = SOURCE_ROOT; + }; + OBJ_683 /* NIOPriorityQueue */ = { + isa = PBXGroup; + children = ( + OBJ_684 /* Heap.swift */, + OBJ_685 /* PriorityQueue.swift */, + ); + name = NIOPriorityQueue; + path = ".build/checkouts/swift-nio/Sources/NIOPriorityQueue"; + sourceTree = SOURCE_ROOT; + }; + OBJ_686 /* NIOTLS */ = { + isa = PBXGroup; + children = ( + OBJ_687 /* ApplicationProtocolNegotiationHandler.swift */, + OBJ_688 /* SNIHandler.swift */, + OBJ_689 /* TLSEvents.swift */, + ); + name = NIOTLS; + path = ".build/checkouts/swift-nio/Sources/NIOTLS"; + sourceTree = SOURCE_ROOT; + }; + OBJ_690 /* NIOWebSocket */ = { + isa = PBXGroup; + children = ( + OBJ_691 /* Base64.swift */, + OBJ_692 /* SHA1.swift */, + OBJ_693 /* WebSocketErrorCodes.swift */, + OBJ_694 /* WebSocketFrame.swift */, + OBJ_695 /* WebSocketFrameDecoder.swift */, + OBJ_696 /* WebSocketFrameEncoder.swift */, + OBJ_697 /* WebSocketOpcode.swift */, + OBJ_698 /* WebSocketProtocolErrorHandler.swift */, + OBJ_699 /* WebSocketUpgrader.swift */, + ); + name = NIOWebSocket; + path = ".build/checkouts/swift-nio/Sources/NIOWebSocket"; + sourceTree = SOURCE_ROOT; + }; + OBJ_7 /* Sources */ = { + isa = PBXGroup; + children = ( + OBJ_8 /* App */, + OBJ_12 /* Run */, + ); + name = Sources; + sourceTree = SOURCE_ROOT; + }; + OBJ_700 /* NIOWebSocketServer */ = { + isa = PBXGroup; + children = ( + ); + name = NIOWebSocketServer; + path = ".build/checkouts/swift-nio/Sources/NIOWebSocketServer"; + sourceTree = SOURCE_ROOT; + }; + OBJ_702 /* Products */ = { + isa = PBXGroup; + children = ( + "Crypto::CCryptoOpenSSL::Product" /* CCryptoOpenSSL.framework */, + "Routing::Routing::Product" /* Routing.framework */, + "Crypto::Random::Product" /* Random.framework */, + "URLEncodedForm::URLEncodedForm::Product" /* URLEncodedForm.framework */, + "Console::Logging::Product" /* Logging.framework */, + "Core::Debugging::Product" /* Debugging.framework */, + "CapCollectorServer::Run::Product" /* Run */, + "SQLite.swift::SQLiteObjc::Product" /* SQLiteObjc.framework */, + "swift-nio-ssl::NIOOpenSSL::Product" /* NIOOpenSSL.framework */, + "Core::Core::Product" /* Core.framework */, + "Crypto::CBcrypt::Product" /* CBcrypt.framework */, + "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */, + "swift-nio::CNIOZlib::Product" /* CNIOZlib.framework */, + "CapCollectorServer::App::Product" /* App.framework */, + "Validation::Validation::Product" /* Validation.framework */, + "Core::COperatingSystem::Product" /* COperatingSystem.framework */, + "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */, + "SQLite.swift::SQLite::Product" /* SQLite.framework */, + "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */, + "HTTP::HTTP::Product" /* HTTP.framework */, + "DatabaseKit::DatabaseKit::Product" /* DatabaseKit.framework */, + "swift-nio::NIO::Product" /* NIO.framework */, + "Service::Service::Product" /* Service.framework */, + "swift-nio::NIOWebSocket::Product" /* NIOWebSocket.framework */, + "Crypto::Crypto::Product" /* Crypto.framework */, + "WebSocket::WebSocket::Product" /* WebSocket.framework */, + "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */, + "CapCollectorServer::AppTests::Product" /* AppTests.xctest */, + "Console::Console::Product" /* Console.framework */, + "Multipart::Multipart::Product" /* Multipart.framework */, + "Core::Async::Product" /* Async.framework */, + "Console::Command::Product" /* Command.framework */, + "swift-nio::NIOTLS::Product" /* NIOTLS.framework */, + "Core::Bits::Product" /* Bits.framework */, + "TemplateKit::TemplateKit::Product" /* TemplateKit.framework */, + "swift-nio-ssl::CNIOOpenSSL::Product" /* CNIOOpenSSL.framework */, + "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */, + "Vapor::Vapor::Product" /* Vapor.framework */, + "swift-nio::NIOHTTP1::Product" /* NIOHTTP1.framework */, + "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */, + "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */, + "Crypto::CBase32::Product" /* CBase32.framework */, + "swift-nio::CNIOHTTPParser::Product" /* CNIOHTTPParser.framework */, + ); + name = Products; + sourceTree = BUILT_PRODUCTS_DIR; + }; + OBJ_74 /* Error */ = { + isa = PBXGroup; + children = ( + OBJ_75 /* Abort.swift */, + OBJ_76 /* AbortError.swift */, + OBJ_77 /* Error.swift */, + ); + path = Error; + sourceTree = ""; + }; + OBJ_78 /* Logging */ = { + isa = PBXGroup; + children = ( + OBJ_79 /* Logger+LogError.swift */, + ); + path = Logging; + sourceTree = ""; + }; + OBJ_8 /* App */ = { + isa = PBXGroup; + children = ( + OBJ_9 /* boot.swift */, + OBJ_10 /* configure.swift */, + OBJ_11 /* routes.swift */, + CE0A500A2471B82500A9E753 /* Router+Extensions.swift */, + CE0A500E2471BC2200A9E753 /* Error.swift */, + CE0A500C2471B85000A9E753 /* Log.swift */, + ); + name = App; + path = Sources/App; + sourceTree = SOURCE_ROOT; + }; + OBJ_80 /* Middleware */ = { + isa = PBXGroup; + children = ( + OBJ_81 /* CORSMiddleware.swift */, + OBJ_82 /* DateMiddleware.swift */, + OBJ_83 /* ErrorMiddleware.swift */, + OBJ_84 /* FileMiddleware.swift */, + OBJ_85 /* Middleware.swift */, + OBJ_86 /* MiddlewareConfig.swift */, + ); + path = Middleware; + sourceTree = ""; + }; + OBJ_87 /* Request */ = { + isa = PBXGroup; + children = ( + OBJ_88 /* HTTPMethod+String.swift */, + OBJ_89 /* Request.swift */, + OBJ_90 /* RequestCodable.swift */, + ); + path = Request; + sourceTree = ""; + }; + OBJ_91 /* Response */ = { + isa = PBXGroup; + children = ( + OBJ_92 /* ApplicationResponder.swift */, + OBJ_93 /* BasicResponder.swift */, + OBJ_94 /* HTTPStatus.swift */, + OBJ_95 /* Redirect.swift */, + OBJ_96 /* Responder.swift */, + OBJ_97 /* Response.swift */, + OBJ_98 /* ResponseCodable.swift */, + ); + path = Response; + sourceTree = ""; + }; + OBJ_99 /* Routing */ = { + isa = PBXGroup; + children = ( + OBJ_100 /* EngineRouter.swift */, + OBJ_101 /* ParametersContainer.swift */, + OBJ_102 /* RouteCollection.swift */, + OBJ_103 /* Router+Content.swift */, + OBJ_104 /* Router+Function.swift */, + OBJ_105 /* Router+LazyMiddleware.swift */, + OBJ_106 /* Router+Method.swift */, + OBJ_107 /* Router+Middleware.swift */, + OBJ_108 /* Router+Path.swift */, + OBJ_109 /* Router.swift */, + ); + path = Routing; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + OBJ_1061 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1062 /* CNIOAtomics.h in Headers */, + OBJ_1063 /* cpp_magic.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1070 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1071 /* CNIODarwin.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1078 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1079 /* c_nio_http_parser.h in Headers */, + OBJ_1080 /* CNIOHTTPParser.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1088 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1089 /* CNIOLinux.h in Headers */, + OBJ_1090 /* ifaddrs-android.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1104 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1105 /* CNIOSHA1.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1112 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1113 /* CNIOZlib.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2053 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2054 /* SQLiteObjc.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + "CapCollectorServer::App" /* App */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_753 /* Build configuration list for PBXNativeTarget "App" */; + buildPhases = ( + OBJ_756 /* Sources */, + OBJ_760 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_801 /* PBXTargetDependency */, + OBJ_803 /* PBXTargetDependency */, + OBJ_805 /* PBXTargetDependency */, + OBJ_807 /* PBXTargetDependency */, + OBJ_809 /* PBXTargetDependency */, + OBJ_811 /* PBXTargetDependency */, + OBJ_813 /* PBXTargetDependency */, + OBJ_815 /* PBXTargetDependency */, + OBJ_817 /* PBXTargetDependency */, + OBJ_819 /* PBXTargetDependency */, + OBJ_821 /* PBXTargetDependency */, + OBJ_823 /* PBXTargetDependency */, + OBJ_825 /* PBXTargetDependency */, + OBJ_827 /* PBXTargetDependency */, + OBJ_829 /* PBXTargetDependency */, + OBJ_831 /* PBXTargetDependency */, + OBJ_833 /* PBXTargetDependency */, + OBJ_835 /* PBXTargetDependency */, + OBJ_837 /* PBXTargetDependency */, + OBJ_839 /* PBXTargetDependency */, + OBJ_841 /* PBXTargetDependency */, + OBJ_843 /* PBXTargetDependency */, + OBJ_845 /* PBXTargetDependency */, + OBJ_847 /* PBXTargetDependency */, + OBJ_849 /* PBXTargetDependency */, + OBJ_851 /* PBXTargetDependency */, + OBJ_853 /* PBXTargetDependency */, + OBJ_855 /* PBXTargetDependency */, + OBJ_857 /* PBXTargetDependency */, + OBJ_859 /* PBXTargetDependency */, + OBJ_861 /* PBXTargetDependency */, + OBJ_863 /* PBXTargetDependency */, + OBJ_865 /* PBXTargetDependency */, + OBJ_867 /* PBXTargetDependency */, + OBJ_869 /* PBXTargetDependency */, + OBJ_871 /* PBXTargetDependency */, + OBJ_873 /* PBXTargetDependency */, + OBJ_875 /* PBXTargetDependency */, + OBJ_877 /* PBXTargetDependency */, + OBJ_879 /* PBXTargetDependency */, + ); + name = App; + productName = App; + productReference = "CapCollectorServer::App::Product" /* App.framework */; + productType = "com.apple.product-type.framework"; + }; + "CapCollectorServer::AppTests" /* AppTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_882 /* Build configuration list for PBXNativeTarget "AppTests" */; + buildPhases = ( + OBJ_885 /* Sources */, + OBJ_887 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_929 /* PBXTargetDependency */, + OBJ_930 /* PBXTargetDependency */, + OBJ_931 /* PBXTargetDependency */, + OBJ_932 /* PBXTargetDependency */, + OBJ_933 /* PBXTargetDependency */, + OBJ_934 /* PBXTargetDependency */, + OBJ_935 /* PBXTargetDependency */, + OBJ_936 /* PBXTargetDependency */, + OBJ_937 /* PBXTargetDependency */, + OBJ_938 /* PBXTargetDependency */, + OBJ_939 /* PBXTargetDependency */, + OBJ_940 /* PBXTargetDependency */, + OBJ_941 /* PBXTargetDependency */, + OBJ_942 /* PBXTargetDependency */, + OBJ_943 /* PBXTargetDependency */, + OBJ_944 /* PBXTargetDependency */, + OBJ_945 /* PBXTargetDependency */, + OBJ_946 /* PBXTargetDependency */, + OBJ_947 /* PBXTargetDependency */, + OBJ_948 /* PBXTargetDependency */, + OBJ_949 /* PBXTargetDependency */, + OBJ_950 /* PBXTargetDependency */, + OBJ_951 /* PBXTargetDependency */, + OBJ_952 /* PBXTargetDependency */, + OBJ_953 /* PBXTargetDependency */, + OBJ_954 /* PBXTargetDependency */, + OBJ_955 /* PBXTargetDependency */, + OBJ_956 /* PBXTargetDependency */, + OBJ_957 /* PBXTargetDependency */, + OBJ_958 /* PBXTargetDependency */, + OBJ_959 /* PBXTargetDependency */, + OBJ_960 /* PBXTargetDependency */, + OBJ_961 /* PBXTargetDependency */, + OBJ_962 /* PBXTargetDependency */, + OBJ_963 /* PBXTargetDependency */, + OBJ_964 /* PBXTargetDependency */, + OBJ_965 /* PBXTargetDependency */, + OBJ_966 /* PBXTargetDependency */, + OBJ_967 /* PBXTargetDependency */, + OBJ_968 /* PBXTargetDependency */, + OBJ_969 /* PBXTargetDependency */, + ); + name = AppTests; + productName = AppTests; + productReference = "CapCollectorServer::AppTests::Product" /* AppTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + "CapCollectorServer::Run" /* Run */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1925 /* Build configuration list for PBXNativeTarget "Run" */; + buildPhases = ( + OBJ_1928 /* Sources */, + OBJ_1930 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1972 /* PBXTargetDependency */, + OBJ_1973 /* PBXTargetDependency */, + OBJ_1974 /* PBXTargetDependency */, + OBJ_1975 /* PBXTargetDependency */, + OBJ_1976 /* PBXTargetDependency */, + OBJ_1977 /* PBXTargetDependency */, + OBJ_1978 /* PBXTargetDependency */, + OBJ_1979 /* PBXTargetDependency */, + OBJ_1980 /* PBXTargetDependency */, + OBJ_1981 /* PBXTargetDependency */, + OBJ_1982 /* PBXTargetDependency */, + OBJ_1983 /* PBXTargetDependency */, + OBJ_1984 /* PBXTargetDependency */, + OBJ_1985 /* PBXTargetDependency */, + OBJ_1986 /* PBXTargetDependency */, + OBJ_1987 /* PBXTargetDependency */, + OBJ_1988 /* PBXTargetDependency */, + OBJ_1989 /* PBXTargetDependency */, + OBJ_1990 /* PBXTargetDependency */, + OBJ_1991 /* PBXTargetDependency */, + OBJ_1992 /* PBXTargetDependency */, + OBJ_1993 /* PBXTargetDependency */, + OBJ_1994 /* PBXTargetDependency */, + OBJ_1995 /* PBXTargetDependency */, + OBJ_1996 /* PBXTargetDependency */, + OBJ_1997 /* PBXTargetDependency */, + OBJ_1998 /* PBXTargetDependency */, + OBJ_1999 /* PBXTargetDependency */, + OBJ_2000 /* PBXTargetDependency */, + OBJ_2001 /* PBXTargetDependency */, + OBJ_2002 /* PBXTargetDependency */, + OBJ_2003 /* PBXTargetDependency */, + OBJ_2004 /* PBXTargetDependency */, + OBJ_2005 /* PBXTargetDependency */, + OBJ_2006 /* PBXTargetDependency */, + OBJ_2007 /* PBXTargetDependency */, + OBJ_2008 /* PBXTargetDependency */, + OBJ_2009 /* PBXTargetDependency */, + OBJ_2010 /* PBXTargetDependency */, + OBJ_2011 /* PBXTargetDependency */, + OBJ_2012 /* PBXTargetDependency */, + ); + name = Run; + productName = Run; + productReference = "CapCollectorServer::Run::Product" /* Run */; + productType = "com.apple.product-type.tool"; + }; + "CapCollectorServer::SwiftPMPackageDescription" /* CapCollectorServerPackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1122 /* Build configuration list for PBXNativeTarget "CapCollectorServerPackageDescription" */; + buildPhases = ( + OBJ_1125 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CapCollectorServerPackageDescription; + productName = CapCollectorServerPackageDescription; + productType = "com.apple.product-type.framework"; + }; + "Console::Command" /* Command */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1132 /* Build configuration list for PBXNativeTarget "Command" */; + buildPhases = ( + OBJ_1135 /* Sources */, + OBJ_1152 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1169 /* PBXTargetDependency */, + OBJ_1170 /* PBXTargetDependency */, + OBJ_1171 /* PBXTargetDependency */, + OBJ_1172 /* PBXTargetDependency */, + OBJ_1173 /* PBXTargetDependency */, + OBJ_1174 /* PBXTargetDependency */, + OBJ_1175 /* PBXTargetDependency */, + OBJ_1176 /* PBXTargetDependency */, + OBJ_1177 /* PBXTargetDependency */, + OBJ_1178 /* PBXTargetDependency */, + OBJ_1179 /* PBXTargetDependency */, + OBJ_1180 /* PBXTargetDependency */, + OBJ_1181 /* PBXTargetDependency */, + OBJ_1182 /* PBXTargetDependency */, + OBJ_1183 /* PBXTargetDependency */, + OBJ_1184 /* PBXTargetDependency */, + ); + name = Command; + productName = Command; + productReference = "Console::Command::Product" /* Command.framework */; + productType = "com.apple.product-type.framework"; + }; + "Console::Console" /* Console */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1185 /* Build configuration list for PBXNativeTarget "Console" */; + buildPhases = ( + OBJ_1188 /* Sources */, + OBJ_1217 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1233 /* PBXTargetDependency */, + OBJ_1234 /* PBXTargetDependency */, + OBJ_1235 /* PBXTargetDependency */, + OBJ_1236 /* PBXTargetDependency */, + OBJ_1237 /* PBXTargetDependency */, + OBJ_1238 /* PBXTargetDependency */, + OBJ_1239 /* PBXTargetDependency */, + OBJ_1240 /* PBXTargetDependency */, + OBJ_1241 /* PBXTargetDependency */, + OBJ_1242 /* PBXTargetDependency */, + OBJ_1243 /* PBXTargetDependency */, + OBJ_1244 /* PBXTargetDependency */, + OBJ_1245 /* PBXTargetDependency */, + OBJ_1246 /* PBXTargetDependency */, + OBJ_1247 /* PBXTargetDependency */, + ); + name = Console; + productName = Console; + productReference = "Console::Console::Product" /* Console.framework */; + productType = "com.apple.product-type.framework"; + }; + "Console::Logging" /* Logging */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1530 /* Build configuration list for PBXNativeTarget "Logging" */; + buildPhases = ( + OBJ_1533 /* Sources */, + OBJ_1538 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1552 /* PBXTargetDependency */, + OBJ_1553 /* PBXTargetDependency */, + OBJ_1554 /* PBXTargetDependency */, + OBJ_1555 /* PBXTargetDependency */, + OBJ_1556 /* PBXTargetDependency */, + OBJ_1557 /* PBXTargetDependency */, + OBJ_1558 /* PBXTargetDependency */, + OBJ_1559 /* PBXTargetDependency */, + OBJ_1560 /* PBXTargetDependency */, + OBJ_1561 /* PBXTargetDependency */, + OBJ_1562 /* PBXTargetDependency */, + OBJ_1563 /* PBXTargetDependency */, + OBJ_1564 /* PBXTargetDependency */, + ); + name = Logging; + productName = Logging; + productReference = "Console::Logging::Product" /* Logging.framework */; + productType = "com.apple.product-type.framework"; + }; + "Console::SwiftPMPackageDescription" /* ConsolePackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1249 /* Build configuration list for PBXNativeTarget "ConsolePackageDescription" */; + buildPhases = ( + OBJ_1252 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = ConsolePackageDescription; + productName = ConsolePackageDescription; + productType = "com.apple.product-type.framework"; + }; + "Core::Async" /* Async */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_970 /* Build configuration list for PBXNativeTarget "Async" */; + buildPhases = ( + OBJ_973 /* Sources */, + OBJ_989 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_997 /* PBXTargetDependency */, + OBJ_998 /* PBXTargetDependency */, + OBJ_999 /* PBXTargetDependency */, + OBJ_1000 /* PBXTargetDependency */, + OBJ_1001 /* PBXTargetDependency */, + OBJ_1002 /* PBXTargetDependency */, + OBJ_1003 /* PBXTargetDependency */, + ); + name = Async; + productName = Async; + productReference = "Core::Async::Product" /* Async.framework */; + productType = "com.apple.product-type.framework"; + }; + "Core::Bits" /* Bits */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1004 /* Build configuration list for PBXNativeTarget "Bits" */; + buildPhases = ( + OBJ_1007 /* Sources */, + OBJ_1020 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1029 /* PBXTargetDependency */, + OBJ_1030 /* PBXTargetDependency */, + OBJ_1031 /* PBXTargetDependency */, + OBJ_1032 /* PBXTargetDependency */, + OBJ_1033 /* PBXTargetDependency */, + OBJ_1034 /* PBXTargetDependency */, + OBJ_1035 /* PBXTargetDependency */, + OBJ_1036 /* PBXTargetDependency */, + ); + name = Bits; + productName = Bits; + productReference = "Core::Bits::Product" /* Bits.framework */; + productType = "com.apple.product-type.framework"; + }; + "Core::COperatingSystem" /* COperatingSystem */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1115 /* Build configuration list for PBXNativeTarget "COperatingSystem" */; + buildPhases = ( + OBJ_1118 /* Sources */, + OBJ_1120 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = COperatingSystem; + productName = COperatingSystem; + productReference = "Core::COperatingSystem::Product" /* COperatingSystem.framework */; + productType = "com.apple.product-type.framework"; + }; + "Core::Core" /* Core */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1254 /* Build configuration list for PBXNativeTarget "Core" */; + buildPhases = ( + OBJ_1257 /* Sources */, + OBJ_1283 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1296 /* PBXTargetDependency */, + OBJ_1297 /* PBXTargetDependency */, + OBJ_1298 /* PBXTargetDependency */, + OBJ_1299 /* PBXTargetDependency */, + OBJ_1300 /* PBXTargetDependency */, + OBJ_1301 /* PBXTargetDependency */, + OBJ_1302 /* PBXTargetDependency */, + OBJ_1303 /* PBXTargetDependency */, + OBJ_1304 /* PBXTargetDependency */, + OBJ_1305 /* PBXTargetDependency */, + OBJ_1306 /* PBXTargetDependency */, + OBJ_1307 /* PBXTargetDependency */, + ); + name = Core; + productName = Core; + productReference = "Core::Core::Product" /* Core.framework */; + productType = "com.apple.product-type.framework"; + }; + "Core::Debugging" /* Debugging */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1447 /* Build configuration list for PBXNativeTarget "Debugging" */; + buildPhases = ( + OBJ_1450 /* Sources */, + OBJ_1454 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Debugging; + productName = Debugging; + productReference = "Core::Debugging::Product" /* Debugging.framework */; + productType = "com.apple.product-type.framework"; + }; + "Core::SwiftPMPackageDescription" /* CorePackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1309 /* Build configuration list for PBXNativeTarget "CorePackageDescription" */; + buildPhases = ( + OBJ_1312 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CorePackageDescription; + productName = CorePackageDescription; + productType = "com.apple.product-type.framework"; + }; + "Crypto::CBase32" /* CBase32 */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1037 /* Build configuration list for PBXNativeTarget "CBase32" */; + buildPhases = ( + OBJ_1040 /* Sources */, + OBJ_1042 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CBase32; + productName = CBase32; + productReference = "Crypto::CBase32::Product" /* CBase32.framework */; + productType = "com.apple.product-type.framework"; + }; + "Crypto::CBcrypt" /* CBcrypt */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1043 /* Build configuration list for PBXNativeTarget "CBcrypt" */; + buildPhases = ( + OBJ_1046 /* Sources */, + OBJ_1049 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CBcrypt; + productName = CBcrypt; + productReference = "Crypto::CBcrypt::Product" /* CBcrypt.framework */; + productType = "com.apple.product-type.framework"; + }; + "Crypto::CCryptoOpenSSL" /* CCryptoOpenSSL */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1050 /* Build configuration list for PBXNativeTarget "CCryptoOpenSSL" */; + buildPhases = ( + OBJ_1053 /* Sources */, + OBJ_1055 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CCryptoOpenSSL; + productName = CCryptoOpenSSL; + productReference = "Crypto::CCryptoOpenSSL::Product" /* CCryptoOpenSSL.framework */; + productType = "com.apple.product-type.framework"; + }; + "Crypto::Crypto" /* Crypto */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1314 /* Build configuration list for PBXNativeTarget "Crypto" */; + buildPhases = ( + OBJ_1317 /* Sources */, + OBJ_1337 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1355 /* PBXTargetDependency */, + OBJ_1356 /* PBXTargetDependency */, + OBJ_1357 /* PBXTargetDependency */, + OBJ_1358 /* PBXTargetDependency */, + OBJ_1359 /* PBXTargetDependency */, + OBJ_1360 /* PBXTargetDependency */, + OBJ_1361 /* PBXTargetDependency */, + OBJ_1362 /* PBXTargetDependency */, + OBJ_1363 /* PBXTargetDependency */, + OBJ_1364 /* PBXTargetDependency */, + OBJ_1365 /* PBXTargetDependency */, + OBJ_1366 /* PBXTargetDependency */, + OBJ_1367 /* PBXTargetDependency */, + OBJ_1368 /* PBXTargetDependency */, + OBJ_1369 /* PBXTargetDependency */, + OBJ_1370 /* PBXTargetDependency */, + OBJ_1371 /* PBXTargetDependency */, + ); + name = Crypto; + productName = Crypto; + productReference = "Crypto::Crypto::Product" /* Crypto.framework */; + productType = "com.apple.product-type.framework"; + }; + "Crypto::Random" /* Random */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1846 /* Build configuration list for PBXNativeTarget "Random" */; + buildPhases = ( + OBJ_1849 /* Sources */, + OBJ_1854 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1864 /* PBXTargetDependency */, + OBJ_1865 /* PBXTargetDependency */, + OBJ_1866 /* PBXTargetDependency */, + OBJ_1867 /* PBXTargetDependency */, + OBJ_1868 /* PBXTargetDependency */, + OBJ_1869 /* PBXTargetDependency */, + OBJ_1870 /* PBXTargetDependency */, + OBJ_1871 /* PBXTargetDependency */, + OBJ_1872 /* PBXTargetDependency */, + ); + name = Random; + productName = Random; + productReference = "Crypto::Random::Product" /* Random.framework */; + productType = "com.apple.product-type.framework"; + }; + "Crypto::SwiftPMPackageDescription" /* CryptoPackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1373 /* Build configuration list for PBXNativeTarget "CryptoPackageDescription" */; + buildPhases = ( + OBJ_1376 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CryptoPackageDescription; + productName = CryptoPackageDescription; + productType = "com.apple.product-type.framework"; + }; + "DatabaseKit::DatabaseKit" /* DatabaseKit */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1378 /* Build configuration list for PBXNativeTarget "DatabaseKit" */; + buildPhases = ( + OBJ_1381 /* Sources */, + OBJ_1412 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1427 /* PBXTargetDependency */, + OBJ_1428 /* PBXTargetDependency */, + OBJ_1429 /* PBXTargetDependency */, + OBJ_1430 /* PBXTargetDependency */, + OBJ_1431 /* PBXTargetDependency */, + OBJ_1432 /* PBXTargetDependency */, + OBJ_1433 /* PBXTargetDependency */, + OBJ_1434 /* PBXTargetDependency */, + OBJ_1435 /* PBXTargetDependency */, + OBJ_1436 /* PBXTargetDependency */, + OBJ_1437 /* PBXTargetDependency */, + OBJ_1438 /* PBXTargetDependency */, + OBJ_1439 /* PBXTargetDependency */, + OBJ_1440 /* PBXTargetDependency */, + ); + name = DatabaseKit; + productName = DatabaseKit; + productReference = "DatabaseKit::DatabaseKit::Product" /* DatabaseKit.framework */; + productType = "com.apple.product-type.framework"; + }; + "DatabaseKit::SwiftPMPackageDescription" /* DatabaseKitPackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1442 /* Build configuration list for PBXNativeTarget "DatabaseKitPackageDescription" */; + buildPhases = ( + OBJ_1445 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = DatabaseKitPackageDescription; + productName = DatabaseKitPackageDescription; + productType = "com.apple.product-type.framework"; + }; + "HTTP::HTTP" /* HTTP */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1455 /* Build configuration list for PBXNativeTarget "HTTP" */; + buildPhases = ( + OBJ_1458 /* Sources */, + OBJ_1485 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1505 /* PBXTargetDependency */, + OBJ_1506 /* PBXTargetDependency */, + OBJ_1507 /* PBXTargetDependency */, + OBJ_1508 /* PBXTargetDependency */, + OBJ_1509 /* PBXTargetDependency */, + OBJ_1510 /* PBXTargetDependency */, + OBJ_1511 /* PBXTargetDependency */, + OBJ_1512 /* PBXTargetDependency */, + OBJ_1513 /* PBXTargetDependency */, + OBJ_1514 /* PBXTargetDependency */, + OBJ_1515 /* PBXTargetDependency */, + OBJ_1516 /* PBXTargetDependency */, + OBJ_1517 /* PBXTargetDependency */, + OBJ_1518 /* PBXTargetDependency */, + OBJ_1519 /* PBXTargetDependency */, + OBJ_1520 /* PBXTargetDependency */, + OBJ_1521 /* PBXTargetDependency */, + OBJ_1522 /* PBXTargetDependency */, + OBJ_1523 /* PBXTargetDependency */, + ); + name = HTTP; + productName = HTTP; + productReference = "HTTP::HTTP::Product" /* HTTP.framework */; + productType = "com.apple.product-type.framework"; + }; + "HTTP::SwiftPMPackageDescription" /* HTTPPackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1525 /* Build configuration list for PBXNativeTarget "HTTPPackageDescription" */; + buildPhases = ( + OBJ_1528 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = HTTPPackageDescription; + productName = HTTPPackageDescription; + productType = "com.apple.product-type.framework"; + }; + "Multipart::Multipart" /* Multipart */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1565 /* Build configuration list for PBXNativeTarget "Multipart" */; + buildPhases = ( + OBJ_1568 /* Sources */, + OBJ_1577 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1591 /* PBXTargetDependency */, + OBJ_1592 /* PBXTargetDependency */, + OBJ_1593 /* PBXTargetDependency */, + OBJ_1594 /* PBXTargetDependency */, + OBJ_1595 /* PBXTargetDependency */, + OBJ_1596 /* PBXTargetDependency */, + OBJ_1597 /* PBXTargetDependency */, + OBJ_1598 /* PBXTargetDependency */, + OBJ_1599 /* PBXTargetDependency */, + OBJ_1600 /* PBXTargetDependency */, + OBJ_1601 /* PBXTargetDependency */, + OBJ_1602 /* PBXTargetDependency */, + OBJ_1603 /* PBXTargetDependency */, + ); + name = Multipart; + productName = Multipart; + productReference = "Multipart::Multipart::Product" /* Multipart.framework */; + productType = "com.apple.product-type.framework"; + }; + "Multipart::SwiftPMPackageDescription" /* MultipartPackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1605 /* Build configuration list for PBXNativeTarget "MultipartPackageDescription" */; + buildPhases = ( + OBJ_1608 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = MultipartPackageDescription; + productName = MultipartPackageDescription; + productType = "com.apple.product-type.framework"; + }; + "Routing::Routing" /* Routing */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1873 /* Build configuration list for PBXNativeTarget "Routing" */; + buildPhases = ( + OBJ_1876 /* Sources */, + OBJ_1889 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1904 /* PBXTargetDependency */, + OBJ_1905 /* PBXTargetDependency */, + OBJ_1906 /* PBXTargetDependency */, + OBJ_1907 /* PBXTargetDependency */, + OBJ_1908 /* PBXTargetDependency */, + OBJ_1909 /* PBXTargetDependency */, + OBJ_1910 /* PBXTargetDependency */, + OBJ_1911 /* PBXTargetDependency */, + OBJ_1912 /* PBXTargetDependency */, + OBJ_1913 /* PBXTargetDependency */, + OBJ_1914 /* PBXTargetDependency */, + OBJ_1915 /* PBXTargetDependency */, + OBJ_1916 /* PBXTargetDependency */, + OBJ_1917 /* PBXTargetDependency */, + ); + name = Routing; + productName = Routing; + productReference = "Routing::Routing::Product" /* Routing.framework */; + productType = "com.apple.product-type.framework"; + }; + "Routing::SwiftPMPackageDescription" /* RoutingPackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1919 /* Build configuration list for PBXNativeTarget "RoutingPackageDescription" */; + buildPhases = ( + OBJ_1922 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = RoutingPackageDescription; + productName = RoutingPackageDescription; + productType = "com.apple.product-type.framework"; + }; + "SQLite.swift::SQLite" /* SQLite */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2013 /* Build configuration list for PBXNativeTarget "SQLite" */; + buildPhases = ( + OBJ_2016 /* Sources */, + OBJ_2039 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_2041 /* PBXTargetDependency */, + ); + name = SQLite; + productName = SQLite; + productReference = "SQLite.swift::SQLite::Product" /* SQLite.framework */; + productType = "com.apple.product-type.framework"; + }; + "SQLite.swift::SQLiteObjc" /* SQLiteObjc */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2048 /* Build configuration list for PBXNativeTarget "SQLiteObjc" */; + buildPhases = ( + OBJ_2051 /* Sources */, + OBJ_2053 /* Headers */, + OBJ_2055 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SQLiteObjc; + productName = SQLiteObjc; + productReference = "SQLite.swift::SQLiteObjc::Product" /* SQLiteObjc.framework */; + productType = "com.apple.product-type.framework"; + }; + "SQLite.swift::SwiftPMPackageDescription" /* SQLite.swiftPackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2043 /* Build configuration list for PBXNativeTarget "SQLite.swiftPackageDescription" */; + buildPhases = ( + OBJ_2046 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SQLite.swiftPackageDescription; + productName = SQLite.swiftPackageDescription; + productType = "com.apple.product-type.framework"; + }; + "Service::Service" /* Service */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2056 /* Build configuration list for PBXNativeTarget "Service" */; + buildPhases = ( + OBJ_2059 /* Sources */, + OBJ_2080 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_2094 /* PBXTargetDependency */, + OBJ_2095 /* PBXTargetDependency */, + OBJ_2096 /* PBXTargetDependency */, + OBJ_2097 /* PBXTargetDependency */, + OBJ_2098 /* PBXTargetDependency */, + OBJ_2099 /* PBXTargetDependency */, + OBJ_2100 /* PBXTargetDependency */, + OBJ_2101 /* PBXTargetDependency */, + OBJ_2102 /* PBXTargetDependency */, + OBJ_2103 /* PBXTargetDependency */, + OBJ_2104 /* PBXTargetDependency */, + OBJ_2105 /* PBXTargetDependency */, + OBJ_2106 /* PBXTargetDependency */, + ); + name = Service; + productName = Service; + productReference = "Service::Service::Product" /* Service.framework */; + productType = "com.apple.product-type.framework"; + }; + "Service::SwiftPMPackageDescription" /* ServicePackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2108 /* Build configuration list for PBXNativeTarget "ServicePackageDescription" */; + buildPhases = ( + OBJ_2111 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = ServicePackageDescription; + productName = ServicePackageDescription; + productType = "com.apple.product-type.framework"; + }; + "TemplateKit::SwiftPMPackageDescription" /* TemplateKitPackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2188 /* Build configuration list for PBXNativeTarget "TemplateKitPackageDescription" */; + buildPhases = ( + OBJ_2191 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = TemplateKitPackageDescription; + productName = TemplateKitPackageDescription; + productType = "com.apple.product-type.framework"; + }; + "TemplateKit::TemplateKit" /* TemplateKit */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2113 /* Build configuration list for PBXNativeTarget "TemplateKit" */; + buildPhases = ( + OBJ_2116 /* Sources */, + OBJ_2158 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_2173 /* PBXTargetDependency */, + OBJ_2174 /* PBXTargetDependency */, + OBJ_2175 /* PBXTargetDependency */, + OBJ_2176 /* PBXTargetDependency */, + OBJ_2177 /* PBXTargetDependency */, + OBJ_2178 /* PBXTargetDependency */, + OBJ_2179 /* PBXTargetDependency */, + OBJ_2180 /* PBXTargetDependency */, + OBJ_2181 /* PBXTargetDependency */, + OBJ_2182 /* PBXTargetDependency */, + OBJ_2183 /* PBXTargetDependency */, + OBJ_2184 /* PBXTargetDependency */, + OBJ_2185 /* PBXTargetDependency */, + OBJ_2186 /* PBXTargetDependency */, + ); + name = TemplateKit; + productName = TemplateKit; + productReference = "TemplateKit::TemplateKit::Product" /* TemplateKit.framework */; + productType = "com.apple.product-type.framework"; + }; + "URLEncodedForm::SwiftPMPackageDescription" /* URLEncodedFormPackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2233 /* Build configuration list for PBXNativeTarget "URLEncodedFormPackageDescription" */; + buildPhases = ( + OBJ_2236 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = URLEncodedFormPackageDescription; + productName = URLEncodedFormPackageDescription; + productType = "com.apple.product-type.framework"; + }; + "URLEncodedForm::URLEncodedForm" /* URLEncodedForm */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2193 /* Build configuration list for PBXNativeTarget "URLEncodedForm" */; + buildPhases = ( + OBJ_2196 /* Sources */, + OBJ_2205 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_2219 /* PBXTargetDependency */, + OBJ_2220 /* PBXTargetDependency */, + OBJ_2221 /* PBXTargetDependency */, + OBJ_2222 /* PBXTargetDependency */, + OBJ_2223 /* PBXTargetDependency */, + OBJ_2224 /* PBXTargetDependency */, + OBJ_2225 /* PBXTargetDependency */, + OBJ_2226 /* PBXTargetDependency */, + OBJ_2227 /* PBXTargetDependency */, + OBJ_2228 /* PBXTargetDependency */, + OBJ_2229 /* PBXTargetDependency */, + OBJ_2230 /* PBXTargetDependency */, + OBJ_2231 /* PBXTargetDependency */, + ); + name = URLEncodedForm; + productName = URLEncodedForm; + productReference = "URLEncodedForm::URLEncodedForm::Product" /* URLEncodedForm.framework */; + productType = "com.apple.product-type.framework"; + }; + "Validation::SwiftPMPackageDescription" /* ValidationPackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2288 /* Build configuration list for PBXNativeTarget "ValidationPackageDescription" */; + buildPhases = ( + OBJ_2291 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = ValidationPackageDescription; + productName = ValidationPackageDescription; + productType = "com.apple.product-type.framework"; + }; + "Validation::Validation" /* Validation */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2238 /* Build configuration list for PBXNativeTarget "Validation" */; + buildPhases = ( + OBJ_2241 /* Sources */, + OBJ_2260 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_2274 /* PBXTargetDependency */, + OBJ_2275 /* PBXTargetDependency */, + OBJ_2276 /* PBXTargetDependency */, + OBJ_2277 /* PBXTargetDependency */, + OBJ_2278 /* PBXTargetDependency */, + OBJ_2279 /* PBXTargetDependency */, + OBJ_2280 /* PBXTargetDependency */, + OBJ_2281 /* PBXTargetDependency */, + OBJ_2282 /* PBXTargetDependency */, + OBJ_2283 /* PBXTargetDependency */, + OBJ_2284 /* PBXTargetDependency */, + OBJ_2285 /* PBXTargetDependency */, + OBJ_2286 /* PBXTargetDependency */, + ); + name = Validation; + productName = Validation; + productReference = "Validation::Validation::Product" /* Validation.framework */; + productType = "com.apple.product-type.framework"; + }; + "Vapor::SwiftPMPackageDescription" /* VaporPackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2448 /* Build configuration list for PBXNativeTarget "VaporPackageDescription" */; + buildPhases = ( + OBJ_2451 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = VaporPackageDescription; + productName = VaporPackageDescription; + productType = "com.apple.product-type.framework"; + }; + "Vapor::Vapor" /* Vapor */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2293 /* Build configuration list for PBXNativeTarget "Vapor" */; + buildPhases = ( + OBJ_2296 /* Sources */, + OBJ_2372 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_2410 /* PBXTargetDependency */, + OBJ_2411 /* PBXTargetDependency */, + OBJ_2412 /* PBXTargetDependency */, + OBJ_2413 /* PBXTargetDependency */, + OBJ_2414 /* PBXTargetDependency */, + OBJ_2415 /* PBXTargetDependency */, + OBJ_2416 /* PBXTargetDependency */, + OBJ_2417 /* PBXTargetDependency */, + OBJ_2418 /* PBXTargetDependency */, + OBJ_2419 /* PBXTargetDependency */, + OBJ_2420 /* PBXTargetDependency */, + OBJ_2421 /* PBXTargetDependency */, + OBJ_2422 /* PBXTargetDependency */, + OBJ_2423 /* PBXTargetDependency */, + OBJ_2424 /* PBXTargetDependency */, + OBJ_2425 /* PBXTargetDependency */, + OBJ_2426 /* PBXTargetDependency */, + OBJ_2427 /* PBXTargetDependency */, + OBJ_2428 /* PBXTargetDependency */, + OBJ_2429 /* PBXTargetDependency */, + OBJ_2430 /* PBXTargetDependency */, + OBJ_2431 /* PBXTargetDependency */, + OBJ_2432 /* PBXTargetDependency */, + OBJ_2433 /* PBXTargetDependency */, + OBJ_2434 /* PBXTargetDependency */, + OBJ_2435 /* PBXTargetDependency */, + OBJ_2436 /* PBXTargetDependency */, + OBJ_2437 /* PBXTargetDependency */, + OBJ_2438 /* PBXTargetDependency */, + OBJ_2439 /* PBXTargetDependency */, + OBJ_2440 /* PBXTargetDependency */, + OBJ_2441 /* PBXTargetDependency */, + OBJ_2442 /* PBXTargetDependency */, + OBJ_2443 /* PBXTargetDependency */, + OBJ_2444 /* PBXTargetDependency */, + OBJ_2445 /* PBXTargetDependency */, + OBJ_2446 /* PBXTargetDependency */, + ); + name = Vapor; + productName = Vapor; + productReference = "Vapor::Vapor::Product" /* Vapor.framework */; + productType = "com.apple.product-type.framework"; + }; + "WebSocket::SwiftPMPackageDescription" /* WebSocketPackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2517 /* Build configuration list for PBXNativeTarget "WebSocketPackageDescription" */; + buildPhases = ( + OBJ_2520 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = WebSocketPackageDescription; + productName = WebSocketPackageDescription; + productType = "com.apple.product-type.framework"; + }; + "WebSocket::WebSocket" /* WebSocket */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2453 /* Build configuration list for PBXNativeTarget "WebSocket" */; + buildPhases = ( + OBJ_2456 /* Sources */, + OBJ_2463 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_2490 /* PBXTargetDependency */, + OBJ_2491 /* PBXTargetDependency */, + OBJ_2492 /* PBXTargetDependency */, + OBJ_2493 /* PBXTargetDependency */, + OBJ_2494 /* PBXTargetDependency */, + OBJ_2495 /* PBXTargetDependency */, + OBJ_2496 /* PBXTargetDependency */, + OBJ_2497 /* PBXTargetDependency */, + OBJ_2498 /* PBXTargetDependency */, + OBJ_2499 /* PBXTargetDependency */, + OBJ_2500 /* PBXTargetDependency */, + OBJ_2501 /* PBXTargetDependency */, + OBJ_2502 /* PBXTargetDependency */, + OBJ_2503 /* PBXTargetDependency */, + OBJ_2504 /* PBXTargetDependency */, + OBJ_2505 /* PBXTargetDependency */, + OBJ_2506 /* PBXTargetDependency */, + OBJ_2507 /* PBXTargetDependency */, + OBJ_2508 /* PBXTargetDependency */, + OBJ_2509 /* PBXTargetDependency */, + OBJ_2510 /* PBXTargetDependency */, + OBJ_2511 /* PBXTargetDependency */, + OBJ_2512 /* PBXTargetDependency */, + OBJ_2513 /* PBXTargetDependency */, + OBJ_2514 /* PBXTargetDependency */, + OBJ_2515 /* PBXTargetDependency */, + ); + name = WebSocket; + productName = WebSocket; + productReference = "WebSocket::WebSocket::Product" /* WebSocket.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio-ssl::CNIOOpenSSL" /* CNIOOpenSSL */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1092 /* Build configuration list for PBXNativeTarget "CNIOOpenSSL" */; + buildPhases = ( + OBJ_1095 /* Sources */, + OBJ_1098 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CNIOOpenSSL; + productName = CNIOOpenSSL; + productReference = "swift-nio-ssl::CNIOOpenSSL::Product" /* CNIOOpenSSL.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio-ssl::NIOOpenSSL" /* NIOOpenSSL */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1743 /* Build configuration list for PBXNativeTarget "NIOOpenSSL" */; + buildPhases = ( + OBJ_1746 /* Sources */, + OBJ_1764 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1774 /* PBXTargetDependency */, + OBJ_1775 /* PBXTargetDependency */, + OBJ_1776 /* PBXTargetDependency */, + OBJ_1777 /* PBXTargetDependency */, + OBJ_1778 /* PBXTargetDependency */, + OBJ_1779 /* PBXTargetDependency */, + OBJ_1780 /* PBXTargetDependency */, + OBJ_1781 /* PBXTargetDependency */, + OBJ_1782 /* PBXTargetDependency */, + ); + name = NIOOpenSSL; + productName = NIOOpenSSL; + productReference = "swift-nio-ssl::NIOOpenSSL::Product" /* NIOOpenSSL.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio-ssl::SwiftPMPackageDescription" /* swift-nio-sslPackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2523 /* Build configuration list for PBXNativeTarget "swift-nio-sslPackageDescription" */; + buildPhases = ( + OBJ_2526 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "swift-nio-sslPackageDescription"; + productName = "swift-nio-sslPackageDescription"; + productType = "com.apple.product-type.framework"; + }; + "swift-nio::CNIOAtomics" /* CNIOAtomics */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1056 /* Build configuration list for PBXNativeTarget "CNIOAtomics" */; + buildPhases = ( + OBJ_1059 /* Sources */, + OBJ_1061 /* Headers */, + OBJ_1064 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CNIOAtomics; + productName = CNIOAtomics; + productReference = "swift-nio::CNIOAtomics::Product" /* CNIOAtomics.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio::CNIODarwin" /* CNIODarwin */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1065 /* Build configuration list for PBXNativeTarget "CNIODarwin" */; + buildPhases = ( + OBJ_1068 /* Sources */, + OBJ_1070 /* Headers */, + OBJ_1072 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CNIODarwin; + productName = CNIODarwin; + productReference = "swift-nio::CNIODarwin::Product" /* CNIODarwin.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio::CNIOHTTPParser" /* CNIOHTTPParser */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1073 /* Build configuration list for PBXNativeTarget "CNIOHTTPParser" */; + buildPhases = ( + OBJ_1076 /* Sources */, + OBJ_1078 /* Headers */, + OBJ_1081 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CNIOHTTPParser; + productName = CNIOHTTPParser; + productReference = "swift-nio::CNIOHTTPParser::Product" /* CNIOHTTPParser.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio::CNIOLinux" /* CNIOLinux */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1082 /* Build configuration list for PBXNativeTarget "CNIOLinux" */; + buildPhases = ( + OBJ_1085 /* Sources */, + OBJ_1088 /* Headers */, + OBJ_1091 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CNIOLinux; + productName = CNIOLinux; + productReference = "swift-nio::CNIOLinux::Product" /* CNIOLinux.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio::CNIOSHA1" /* CNIOSHA1 */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1099 /* Build configuration list for PBXNativeTarget "CNIOSHA1" */; + buildPhases = ( + OBJ_1102 /* Sources */, + OBJ_1104 /* Headers */, + OBJ_1106 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CNIOSHA1; + productName = CNIOSHA1; + productReference = "swift-nio::CNIOSHA1::Product" /* CNIOSHA1.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio::CNIOZlib" /* CNIOZlib */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1107 /* Build configuration list for PBXNativeTarget "CNIOZlib" */; + buildPhases = ( + OBJ_1110 /* Sources */, + OBJ_1112 /* Headers */, + OBJ_1114 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CNIOZlib; + productName = CNIOZlib; + productReference = "swift-nio::CNIOZlib::Product" /* CNIOZlib.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio::NIO" /* NIO */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1610 /* Build configuration list for PBXNativeTarget "NIO" */; + buildPhases = ( + OBJ_1613 /* Sources */, + OBJ_1669 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1676 /* PBXTargetDependency */, + OBJ_1677 /* PBXTargetDependency */, + OBJ_1678 /* PBXTargetDependency */, + OBJ_1679 /* PBXTargetDependency */, + OBJ_1680 /* PBXTargetDependency */, + OBJ_1681 /* PBXTargetDependency */, + ); + name = NIO; + productName = NIO; + productReference = "swift-nio::NIO::Product" /* NIO.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1682 /* Build configuration list for PBXNativeTarget "NIOConcurrencyHelpers" */; + buildPhases = ( + OBJ_1685 /* Sources */, + OBJ_1688 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1690 /* PBXTargetDependency */, + ); + name = NIOConcurrencyHelpers; + productName = NIOConcurrencyHelpers; + productReference = "swift-nio::NIOConcurrencyHelpers::Product" /* NIOConcurrencyHelpers.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1691 /* Build configuration list for PBXNativeTarget "NIOFoundationCompat" */; + buildPhases = ( + OBJ_1694 /* Sources */, + OBJ_1696 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1704 /* PBXTargetDependency */, + OBJ_1705 /* PBXTargetDependency */, + OBJ_1706 /* PBXTargetDependency */, + OBJ_1707 /* PBXTargetDependency */, + OBJ_1708 /* PBXTargetDependency */, + OBJ_1709 /* PBXTargetDependency */, + OBJ_1710 /* PBXTargetDependency */, + ); + name = NIOFoundationCompat; + productName = NIOFoundationCompat; + productReference = "swift-nio::NIOFoundationCompat::Product" /* NIOFoundationCompat.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio::NIOHTTP1" /* NIOHTTP1 */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1711 /* Build configuration list for PBXNativeTarget "NIOHTTP1" */; + buildPhases = ( + OBJ_1714 /* Sources */, + OBJ_1724 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1734 /* PBXTargetDependency */, + OBJ_1735 /* PBXTargetDependency */, + OBJ_1736 /* PBXTargetDependency */, + OBJ_1737 /* PBXTargetDependency */, + OBJ_1738 /* PBXTargetDependency */, + OBJ_1739 /* PBXTargetDependency */, + OBJ_1740 /* PBXTargetDependency */, + OBJ_1741 /* PBXTargetDependency */, + OBJ_1742 /* PBXTargetDependency */, + ); + name = NIOHTTP1; + productName = NIOHTTP1; + productReference = "swift-nio::NIOHTTP1::Product" /* NIOHTTP1.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1783 /* Build configuration list for PBXNativeTarget "NIOPriorityQueue" */; + buildPhases = ( + OBJ_1786 /* Sources */, + OBJ_1789 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = NIOPriorityQueue; + productName = NIOPriorityQueue; + productReference = "swift-nio::NIOPriorityQueue::Product" /* NIOPriorityQueue.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio::NIOTLS" /* NIOTLS */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1790 /* Build configuration list for PBXNativeTarget "NIOTLS" */; + buildPhases = ( + OBJ_1793 /* Sources */, + OBJ_1797 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1805 /* PBXTargetDependency */, + OBJ_1806 /* PBXTargetDependency */, + OBJ_1807 /* PBXTargetDependency */, + OBJ_1808 /* PBXTargetDependency */, + OBJ_1809 /* PBXTargetDependency */, + OBJ_1810 /* PBXTargetDependency */, + OBJ_1811 /* PBXTargetDependency */, + ); + name = NIOTLS; + productName = NIOTLS; + productReference = "swift-nio::NIOTLS::Product" /* NIOTLS.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio::NIOWebSocket" /* NIOWebSocket */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_1812 /* Build configuration list for PBXNativeTarget "NIOWebSocket" */; + buildPhases = ( + OBJ_1815 /* Sources */, + OBJ_1825 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + OBJ_1836 /* PBXTargetDependency */, + OBJ_1837 /* PBXTargetDependency */, + OBJ_1838 /* PBXTargetDependency */, + OBJ_1839 /* PBXTargetDependency */, + OBJ_1840 /* PBXTargetDependency */, + OBJ_1841 /* PBXTargetDependency */, + OBJ_1842 /* PBXTargetDependency */, + OBJ_1843 /* PBXTargetDependency */, + OBJ_1844 /* PBXTargetDependency */, + OBJ_1845 /* PBXTargetDependency */, + ); + name = NIOWebSocket; + productName = NIOWebSocket; + productReference = "swift-nio::NIOWebSocket::Product" /* NIOWebSocket.framework */; + productType = "com.apple.product-type.framework"; + }; + "swift-nio::SwiftPMPackageDescription" /* swift-nioPackageDescription */ = { + isa = PBXNativeTarget; + buildConfigurationList = OBJ_2529 /* Build configuration list for PBXNativeTarget "swift-nioPackageDescription" */; + buildPhases = ( + OBJ_2532 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "swift-nioPackageDescription"; + productName = "swift-nioPackageDescription"; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + OBJ_1 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftMigration = 9999; + LastUpgradeCheck = 9999; + }; + buildConfigurationList = OBJ_2 /* Build configuration list for PBXProject "CapCollectorServer" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = OBJ_5 /* */; + productRefGroup = OBJ_702 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + "CapCollectorServer::App" /* App */, + "CapCollectorServer::AppTests" /* AppTests */, + "Core::Async" /* Async */, + "Core::Bits" /* Bits */, + "Crypto::CBase32" /* CBase32 */, + "Crypto::CBcrypt" /* CBcrypt */, + "Crypto::CCryptoOpenSSL" /* CCryptoOpenSSL */, + "swift-nio::CNIOAtomics" /* CNIOAtomics */, + "swift-nio::CNIODarwin" /* CNIODarwin */, + "swift-nio::CNIOHTTPParser" /* CNIOHTTPParser */, + "swift-nio::CNIOLinux" /* CNIOLinux */, + "swift-nio-ssl::CNIOOpenSSL" /* CNIOOpenSSL */, + "swift-nio::CNIOSHA1" /* CNIOSHA1 */, + "swift-nio::CNIOZlib" /* CNIOZlib */, + "Core::COperatingSystem" /* COperatingSystem */, + "CapCollectorServer::SwiftPMPackageDescription" /* CapCollectorServerPackageDescription */, + "CapCollectorServer::CapCollectorServerPackageTests::ProductTarget" /* CapCollectorServerPackageTests */, + "Console::Command" /* Command */, + "Console::Console" /* Console */, + "Console::SwiftPMPackageDescription" /* ConsolePackageDescription */, + "Core::Core" /* Core */, + "Core::SwiftPMPackageDescription" /* CorePackageDescription */, + "Crypto::Crypto" /* Crypto */, + "Crypto::SwiftPMPackageDescription" /* CryptoPackageDescription */, + "DatabaseKit::DatabaseKit" /* DatabaseKit */, + "DatabaseKit::SwiftPMPackageDescription" /* DatabaseKitPackageDescription */, + "Core::Debugging" /* Debugging */, + "HTTP::HTTP" /* HTTP */, + "HTTP::SwiftPMPackageDescription" /* HTTPPackageDescription */, + "Console::Logging" /* Logging */, + "Multipart::Multipart" /* Multipart */, + "Multipart::SwiftPMPackageDescription" /* MultipartPackageDescription */, + "swift-nio::NIO" /* NIO */, + "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */, + "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */, + "swift-nio::NIOHTTP1" /* NIOHTTP1 */, + "swift-nio-ssl::NIOOpenSSL" /* NIOOpenSSL */, + "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */, + "swift-nio::NIOTLS" /* NIOTLS */, + "swift-nio::NIOWebSocket" /* NIOWebSocket */, + "Crypto::Random" /* Random */, + "Routing::Routing" /* Routing */, + "Routing::SwiftPMPackageDescription" /* RoutingPackageDescription */, + "CapCollectorServer::Run" /* Run */, + "SQLite.swift::SQLite" /* SQLite */, + "SQLite.swift::SwiftPMPackageDescription" /* SQLite.swiftPackageDescription */, + "SQLite.swift::SQLiteObjc" /* SQLiteObjc */, + "Service::Service" /* Service */, + "Service::SwiftPMPackageDescription" /* ServicePackageDescription */, + "TemplateKit::TemplateKit" /* TemplateKit */, + "TemplateKit::SwiftPMPackageDescription" /* TemplateKitPackageDescription */, + "URLEncodedForm::URLEncodedForm" /* URLEncodedForm */, + "URLEncodedForm::SwiftPMPackageDescription" /* URLEncodedFormPackageDescription */, + "Validation::Validation" /* Validation */, + "Validation::SwiftPMPackageDescription" /* ValidationPackageDescription */, + "Vapor::Vapor" /* Vapor */, + "Vapor::SwiftPMPackageDescription" /* VaporPackageDescription */, + "WebSocket::WebSocket" /* WebSocket */, + "WebSocket::SwiftPMPackageDescription" /* WebSocketPackageDescription */, + "swift-nio-ssl::SwiftPMPackageDescription" /* swift-nio-sslPackageDescription */, + "swift-nio::SwiftPMPackageDescription" /* swift-nioPackageDescription */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + OBJ_1007 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1008 /* BitsError.swift in Sources */, + OBJ_1009 /* Byte+Alphabet.swift in Sources */, + OBJ_1010 /* Byte+Control.swift in Sources */, + OBJ_1011 /* Byte+Digit.swift in Sources */, + OBJ_1012 /* ByteBuffer+binaryFloatingPointOperations.swift in Sources */, + OBJ_1013 /* ByteBuffer+peek.swift in Sources */, + OBJ_1014 /* ByteBuffer+require.swift in Sources */, + OBJ_1015 /* ByteBuffer+string.swift in Sources */, + OBJ_1016 /* Bytes.swift in Sources */, + OBJ_1017 /* Data+Bytes.swift in Sources */, + OBJ_1018 /* Data+Strings.swift in Sources */, + OBJ_1019 /* Deprecated.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1040 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1041 /* base32.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1046 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1047 /* bcrypt.c in Sources */, + OBJ_1048 /* blf.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1053 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1054 /* shim.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1059 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1060 /* c-atomics.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1068 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1069 /* shim.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1076 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1077 /* c_nio_http_parser.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1085 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1086 /* ifaddrs-android.c in Sources */, + OBJ_1087 /* shim.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1095 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1096 /* helpers.c in Sources */, + OBJ_1097 /* shims.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1102 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1103 /* c_nio_sha1.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1110 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1111 /* empty.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1118 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1119 /* libc.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1125 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1126 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1135 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1136 /* CommandOption.swift in Sources */, + OBJ_1137 /* CommandRunnable.swift in Sources */, + OBJ_1138 /* Command.swift in Sources */, + OBJ_1139 /* CommandArgument.swift in Sources */, + OBJ_1140 /* CommandConfig.swift in Sources */, + OBJ_1141 /* Commands.swift in Sources */, + OBJ_1142 /* BasicCommandGroup.swift in Sources */, + OBJ_1143 /* CommandGroup.swift in Sources */, + OBJ_1144 /* CommandContext.swift in Sources */, + OBJ_1145 /* CommandInput.swift in Sources */, + OBJ_1146 /* Console+Run.swift in Sources */, + OBJ_1147 /* Output+Autocomplete.swift in Sources */, + OBJ_1148 /* Output+Help.swift in Sources */, + OBJ_1149 /* CommandError.swift in Sources */, + OBJ_1150 /* Exports.swift in Sources */, + OBJ_1151 /* Utilities.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1188 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1189 /* ActivityBar.swift in Sources */, + OBJ_1190 /* ActivityIndicator.swift in Sources */, + OBJ_1191 /* ActivityIndicatorRenderer.swift in Sources */, + OBJ_1192 /* ActivityIndicatorState.swift in Sources */, + OBJ_1193 /* CustomActivity.swift in Sources */, + OBJ_1194 /* LoadingBar.swift in Sources */, + OBJ_1195 /* ProgressBar.swift in Sources */, + OBJ_1196 /* Console+Clear.swift in Sources */, + OBJ_1197 /* Console+Ephemeral.swift in Sources */, + OBJ_1198 /* ConsoleClear.swift in Sources */, + OBJ_1199 /* Console.swift in Sources */, + OBJ_1200 /* Deprecated.swift in Sources */, + OBJ_1201 /* Console+Ask.swift in Sources */, + OBJ_1202 /* Console+Choose.swift in Sources */, + OBJ_1203 /* Console+Confirm.swift in Sources */, + OBJ_1204 /* Console+Input.swift in Sources */, + OBJ_1205 /* Console+Center.swift in Sources */, + OBJ_1206 /* Console+Output.swift in Sources */, + OBJ_1207 /* Console+Wait.swift in Sources */, + OBJ_1208 /* ConsoleColor.swift in Sources */, + OBJ_1209 /* ConsoleStyle.swift in Sources */, + OBJ_1210 /* ConsoleText.swift in Sources */, + OBJ_1211 /* ConsoleTextFragment.swift in Sources */, + OBJ_1212 /* ANSI.swift in Sources */, + OBJ_1213 /* Terminal.swift in Sources */, + OBJ_1214 /* ConsoleError.swift in Sources */, + OBJ_1215 /* ConsoleLogger.swift in Sources */, + OBJ_1216 /* Exports.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1252 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1253 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1257 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1258 /* BasicKey.swift in Sources */, + OBJ_1259 /* CaseInsensitiveString.swift in Sources */, + OBJ_1260 /* Decodable+Reflectable.swift in Sources */, + OBJ_1261 /* ReflectionDecodable.swift in Sources */, + OBJ_1262 /* ReflectionDecoders.swift in Sources */, + OBJ_1263 /* CoreError.swift in Sources */, + OBJ_1264 /* Data+Base64URL.swift in Sources */, + OBJ_1265 /* Data+Hex.swift in Sources */, + OBJ_1266 /* DataCoders.swift in Sources */, + OBJ_1267 /* Deprecated.swift in Sources */, + OBJ_1268 /* DirectoryConfig.swift in Sources */, + OBJ_1269 /* Exports.swift in Sources */, + OBJ_1270 /* File.swift in Sources */, + OBJ_1271 /* Future+Unwrap.swift in Sources */, + OBJ_1272 /* FutureEncoder.swift in Sources */, + OBJ_1273 /* HeaderValue.swift in Sources */, + OBJ_1274 /* LosslessDataConvertible.swift in Sources */, + OBJ_1275 /* MediaType.swift in Sources */, + OBJ_1276 /* NestedData.swift in Sources */, + OBJ_1277 /* NotFound.swift in Sources */, + OBJ_1278 /* OptionalType.swift in Sources */, + OBJ_1279 /* Process+Execute.swift in Sources */, + OBJ_1280 /* Reflectable.swift in Sources */, + OBJ_1281 /* String+Utilities.swift in Sources */, + OBJ_1282 /* Thread+Async.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1312 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1313 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1317 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1318 /* BCryptDigest.swift in Sources */, + OBJ_1319 /* AuthenticatedCipher.swift in Sources */, + OBJ_1320 /* AuthenticatedCipherAlgorithm.swift in Sources */, + OBJ_1321 /* Cipher.swift in Sources */, + OBJ_1322 /* CipherAlgorithm.swift in Sources */, + OBJ_1323 /* OpenSSLCipherAlgorithm.swift in Sources */, + OBJ_1324 /* OpenSSLStreamCipher.swift in Sources */, + OBJ_1325 /* Digest.swift in Sources */, + OBJ_1326 /* DigestAlgorithm.swift in Sources */, + OBJ_1327 /* HMAC.swift in Sources */, + OBJ_1328 /* OTP.swift in Sources */, + OBJ_1329 /* RSA.swift in Sources */, + OBJ_1330 /* RSAKey.swift in Sources */, + OBJ_1331 /* RSAPadding.swift in Sources */, + OBJ_1332 /* CryptoRandom.swift in Sources */, + OBJ_1333 /* Base32.swift in Sources */, + OBJ_1334 /* CryptoError.swift in Sources */, + OBJ_1335 /* Deprecated.swift in Sources */, + OBJ_1336 /* Exports.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1376 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1377 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1381 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1382 /* Container+CachedConnection.swift in Sources */, + OBJ_1383 /* Container+NewConnection.swift in Sources */, + OBJ_1384 /* DatabaseConnectable.swift in Sources */, + OBJ_1385 /* DatabaseConnection.swift in Sources */, + OBJ_1386 /* DatabaseStringFindable.swift in Sources */, + OBJ_1387 /* Container+ConnectionPool.swift in Sources */, + OBJ_1388 /* DatabaseConnectionPool.swift in Sources */, + OBJ_1389 /* DatabaseConnectionPoolCache.swift in Sources */, + OBJ_1390 /* DatabaseConnectionPoolConfig.swift in Sources */, + OBJ_1391 /* ConfiguredDatabase.swift in Sources */, + OBJ_1392 /* Database.swift in Sources */, + OBJ_1393 /* DatabaseConfig.swift in Sources */, + OBJ_1394 /* DatabaseIdentifier.swift in Sources */, + OBJ_1395 /* DatabaseQueryable.swift in Sources */, + OBJ_1396 /* Databases.swift in Sources */, + OBJ_1397 /* DatabaseKeyedCache.swift in Sources */, + OBJ_1398 /* DictionaryKeyedCache.swift in Sources */, + OBJ_1399 /* KeyedCache.swift in Sources */, + OBJ_1400 /* KeyedCacheSupporting.swift in Sources */, + OBJ_1401 /* MemoryKeyedCache.swift in Sources */, + OBJ_1402 /* DatabaseLog.swift in Sources */, + OBJ_1403 /* DatabaseLogHandler.swift in Sources */, + OBJ_1404 /* DatabaseLogger.swift in Sources */, + OBJ_1405 /* LogSupporting.swift in Sources */, + OBJ_1406 /* PrintLogHandler.swift in Sources */, + OBJ_1407 /* DatabaseKitProvider.swift in Sources */, + OBJ_1408 /* DatabaseKitError.swift in Sources */, + OBJ_1409 /* Deprecated.swift in Sources */, + OBJ_1410 /* Exports.swift in Sources */, + OBJ_1411 /* URL+DatabaseName.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1445 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1446 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1450 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1451 /* Debuggable.swift in Sources */, + OBJ_1452 /* Demangler.swift in Sources */, + OBJ_1453 /* SourceLocation.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1458 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1459 /* HTTPBody.swift in Sources */, + OBJ_1460 /* HTTPBodyRepresentable.swift in Sources */, + OBJ_1461 /* HTTPBodyStorage.swift in Sources */, + OBJ_1462 /* HTTPChunkedStream.swift in Sources */, + OBJ_1463 /* HTTPMessageCoder.swift in Sources */, + OBJ_1464 /* HTTPCookieValue.swift in Sources */, + OBJ_1465 /* HTTPCookies.swift in Sources */, + OBJ_1466 /* Exports.swift in Sources */, + OBJ_1467 /* Forwarded.swift in Sources */, + OBJ_1468 /* HTTPHeaderName.swift in Sources */, + OBJ_1469 /* HTTPHeaders.swift in Sources */, + OBJ_1470 /* HTTPMessage.swift in Sources */, + OBJ_1471 /* HTTPRequest.swift in Sources */, + OBJ_1472 /* HTTPResponse.swift in Sources */, + OBJ_1473 /* MediaTypePreference.swift in Sources */, + OBJ_1474 /* URL+HTTP.swift in Sources */, + OBJ_1475 /* HTTPClient.swift in Sources */, + OBJ_1476 /* HTTPClientProtocolUpgrader.swift in Sources */, + OBJ_1477 /* HTTPScheme.swift in Sources */, + OBJ_1478 /* HTTPServer.swift in Sources */, + OBJ_1479 /* HTTPServerResponder.swift in Sources */, + OBJ_1480 /* HTTPError.swift in Sources */, + OBJ_1481 /* HTTPHeaders+Basic.swift in Sources */, + OBJ_1482 /* HTTPHeaders+Bearer.swift in Sources */, + OBJ_1483 /* RFC1123.swift in Sources */, + OBJ_1484 /* String+IsIPAddress.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1528 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1529 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1533 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1534 /* Exports.swift in Sources */, + OBJ_1535 /* LogLevel.swift in Sources */, + OBJ_1536 /* Logger.swift in Sources */, + OBJ_1537 /* PrintLogger.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1568 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1569 /* Exports.swift in Sources */, + OBJ_1570 /* FormDataDecoder.swift in Sources */, + OBJ_1571 /* FormDataEncoder.swift in Sources */, + OBJ_1572 /* MultipartError.swift in Sources */, + OBJ_1573 /* MultipartParser.swift in Sources */, + OBJ_1574 /* MultipartPart.swift in Sources */, + OBJ_1575 /* MultipartPartConvertible.swift in Sources */, + OBJ_1576 /* MultipartSerializer.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1608 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1609 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1613 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1614 /* AddressedEnvelope.swift in Sources */, + OBJ_1615 /* BaseSocket.swift in Sources */, + OBJ_1616 /* BaseSocketChannel.swift in Sources */, + OBJ_1617 /* BlockingIOThreadPool.swift in Sources */, + OBJ_1618 /* Bootstrap.swift in Sources */, + OBJ_1619 /* ByteBuffer-aux.swift in Sources */, + OBJ_1620 /* ByteBuffer-core.swift in Sources */, + OBJ_1621 /* ByteBuffer-int.swift in Sources */, + OBJ_1622 /* ByteBuffer-views.swift in Sources */, + OBJ_1623 /* Channel.swift in Sources */, + OBJ_1624 /* ChannelHandler.swift in Sources */, + OBJ_1625 /* ChannelHandlers.swift in Sources */, + OBJ_1626 /* ChannelInvoker.swift in Sources */, + OBJ_1627 /* ChannelOption.swift in Sources */, + OBJ_1628 /* ChannelPipeline.swift in Sources */, + OBJ_1629 /* CircularBuffer.swift in Sources */, + OBJ_1630 /* Codec.swift in Sources */, + OBJ_1631 /* CompositeError.swift in Sources */, + OBJ_1632 /* ContiguousCollection.swift in Sources */, + OBJ_1633 /* DeadChannel.swift in Sources */, + OBJ_1634 /* Embedded.swift in Sources */, + OBJ_1635 /* EventLoop.swift in Sources */, + OBJ_1636 /* EventLoopFuture.swift in Sources */, + OBJ_1637 /* FileDescriptor.swift in Sources */, + OBJ_1638 /* FileHandle.swift in Sources */, + OBJ_1639 /* FileRegion.swift in Sources */, + OBJ_1640 /* GetaddrinfoResolver.swift in Sources */, + OBJ_1641 /* HappyEyeballs.swift in Sources */, + OBJ_1642 /* Heap.swift in Sources */, + OBJ_1643 /* IO.swift in Sources */, + OBJ_1644 /* IOData.swift in Sources */, + OBJ_1645 /* IntegerTypes.swift in Sources */, + OBJ_1646 /* Interfaces.swift in Sources */, + OBJ_1647 /* Linux.swift in Sources */, + OBJ_1648 /* LinuxCPUSet.swift in Sources */, + OBJ_1649 /* MarkedCircularBuffer.swift in Sources */, + OBJ_1650 /* MulticastChannel.swift in Sources */, + OBJ_1651 /* NIOAny.swift in Sources */, + OBJ_1652 /* NonBlockingFileIO.swift in Sources */, + OBJ_1653 /* PendingDatagramWritesManager.swift in Sources */, + OBJ_1654 /* PendingWritesManager.swift in Sources */, + OBJ_1655 /* PriorityQueue.swift in Sources */, + OBJ_1656 /* RecvByteBufferAllocator.swift in Sources */, + OBJ_1657 /* Resolver.swift in Sources */, + OBJ_1658 /* Selectable.swift in Sources */, + OBJ_1659 /* Selector.swift in Sources */, + OBJ_1660 /* ServerSocket.swift in Sources */, + OBJ_1661 /* Socket.swift in Sources */, + OBJ_1662 /* SocketAddresses.swift in Sources */, + OBJ_1663 /* SocketChannel.swift in Sources */, + OBJ_1664 /* SocketOptionProvider.swift in Sources */, + OBJ_1665 /* System.swift in Sources */, + OBJ_1666 /* Thread.swift in Sources */, + OBJ_1667 /* TypeAssistedChannelHandler.swift in Sources */, + OBJ_1668 /* Utilities.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1685 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1686 /* atomics.swift in Sources */, + OBJ_1687 /* lock.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1694 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1695 /* ByteBuffer-foundation.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1714 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1715 /* ByteCollectionUtils.swift in Sources */, + OBJ_1716 /* HTTPDecoder.swift in Sources */, + OBJ_1717 /* HTTPEncoder.swift in Sources */, + OBJ_1718 /* HTTPPipelineSetup.swift in Sources */, + OBJ_1719 /* HTTPResponseCompressor.swift in Sources */, + OBJ_1720 /* HTTPServerPipelineHandler.swift in Sources */, + OBJ_1721 /* HTTPServerProtocolErrorHandler.swift in Sources */, + OBJ_1722 /* HTTPTypes.swift in Sources */, + OBJ_1723 /* HTTPUpgradeHandler.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1746 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1747 /* ByteBufferBIO.swift in Sources */, + OBJ_1748 /* IdentityVerification.swift in Sources */, + OBJ_1749 /* OpenSSLClientHandler.swift in Sources */, + OBJ_1750 /* OpenSSLHandler.swift in Sources */, + OBJ_1751 /* OpenSSLServerHandler.swift in Sources */, + OBJ_1752 /* PosixPort.swift in Sources */, + OBJ_1753 /* SSLCertificate.swift in Sources */, + OBJ_1754 /* SSLConnection.swift in Sources */, + OBJ_1755 /* SSLContext.swift in Sources */, + OBJ_1756 /* SSLErrors.swift in Sources */, + OBJ_1757 /* SSLInit.swift in Sources */, + OBJ_1758 /* SSLPKCS12Bundle.swift in Sources */, + OBJ_1759 /* SSLPointerTricks.swift in Sources */, + OBJ_1760 /* SSLPrivateKey.swift in Sources */, + OBJ_1761 /* SSLPublicKey.swift in Sources */, + OBJ_1762 /* SSLVerificationCallbacks.swift in Sources */, + OBJ_1763 /* TLSConfiguration.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1786 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1787 /* Heap.swift in Sources */, + OBJ_1788 /* PriorityQueue.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1793 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1794 /* ApplicationProtocolNegotiationHandler.swift in Sources */, + OBJ_1795 /* SNIHandler.swift in Sources */, + OBJ_1796 /* TLSEvents.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1815 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1816 /* Base64.swift in Sources */, + OBJ_1817 /* SHA1.swift in Sources */, + OBJ_1818 /* WebSocketErrorCodes.swift in Sources */, + OBJ_1819 /* WebSocketFrame.swift in Sources */, + OBJ_1820 /* WebSocketFrameDecoder.swift in Sources */, + OBJ_1821 /* WebSocketFrameEncoder.swift in Sources */, + OBJ_1822 /* WebSocketOpcode.swift in Sources */, + OBJ_1823 /* WebSocketProtocolErrorHandler.swift in Sources */, + OBJ_1824 /* WebSocketUpgrader.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1849 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1850 /* Array+Random.swift in Sources */, + OBJ_1851 /* OSRandom.swift in Sources */, + OBJ_1852 /* RandomProtocol.swift in Sources */, + OBJ_1853 /* URandom.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1876 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1877 /* Parameter.swift in Sources */, + OBJ_1878 /* ParameterValue.swift in Sources */, + OBJ_1879 /* Parameters.swift in Sources */, + OBJ_1880 /* PathComponent.swift in Sources */, + OBJ_1881 /* Route.swift in Sources */, + OBJ_1882 /* RouterOption.swift in Sources */, + OBJ_1883 /* RoutableComponent.swift in Sources */, + OBJ_1884 /* RouterNode.swift in Sources */, + OBJ_1885 /* TrieRouter.swift in Sources */, + OBJ_1886 /* Deprecated.swift in Sources */, + OBJ_1887 /* Exports.swift in Sources */, + OBJ_1888 /* RoutingError.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1922 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1923 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_1928 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_1929 /* main.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2016 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2017 /* Blob.swift in Sources */, + OBJ_2018 /* Connection.swift in Sources */, + OBJ_2019 /* Errors.swift in Sources */, + OBJ_2020 /* Statement.swift in Sources */, + OBJ_2021 /* Value.swift in Sources */, + OBJ_2022 /* Cipher.swift in Sources */, + OBJ_2023 /* FTS4.swift in Sources */, + OBJ_2024 /* FTS5.swift in Sources */, + OBJ_2025 /* RTree.swift in Sources */, + OBJ_2026 /* Foundation.swift in Sources */, + OBJ_2027 /* Helpers.swift in Sources */, + OBJ_2028 /* AggregateFunctions.swift in Sources */, + OBJ_2029 /* Coding.swift in Sources */, + OBJ_2030 /* Collation.swift in Sources */, + OBJ_2031 /* CoreFunctions.swift in Sources */, + OBJ_2032 /* CustomFunctions.swift in Sources */, + OBJ_2033 /* DateAndTimeFunctions.swift in Sources */, + OBJ_2034 /* Expression.swift in Sources */, + OBJ_2035 /* Operators.swift in Sources */, + OBJ_2036 /* Query.swift in Sources */, + OBJ_2037 /* Schema.swift in Sources */, + OBJ_2038 /* Setter.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2046 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2047 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2051 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2052 /* SQLiteObjc.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2059 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2060 /* Config.swift in Sources */, + OBJ_2061 /* BasicContainer.swift in Sources */, + OBJ_2062 /* BasicSubContainer.swift in Sources */, + OBJ_2063 /* Container.swift in Sources */, + OBJ_2064 /* ContainerAlias.swift in Sources */, + OBJ_2065 /* SubContainer.swift in Sources */, + OBJ_2066 /* Environment.swift in Sources */, + OBJ_2067 /* Provider.swift in Sources */, + OBJ_2068 /* BasicServiceFactory.swift in Sources */, + OBJ_2069 /* Service.swift in Sources */, + OBJ_2070 /* ServiceCache.swift in Sources */, + OBJ_2071 /* ServiceFactory.swift in Sources */, + OBJ_2072 /* ServiceID.swift in Sources */, + OBJ_2073 /* ServiceType.swift in Sources */, + OBJ_2074 /* Services.swift in Sources */, + OBJ_2075 /* TypeServiceFactory.swift in Sources */, + OBJ_2076 /* Deprecated.swift in Sources */, + OBJ_2077 /* Exports.swift in Sources */, + OBJ_2078 /* Extendable.swift in Sources */, + OBJ_2079 /* ServiceError.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2111 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2112 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2116 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2117 /* TemplateConditional.swift in Sources */, + OBJ_2118 /* TemplateConstant.swift in Sources */, + OBJ_2119 /* TemplateCustom.swift in Sources */, + OBJ_2120 /* TemplateDataContext.swift in Sources */, + OBJ_2121 /* TemplateEmbed.swift in Sources */, + OBJ_2122 /* TemplateExpression.swift in Sources */, + OBJ_2123 /* TemplateIdentifier.swift in Sources */, + OBJ_2124 /* TemplateIterator.swift in Sources */, + OBJ_2125 /* TemplateRaw.swift in Sources */, + OBJ_2126 /* TemplateSource.swift in Sources */, + OBJ_2127 /* TemplateSyntax.swift in Sources */, + OBJ_2128 /* TemplateSyntaxType.swift in Sources */, + OBJ_2129 /* TemplateTag.swift in Sources */, + OBJ_2130 /* TemplateData.swift in Sources */, + OBJ_2131 /* TemplateDataEncoder.swift in Sources */, + OBJ_2132 /* TemplateDataRepresentable.swift in Sources */, + OBJ_2133 /* TemplateDataStorage.swift in Sources */, + OBJ_2134 /* Deprecated.swift in Sources */, + OBJ_2135 /* ASTCache.swift in Sources */, + OBJ_2136 /* PlaintextRenderer.swift in Sources */, + OBJ_2137 /* TemplateByteScanner.swift in Sources */, + OBJ_2138 /* TemplateParser.swift in Sources */, + OBJ_2139 /* TemplateRenderer.swift in Sources */, + OBJ_2140 /* TemplateSerializer.swift in Sources */, + OBJ_2141 /* Capitalize.swift in Sources */, + OBJ_2142 /* Comment.swift in Sources */, + OBJ_2143 /* Contains.swift in Sources */, + OBJ_2144 /* Count.swift in Sources */, + OBJ_2145 /* DateFormat.swift in Sources */, + OBJ_2146 /* Lowercase.swift in Sources */, + OBJ_2147 /* Print.swift in Sources */, + OBJ_2148 /* Raw.swift in Sources */, + OBJ_2149 /* TagContext.swift in Sources */, + OBJ_2150 /* TagRenderer.swift in Sources */, + OBJ_2151 /* Uppercase.swift in Sources */, + OBJ_2152 /* Var.swift in Sources */, + OBJ_2153 /* Exports.swift in Sources */, + OBJ_2154 /* HTMLEscape.swift in Sources */, + OBJ_2155 /* TemplateError.swift in Sources */, + OBJ_2156 /* View.swift in Sources */, + OBJ_2157 /* ViewRenderer.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2191 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2192 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2196 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2197 /* URLEncodedFormDecoder.swift in Sources */, + OBJ_2198 /* URLEncodedFormEncoder.swift in Sources */, + OBJ_2199 /* URLEncodedFormData.swift in Sources */, + OBJ_2200 /* URLEncodedFormDataConvertible.swift in Sources */, + OBJ_2201 /* URLEncodedFormParser.swift in Sources */, + OBJ_2202 /* URLEncodedFormSerializer.swift in Sources */, + OBJ_2203 /* Exports.swift in Sources */, + OBJ_2204 /* URLEncodedFormError.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2236 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2237 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2241 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2242 /* Exports.swift in Sources */, + OBJ_2243 /* Validatable.swift in Sources */, + OBJ_2244 /* ValidationError.swift in Sources */, + OBJ_2245 /* Validations.swift in Sources */, + OBJ_2246 /* Validator.swift in Sources */, + OBJ_2247 /* ValidatorType.swift in Sources */, + OBJ_2248 /* AndValidator.swift in Sources */, + OBJ_2249 /* CharacterSetValidator.swift in Sources */, + OBJ_2250 /* CountValidator.swift in Sources */, + OBJ_2251 /* EmailValidator.swift in Sources */, + OBJ_2252 /* EmptyValidator.swift in Sources */, + OBJ_2253 /* InValidator.swift in Sources */, + OBJ_2254 /* NilIgnoringValidator.swift in Sources */, + OBJ_2255 /* NilValidator.swift in Sources */, + OBJ_2256 /* NotValidator.swift in Sources */, + OBJ_2257 /* OrValidator.swift in Sources */, + OBJ_2258 /* RangeValidator.swift in Sources */, + OBJ_2259 /* URLValidator.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2291 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2292 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2296 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2297 /* Application.swift in Sources */, + OBJ_2298 /* Client.swift in Sources */, + OBJ_2299 /* FoundationClient.swift in Sources */, + OBJ_2300 /* BootCommand.swift in Sources */, + OBJ_2301 /* CommandConfig+Default.swift in Sources */, + OBJ_2302 /* RoutesCommand.swift in Sources */, + OBJ_2303 /* ServeCommand.swift in Sources */, + OBJ_2304 /* Content.swift in Sources */, + OBJ_2305 /* ContentCoders.swift in Sources */, + OBJ_2306 /* ContentConfig.swift in Sources */, + OBJ_2307 /* ContentContainer.swift in Sources */, + OBJ_2308 /* FormDataCoder+HTTP.swift in Sources */, + OBJ_2309 /* HTTPMessageContainer.swift in Sources */, + OBJ_2310 /* JSONCoder+Custom.swift in Sources */, + OBJ_2311 /* PlaintextEncoder.swift in Sources */, + OBJ_2312 /* QueryContainer.swift in Sources */, + OBJ_2313 /* SingleValueGet.swift in Sources */, + OBJ_2314 /* URLEncoded.swift in Sources */, + OBJ_2315 /* Deprecated.swift in Sources */, + OBJ_2316 /* Abort.swift in Sources */, + OBJ_2317 /* AbortError.swift in Sources */, + OBJ_2318 /* Error.swift in Sources */, + OBJ_2319 /* Logger+LogError.swift in Sources */, + OBJ_2320 /* CORSMiddleware.swift in Sources */, + OBJ_2321 /* DateMiddleware.swift in Sources */, + OBJ_2322 /* ErrorMiddleware.swift in Sources */, + OBJ_2323 /* FileMiddleware.swift in Sources */, + OBJ_2324 /* Middleware.swift in Sources */, + OBJ_2325 /* MiddlewareConfig.swift in Sources */, + OBJ_2326 /* HTTPMethod+String.swift in Sources */, + OBJ_2327 /* Request.swift in Sources */, + OBJ_2328 /* RequestCodable.swift in Sources */, + OBJ_2329 /* ApplicationResponder.swift in Sources */, + OBJ_2330 /* BasicResponder.swift in Sources */, + OBJ_2331 /* HTTPStatus.swift in Sources */, + OBJ_2332 /* Redirect.swift in Sources */, + OBJ_2333 /* Responder.swift in Sources */, + OBJ_2334 /* Response.swift in Sources */, + OBJ_2335 /* ResponseCodable.swift in Sources */, + OBJ_2336 /* EngineRouter.swift in Sources */, + OBJ_2337 /* ParametersContainer.swift in Sources */, + OBJ_2338 /* RouteCollection.swift in Sources */, + OBJ_2339 /* Router+Content.swift in Sources */, + OBJ_2340 /* Router+Function.swift in Sources */, + OBJ_2341 /* Router+LazyMiddleware.swift in Sources */, + OBJ_2342 /* Router+Method.swift in Sources */, + OBJ_2343 /* Router+Middleware.swift in Sources */, + OBJ_2344 /* Router+Path.swift in Sources */, + OBJ_2345 /* Router.swift in Sources */, + OBJ_2346 /* NIOServer.swift in Sources */, + OBJ_2347 /* NIOServerConfig.swift in Sources */, + OBJ_2348 /* RunningServer.swift in Sources */, + OBJ_2349 /* Server.swift in Sources */, + OBJ_2350 /* Config+Default.swift in Sources */, + OBJ_2351 /* Services+Default.swift in Sources */, + OBJ_2352 /* VaporProvider.swift in Sources */, + OBJ_2353 /* KeyedCacheSessions.swift in Sources */, + OBJ_2354 /* MemorySessions.swift in Sources */, + OBJ_2355 /* Request+Session.swift in Sources */, + OBJ_2356 /* Session.swift in Sources */, + OBJ_2357 /* SessionCache.swift in Sources */, + OBJ_2358 /* SessionData.swift in Sources */, + OBJ_2359 /* Sessions.swift in Sources */, + OBJ_2360 /* SessionsConfig.swift in Sources */, + OBJ_2361 /* SessionsMiddleware.swift in Sources */, + OBJ_2362 /* AnyResponse.swift in Sources */, + OBJ_2363 /* Exports.swift in Sources */, + OBJ_2364 /* FileIO.swift in Sources */, + OBJ_2365 /* Thread.swift in Sources */, + OBJ_2366 /* Vapor+View.swift in Sources */, + OBJ_2367 /* NIOWebSocketClient.swift in Sources */, + OBJ_2368 /* NIOWebSocketServer.swift in Sources */, + OBJ_2369 /* WebSocketClient.swift in Sources */, + OBJ_2370 /* WebSocketResponder.swift in Sources */, + OBJ_2371 /* WebSocketServer.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2451 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2452 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2456 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2457 /* Exports.swift in Sources */, + OBJ_2458 /* WebSocket+Client.swift in Sources */, + OBJ_2459 /* WebSocket+Server.swift in Sources */, + OBJ_2460 /* WebSocket.swift in Sources */, + OBJ_2461 /* WebSocketFrameSequence.swift in Sources */, + OBJ_2462 /* WebSocketHandler.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2520 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2521 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2526 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2527 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_2532 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_2533 /* Package.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_756 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_757 /* boot.swift in Sources */, + OBJ_758 /* configure.swift in Sources */, + CE0A500D2471B85000A9E753 /* Log.swift in Sources */, + CE0A500B2471B82500A9E753 /* Router+Extensions.swift in Sources */, + CE0A500F2471BC2200A9E753 /* Error.swift in Sources */, + OBJ_759 /* routes.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_885 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_886 /* AppTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + OBJ_973 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + OBJ_974 /* Async+NIO.swift in Sources */, + OBJ_975 /* AsyncError.swift in Sources */, + OBJ_976 /* Collection+Future.swift in Sources */, + OBJ_977 /* Deprecated.swift in Sources */, + OBJ_978 /* Exports.swift in Sources */, + OBJ_979 /* Future+DoCatch.swift in Sources */, + OBJ_980 /* Future+Flatten.swift in Sources */, + OBJ_981 /* Future+Global.swift in Sources */, + OBJ_982 /* Future+Map.swift in Sources */, + OBJ_983 /* Future+Transform.swift in Sources */, + OBJ_984 /* Future+Variadic.swift in Sources */, + OBJ_985 /* Future+Void.swift in Sources */, + OBJ_986 /* FutureType.swift in Sources */, + OBJ_987 /* QueueHandler.swift in Sources */, + OBJ_988 /* Worker.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + OBJ_1000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4E9C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1001 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4E9D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1002 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4E9E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1003 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4E9F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1029 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4E8F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1030 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4E902471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1031 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4E912471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1032 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4E922471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1033 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4E932471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1034 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4E942471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1035 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4E952471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1036 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4E962471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1131 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "CapCollectorServer::AppTests" /* AppTests */; + targetProxy = CE0A50092471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1169 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Console" /* Console */; + targetProxy = CE0A4F572471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1170 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Service::Service" /* Service */; + targetProxy = CE0A4F742471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1171 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Logging" /* Logging */; + targetProxy = CE0A4F752471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1172 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4F762471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1173 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4F772471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1174 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4F782471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1175 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4F792471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1176 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4F7A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1177 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4F7B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1178 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4F7C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1179 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4F7D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1180 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4F7E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1181 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4F7F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1182 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4F802471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1183 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4F812471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1184 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4F822471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1233 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Service::Service" /* Service */; + targetProxy = CE0A4F582471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1234 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Logging" /* Logging */; + targetProxy = CE0A4F592471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1235 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4F672471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1236 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4F682471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1237 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4F692471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1238 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4F6A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1239 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4F6B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1240 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4F6C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1241 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4F6D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1242 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4F6E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1243 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4F6F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1244 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4F702471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1245 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4F712471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1246 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4F722471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1247 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4F732471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1296 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4E852471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1297 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4E8D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1298 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4E8E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1299 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4E972471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1300 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4E982471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1301 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4EA02471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1302 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4EA12471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1303 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4EA22471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1304 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4EA32471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1305 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4EA42471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1306 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4EA52471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1307 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4EA62471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1355 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4EBA2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1356 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4EBB2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1357 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4EBC2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1358 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4EBD2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1359 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::Random" /* Random */; + targetProxy = CE0A4EBE2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1360 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4EC82471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1361 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4EC92471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1362 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4ECA2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1363 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4ECB2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1364 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4ECC2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1365 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4ECD2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1366 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4ECE2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1367 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4ECF2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1368 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4ED02471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1369 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CCryptoOpenSSL" /* CCryptoOpenSSL */; + targetProxy = CE0A4ED12471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1370 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CBcrypt" /* CBcrypt */; + targetProxy = CE0A4ED22471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1371 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CBase32" /* CBase32 */; + targetProxy = CE0A4ED32471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1427 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Service::Service" /* Service */; + targetProxy = CE0A4F432471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1428 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4F442471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1429 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4F452471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1430 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4F462471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1431 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4F472471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1432 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4F482471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1433 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4F492471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1434 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4F4A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1435 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4F4B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1436 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4F4C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1437 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4F4D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1438 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4F4E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1439 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4F4F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1440 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4F502471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1505 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOHTTP1" /* NIOHTTP1 */; + targetProxy = CE0A4E6E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1506 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOZlib" /* CNIOZlib */; + targetProxy = CE0A4E6F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1507 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOHTTPParser" /* CNIOHTTPParser */; + targetProxy = CE0A4E702471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1508 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio-ssl::NIOOpenSSL" /* NIOOpenSSL */; + targetProxy = CE0A4E712471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1509 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOTLS" /* NIOTLS */; + targetProxy = CE0A4E822471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1510 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio-ssl::CNIOOpenSSL" /* CNIOOpenSSL */; + targetProxy = CE0A4E832471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1511 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4E842471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1512 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4EA72471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1513 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4EA82471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1514 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4EA92471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1515 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4EAA2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1516 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4EAB2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1517 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4EAC2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1518 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4EAD2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1519 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4EAE2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1520 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4EAF2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1521 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4EB02471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1522 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4EB12471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1523 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4EB22471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1552 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4F5A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1553 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4F5B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1554 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4F5C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1555 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4F5D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1556 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4F5E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1557 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4F5F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1558 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4F602471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1559 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4F612471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1560 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4F622471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1561 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4F632471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1562 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4F642471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1563 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4F652471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1564 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4F662471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1591 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4F2E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1592 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4F2F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1593 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4F302471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1594 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4F312471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1595 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4F322471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1596 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4F332471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1597 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4F342471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1598 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4F352471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1599 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4F362471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1600 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4F372471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1601 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4F382471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1602 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4F392471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1603 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4F3A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1676 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4E572471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1677 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4E582471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1678 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4E592471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1679 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4E5B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1680 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4E5C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1681 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4E5D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1690 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4E5A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1704 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4E862471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1705 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4E872471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1706 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4E882471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1707 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4E892471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1708 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4E8A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1709 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4E8B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1710 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4E8C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1734 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOZlib" /* CNIOZlib */; + targetProxy = CE0A4E542471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1735 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOHTTPParser" /* CNIOHTTPParser */; + targetProxy = CE0A4E552471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1736 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4E562471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1737 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4E5E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1738 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4E5F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1739 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4E602471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1740 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4E612471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1741 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4E622471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1742 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4E632471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1774 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOTLS" /* NIOTLS */; + targetProxy = CE0A4E722471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1775 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4E7A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1776 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4E7B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1777 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4E7C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1778 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4E7D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1779 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4E7E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1780 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4E7F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1781 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4E802471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1782 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio-ssl::CNIOOpenSSL" /* CNIOOpenSSL */; + targetProxy = CE0A4E812471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1805 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4E732471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1806 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4E742471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1807 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4E752471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1808 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4E762471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1809 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4E772471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1810 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4E782471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1811 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4E792471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1836 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOHTTP1" /* NIOHTTP1 */; + targetProxy = CE0A4E532471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1837 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOZlib" /* CNIOZlib */; + targetProxy = CE0A4E642471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1838 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOHTTPParser" /* CNIOHTTPParser */; + targetProxy = CE0A4E652471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1839 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4E662471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1840 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4E672471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1841 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4E682471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1842 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4E692471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1843 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4E6A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1844 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4E6B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1845 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4E6C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1864 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4EBF2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1865 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4EC02471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1866 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4EC12471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1867 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4EC22471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1868 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4EC32471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1869 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4EC42471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1870 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4EC52471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1871 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4EC62471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1872 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4EC72471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1904 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Service::Service" /* Service */; + targetProxy = CE0A4F1F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1905 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4F202471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1906 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4F212471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1907 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4F222471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1908 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4F232471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1909 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4F242471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1910 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4F252471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1911 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4F262471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1912 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4F272471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1913 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4F282471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1914 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4F292471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1915 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4F2A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1916 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4F2B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1917 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4F2C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1972 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "CapCollectorServer::App" /* App */; + targetProxy = CE0A4E4C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1973 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "SQLite.swift::SQLite" /* SQLite */; + targetProxy = CE0A4FB82471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1974 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "SQLite.swift::SQLiteObjc" /* SQLiteObjc */; + targetProxy = CE0A4FB92471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1975 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Vapor::Vapor" /* Vapor */; + targetProxy = CE0A4FBA2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1976 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "WebSocket::WebSocket" /* WebSocket */; + targetProxy = CE0A4FBB2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1977 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOWebSocket" /* NIOWebSocket */; + targetProxy = CE0A4FBC2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1978 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Validation::Validation" /* Validation */; + targetProxy = CE0A4FBD2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1979 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "URLEncodedForm::URLEncodedForm" /* URLEncodedForm */; + targetProxy = CE0A4FBE2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1980 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "TemplateKit::TemplateKit" /* TemplateKit */; + targetProxy = CE0A4FBF2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1981 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Routing::Routing" /* Routing */; + targetProxy = CE0A4FC02471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1982 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Multipart::Multipart" /* Multipart */; + targetProxy = CE0A4FC12471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1983 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "HTTP::HTTP" /* HTTP */; + targetProxy = CE0A4FC22471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1984 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOHTTP1" /* NIOHTTP1 */; + targetProxy = CE0A4FC32471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1985 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOZlib" /* CNIOZlib */; + targetProxy = CE0A4FC42471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1986 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOHTTPParser" /* CNIOHTTPParser */; + targetProxy = CE0A4FC52471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1987 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio-ssl::NIOOpenSSL" /* NIOOpenSSL */; + targetProxy = CE0A4FC62471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1988 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOTLS" /* NIOTLS */; + targetProxy = CE0A4FC72471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1989 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio-ssl::CNIOOpenSSL" /* CNIOOpenSSL */; + targetProxy = CE0A4FC82471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1990 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "DatabaseKit::DatabaseKit" /* DatabaseKit */; + targetProxy = CE0A4FC92471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1991 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::Crypto" /* Crypto */; + targetProxy = CE0A4FCA2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1992 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::Random" /* Random */; + targetProxy = CE0A4FCB2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1993 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CCryptoOpenSSL" /* CCryptoOpenSSL */; + targetProxy = CE0A4FCC2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1994 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CBcrypt" /* CBcrypt */; + targetProxy = CE0A4FCD2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1995 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CBase32" /* CBase32 */; + targetProxy = CE0A4FCE2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1996 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Command" /* Command */; + targetProxy = CE0A4FCF2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1997 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Console" /* Console */; + targetProxy = CE0A4FD02471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1998 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Service::Service" /* Service */; + targetProxy = CE0A4FD12471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_1999 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Logging" /* Logging */; + targetProxy = CE0A4FD22471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4FD32471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2001 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4FD42471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2002 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4FD52471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2003 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4FD62471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2004 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4FD72471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2005 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4FD82471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2006 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4FD92471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2007 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4FDA2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2008 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4FDB2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2009 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4FDC2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2010 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4FDD2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2011 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4FDE2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2012 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4FDF2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2041 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "SQLite.swift::SQLiteObjc" /* SQLiteObjc */; + targetProxy = CE0A4E4E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2094 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4F042471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2095 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4F052471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2096 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4F062471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2097 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4F072471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2098 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4F082471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2099 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4F092471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2100 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4F0A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2101 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4F0B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2102 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4F0C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2103 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4F0D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2104 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4F0E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2105 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4F0F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2106 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4F102471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2173 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Service::Service" /* Service */; + targetProxy = CE0A4F032471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2174 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4F112471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2175 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4F122471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2176 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4F132471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2177 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4F142471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2178 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4F152471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2179 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4F162471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2180 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4F172471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2181 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4F182471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2182 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4F192471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2183 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4F1A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2184 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4F1B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2185 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4F1C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2186 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4F1D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2219 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4EF52471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2220 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4EF62471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2221 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4EF72471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2222 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4EF82471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2223 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4EF92471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2224 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4EFA2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2225 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4EFB2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2226 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4EFC2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2227 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4EFD2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2228 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4EFE2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2229 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4EFF2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2230 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4F002471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2231 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4F012471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2274 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4EE72471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2275 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4EE82471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2276 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4EE92471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2277 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4EEA2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2278 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4EEB2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2279 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4EEC2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2280 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4EED2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2281 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4EEE2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2282 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4EEF2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2283 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4EF02471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2284 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4EF12471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2285 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4EF22471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2286 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4EF32471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2410 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "WebSocket::WebSocket" /* WebSocket */; + targetProxy = CE0A4E512471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2411 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOWebSocket" /* NIOWebSocket */; + targetProxy = CE0A4EE52471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2412 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Validation::Validation" /* Validation */; + targetProxy = CE0A4EE62471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2413 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "URLEncodedForm::URLEncodedForm" /* URLEncodedForm */; + targetProxy = CE0A4EF42471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2414 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "TemplateKit::TemplateKit" /* TemplateKit */; + targetProxy = CE0A4F022471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2415 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Routing::Routing" /* Routing */; + targetProxy = CE0A4F1E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2416 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Multipart::Multipart" /* Multipart */; + targetProxy = CE0A4F2D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2417 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "HTTP::HTTP" /* HTTP */; + targetProxy = CE0A4F3B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2418 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOHTTP1" /* NIOHTTP1 */; + targetProxy = CE0A4F3C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2419 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOZlib" /* CNIOZlib */; + targetProxy = CE0A4F3D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2420 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOHTTPParser" /* CNIOHTTPParser */; + targetProxy = CE0A4F3E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2421 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio-ssl::NIOOpenSSL" /* NIOOpenSSL */; + targetProxy = CE0A4F3F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2422 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOTLS" /* NIOTLS */; + targetProxy = CE0A4F402471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2423 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio-ssl::CNIOOpenSSL" /* CNIOOpenSSL */; + targetProxy = CE0A4F412471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2424 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "DatabaseKit::DatabaseKit" /* DatabaseKit */; + targetProxy = CE0A4F422471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2425 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::Crypto" /* Crypto */; + targetProxy = CE0A4F512471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2426 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::Random" /* Random */; + targetProxy = CE0A4F522471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2427 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CCryptoOpenSSL" /* CCryptoOpenSSL */; + targetProxy = CE0A4F532471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2428 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CBcrypt" /* CBcrypt */; + targetProxy = CE0A4F542471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2429 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CBase32" /* CBase32 */; + targetProxy = CE0A4F552471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2430 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Command" /* Command */; + targetProxy = CE0A4F562471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2431 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Console" /* Console */; + targetProxy = CE0A4F832471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2432 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Service::Service" /* Service */; + targetProxy = CE0A4F842471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2433 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Logging" /* Logging */; + targetProxy = CE0A4F852471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2434 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4F862471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2435 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4F872471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2436 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4F882471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2437 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4F892471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2438 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4F8A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2439 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4F8B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2440 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4F8C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2441 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4F8D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2442 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4F8E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2443 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4F8F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2444 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4F902471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2445 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4F912471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2446 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4F922471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2490 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOWebSocket" /* NIOWebSocket */; + targetProxy = CE0A4E522471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2491 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "HTTP::HTTP" /* HTTP */; + targetProxy = CE0A4E6D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2492 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOHTTP1" /* NIOHTTP1 */; + targetProxy = CE0A4EB32471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2493 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOZlib" /* CNIOZlib */; + targetProxy = CE0A4EB42471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2494 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOHTTPParser" /* CNIOHTTPParser */; + targetProxy = CE0A4EB52471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2495 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio-ssl::NIOOpenSSL" /* NIOOpenSSL */; + targetProxy = CE0A4EB62471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2496 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOTLS" /* NIOTLS */; + targetProxy = CE0A4EB72471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2497 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio-ssl::CNIOOpenSSL" /* CNIOOpenSSL */; + targetProxy = CE0A4EB82471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2498 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::Crypto" /* Crypto */; + targetProxy = CE0A4EB92471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2499 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::Random" /* Random */; + targetProxy = CE0A4ED42471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2500 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CCryptoOpenSSL" /* CCryptoOpenSSL */; + targetProxy = CE0A4ED52471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2501 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CBcrypt" /* CBcrypt */; + targetProxy = CE0A4ED62471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2502 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CBase32" /* CBase32 */; + targetProxy = CE0A4ED72471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2503 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4ED82471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2504 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4ED92471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2505 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4EDA2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2506 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4EDB2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2507 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4EDC2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2508 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4EDD2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2509 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4EDE2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2510 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4EDF2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2511 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4EE02471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2512 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4EE12471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2513 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4EE22471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2514 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4EE32471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_2515 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4EE42471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_801 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "SQLite.swift::SQLite" /* SQLite */; + targetProxy = CE0A4E4D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_803 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "SQLite.swift::SQLiteObjc" /* SQLiteObjc */; + targetProxy = CE0A4E4F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_805 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Vapor::Vapor" /* Vapor */; + targetProxy = CE0A4E502471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_807 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "WebSocket::WebSocket" /* WebSocket */; + targetProxy = CE0A4F932471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_809 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOWebSocket" /* NIOWebSocket */; + targetProxy = CE0A4F942471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_811 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Validation::Validation" /* Validation */; + targetProxy = CE0A4F952471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_813 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "URLEncodedForm::URLEncodedForm" /* URLEncodedForm */; + targetProxy = CE0A4F962471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_815 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "TemplateKit::TemplateKit" /* TemplateKit */; + targetProxy = CE0A4F972471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_817 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Routing::Routing" /* Routing */; + targetProxy = CE0A4F982471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_819 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Multipart::Multipart" /* Multipart */; + targetProxy = CE0A4F992471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_821 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "HTTP::HTTP" /* HTTP */; + targetProxy = CE0A4F9A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_823 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOHTTP1" /* NIOHTTP1 */; + targetProxy = CE0A4F9B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_825 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOZlib" /* CNIOZlib */; + targetProxy = CE0A4F9C2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_827 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOHTTPParser" /* CNIOHTTPParser */; + targetProxy = CE0A4F9D2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_829 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio-ssl::NIOOpenSSL" /* NIOOpenSSL */; + targetProxy = CE0A4F9E2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_831 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOTLS" /* NIOTLS */; + targetProxy = CE0A4F9F2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_833 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio-ssl::CNIOOpenSSL" /* CNIOOpenSSL */; + targetProxy = CE0A4FA02471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_835 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "DatabaseKit::DatabaseKit" /* DatabaseKit */; + targetProxy = CE0A4FA12471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_837 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::Crypto" /* Crypto */; + targetProxy = CE0A4FA22471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_839 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::Random" /* Random */; + targetProxy = CE0A4FA32471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_841 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CCryptoOpenSSL" /* CCryptoOpenSSL */; + targetProxy = CE0A4FA42471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_843 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CBcrypt" /* CBcrypt */; + targetProxy = CE0A4FA52471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_845 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CBase32" /* CBase32 */; + targetProxy = CE0A4FA62471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_847 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Command" /* Command */; + targetProxy = CE0A4FA72471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_849 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Console" /* Console */; + targetProxy = CE0A4FA82471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_851 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Service::Service" /* Service */; + targetProxy = CE0A4FA92471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_853 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Logging" /* Logging */; + targetProxy = CE0A4FAA2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_855 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4FAB2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_857 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4FAC2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_859 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4FAD2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_861 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4FAE2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_863 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A4FAF2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_865 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A4FB02471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_867 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4FB12471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_869 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4FB22471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_871 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4FB32471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_873 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A4FB42471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_875 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A4FB52471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_877 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A4FB62471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_879 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A4FB72471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_929 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "CapCollectorServer::App" /* App */; + targetProxy = CE0A4FE02471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_930 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "SQLite.swift::SQLite" /* SQLite */; + targetProxy = CE0A4FE12471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_931 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "SQLite.swift::SQLiteObjc" /* SQLiteObjc */; + targetProxy = CE0A4FE22471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_932 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Vapor::Vapor" /* Vapor */; + targetProxy = CE0A4FE32471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_933 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "WebSocket::WebSocket" /* WebSocket */; + targetProxy = CE0A4FE42471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_934 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOWebSocket" /* NIOWebSocket */; + targetProxy = CE0A4FE52471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_935 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Validation::Validation" /* Validation */; + targetProxy = CE0A4FE62471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_936 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "URLEncodedForm::URLEncodedForm" /* URLEncodedForm */; + targetProxy = CE0A4FE72471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_937 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "TemplateKit::TemplateKit" /* TemplateKit */; + targetProxy = CE0A4FE82471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_938 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Routing::Routing" /* Routing */; + targetProxy = CE0A4FE92471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_939 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Multipart::Multipart" /* Multipart */; + targetProxy = CE0A4FEA2471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_940 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "HTTP::HTTP" /* HTTP */; + targetProxy = CE0A4FEB2471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_941 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOHTTP1" /* NIOHTTP1 */; + targetProxy = CE0A4FEC2471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_942 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOZlib" /* CNIOZlib */; + targetProxy = CE0A4FED2471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_943 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOHTTPParser" /* CNIOHTTPParser */; + targetProxy = CE0A4FEE2471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_944 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio-ssl::NIOOpenSSL" /* NIOOpenSSL */; + targetProxy = CE0A4FEF2471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_945 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOTLS" /* NIOTLS */; + targetProxy = CE0A4FF02471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_946 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio-ssl::CNIOOpenSSL" /* CNIOOpenSSL */; + targetProxy = CE0A4FF12471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_947 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "DatabaseKit::DatabaseKit" /* DatabaseKit */; + targetProxy = CE0A4FF22471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_948 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::Crypto" /* Crypto */; + targetProxy = CE0A4FF32471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_949 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::Random" /* Random */; + targetProxy = CE0A4FF42471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_950 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CCryptoOpenSSL" /* CCryptoOpenSSL */; + targetProxy = CE0A4FF52471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_951 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CBcrypt" /* CBcrypt */; + targetProxy = CE0A4FF62471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_952 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Crypto::CBase32" /* CBase32 */; + targetProxy = CE0A4FF72471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_953 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Command" /* Command */; + targetProxy = CE0A4FF82471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_954 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Console" /* Console */; + targetProxy = CE0A4FF92471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_955 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Service::Service" /* Service */; + targetProxy = CE0A4FFA2471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_956 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Console::Logging" /* Logging */; + targetProxy = CE0A4FFB2471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_957 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Core" /* Core */; + targetProxy = CE0A4FFC2471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_958 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOFoundationCompat" /* NIOFoundationCompat */; + targetProxy = CE0A4FFD2471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_959 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::COperatingSystem" /* COperatingSystem */; + targetProxy = CE0A4FFE2471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_960 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Bits" /* Bits */; + targetProxy = CE0A4FFF2471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_961 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Debugging" /* Debugging */; + targetProxy = CE0A50002471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_962 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "Core::Async" /* Async */; + targetProxy = CE0A50012471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_963 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A50022471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_964 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A50032471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_965 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A50042471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_966 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOConcurrencyHelpers" /* NIOConcurrencyHelpers */; + targetProxy = CE0A50052471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_967 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOAtomics" /* CNIOAtomics */; + targetProxy = CE0A50062471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_968 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIODarwin" /* CNIODarwin */; + targetProxy = CE0A50072471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_969 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOLinux" /* CNIOLinux */; + targetProxy = CE0A50082471B7B100A9E753 /* PBXContainerItemProxy */; + }; + OBJ_997 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIO" /* NIO */; + targetProxy = CE0A4E992471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_998 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::CNIOSHA1" /* CNIOSHA1 */; + targetProxy = CE0A4E9A2471B7B000A9E753 /* PBXContainerItemProxy */; + }; + OBJ_999 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = "swift-nio::NIOPriorityQueue" /* NIOPriorityQueue */; + targetProxy = CE0A4E9B2471B7B000A9E753 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + OBJ_1005 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Bits_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Bits; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Bits; + }; + name = Debug; + }; + OBJ_1006 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Bits_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Bits; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Bits; + }; + name = Release; + }; + OBJ_1038 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + DEFINES_MODULE = NO; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CBase32_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include"; + PRODUCT_BUNDLE_IDENTIFIER = CBase32; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CBase32; + }; + name = Debug; + }; + OBJ_1039 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + DEFINES_MODULE = NO; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CBase32_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include"; + PRODUCT_BUNDLE_IDENTIFIER = CBase32; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CBase32; + }; + name = Release; + }; + OBJ_1044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + DEFINES_MODULE = NO; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CBcrypt_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include"; + PRODUCT_BUNDLE_IDENTIFIER = CBcrypt; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CBcrypt; + }; + name = Debug; + }; + OBJ_1045 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + DEFINES_MODULE = NO; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CBcrypt_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include"; + PRODUCT_BUNDLE_IDENTIFIER = CBcrypt; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CBcrypt; + }; + name = Release; + }; + OBJ_1051 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + DEFINES_MODULE = NO; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CCryptoOpenSSL_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include"; + PRODUCT_BUNDLE_IDENTIFIER = CCryptoOpenSSL; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CCryptoOpenSSL; + }; + name = Debug; + }; + OBJ_1052 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + DEFINES_MODULE = NO; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CCryptoOpenSSL_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include"; + PRODUCT_BUNDLE_IDENTIFIER = CCryptoOpenSSL; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CCryptoOpenSSL; + }; + name = Release; + }; + OBJ_1057 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CNIOAtomics_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = CNIOAtomics; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CNIOAtomics; + }; + name = Debug; + }; + OBJ_1058 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CNIOAtomics_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = CNIOAtomics; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CNIOAtomics; + }; + name = Release; + }; + OBJ_1066 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CNIODarwin_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = CNIODarwin; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CNIODarwin; + }; + name = Debug; + }; + OBJ_1067 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CNIODarwin_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = CNIODarwin; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CNIODarwin; + }; + name = Release; + }; + OBJ_1074 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CNIOHTTPParser_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = CNIOHTTPParser; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CNIOHTTPParser; + }; + name = Debug; + }; + OBJ_1075 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CNIOHTTPParser_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = CNIOHTTPParser; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CNIOHTTPParser; + }; + name = Release; + }; + OBJ_1083 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CNIOLinux_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = CNIOLinux; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CNIOLinux; + }; + name = Debug; + }; + OBJ_1084 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CNIOLinux_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = CNIOLinux; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CNIOLinux; + }; + name = Release; + }; + OBJ_1093 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + DEFINES_MODULE = NO; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CNIOOpenSSL_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include"; + PRODUCT_BUNDLE_IDENTIFIER = CNIOOpenSSL; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CNIOOpenSSL; + }; + name = Debug; + }; + OBJ_1094 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + DEFINES_MODULE = NO; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CNIOOpenSSL_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include"; + PRODUCT_BUNDLE_IDENTIFIER = CNIOOpenSSL; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CNIOOpenSSL; + }; + name = Release; + }; + OBJ_1100 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CNIOSHA1_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = CNIOSHA1; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CNIOSHA1; + }; + name = Debug; + }; + OBJ_1101 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CNIOSHA1_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = CNIOSHA1; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CNIOSHA1; + }; + name = Release; + }; + OBJ_1108 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CNIOZlib_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = CNIOZlib; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CNIOZlib; + }; + name = Debug; + }; + OBJ_1109 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/CNIOZlib_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = CNIOZlib; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = CNIOZlib; + }; + name = Release; + }; + OBJ_1116 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = "$(inherited)"; + INFOPLIST_FILE = CapCollectorServer.xcodeproj/COperatingSystem_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = "$(inherited)"; + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = COperatingSystem; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = COperatingSystem; + }; + name = Debug; + }; + OBJ_1117 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = "$(inherited)"; + INFOPLIST_FILE = CapCollectorServer.xcodeproj/COperatingSystem_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = "$(inherited)"; + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = COperatingSystem; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = COperatingSystem; + }; + name = Release; + }; + OBJ_1123 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 5 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4_2 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 5.0.0"; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + OBJ_1124 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 5 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4_2 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 5.0.0"; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; + OBJ_1129 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + }; + name = Debug; + }; + OBJ_1130 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + }; + name = Release; + }; + OBJ_1133 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Command_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Command; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Command; + }; + name = Debug; + }; + OBJ_1134 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Command_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Command; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Command; + }; + name = Release; + }; + OBJ_1186 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Console_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Console; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Console; + }; + name = Debug; + }; + OBJ_1187 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Console_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Console; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Console; + }; + name = Release; + }; + OBJ_1250 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_1251 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_1255 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Core_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Core; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Core; + }; + name = Debug; + }; + OBJ_1256 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Core_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Core; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Core; + }; + name = Release; + }; + OBJ_1310 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.1.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_1311 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.1.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_1315 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Crypto_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap"; + PRODUCT_BUNDLE_IDENTIFIER = Crypto; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Crypto; + }; + name = Debug; + }; + OBJ_1316 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Crypto_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap"; + PRODUCT_BUNDLE_IDENTIFIER = Crypto; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Crypto; + }; + name = Release; + }; + OBJ_1374 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_1375 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_1379 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/DatabaseKit_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = DatabaseKit; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = DatabaseKit; + }; + name = Debug; + }; + OBJ_1380 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/DatabaseKit_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = DatabaseKit; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = DatabaseKit; + }; + name = Release; + }; + OBJ_1443 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_1444 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_1448 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = "$(inherited)"; + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Debugging_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = "$(inherited)"; + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Debugging; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Debugging; + }; + name = Debug; + }; + OBJ_1449 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = "$(inherited)"; + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Debugging_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = "$(inherited)"; + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Debugging; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Debugging; + }; + name = Release; + }; + OBJ_1456 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/HTTP_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap"; + PRODUCT_BUNDLE_IDENTIFIER = HTTP; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = HTTP; + }; + name = Debug; + }; + OBJ_1457 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/HTTP_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap"; + PRODUCT_BUNDLE_IDENTIFIER = HTTP; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = HTTP; + }; + name = Release; + }; + OBJ_1526 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_1527 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_1531 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Logging_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Logging; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Logging; + }; + name = Debug; + }; + OBJ_1532 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Logging_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Logging; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Logging; + }; + name = Release; + }; + OBJ_1566 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Multipart_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Multipart; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Multipart; + }; + name = Debug; + }; + OBJ_1567 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Multipart_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Multipart; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Multipart; + }; + name = Release; + }; + OBJ_1606 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_1607 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_1611 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIO_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = NIO; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIO; + }; + name = Debug; + }; + OBJ_1612 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIO_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = NIO; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIO; + }; + name = Release; + }; + OBJ_1683 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIOConcurrencyHelpers_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = NIOConcurrencyHelpers; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIOConcurrencyHelpers; + }; + name = Debug; + }; + OBJ_1684 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIOConcurrencyHelpers_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = NIOConcurrencyHelpers; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIOConcurrencyHelpers; + }; + name = Release; + }; + OBJ_1692 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIOFoundationCompat_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = NIOFoundationCompat; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIOFoundationCompat; + }; + name = Debug; + }; + OBJ_1693 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIOFoundationCompat_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = NIOFoundationCompat; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIOFoundationCompat; + }; + name = Release; + }; + OBJ_1712 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIOHTTP1_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = NIOHTTP1; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIOHTTP1; + }; + name = Debug; + }; + OBJ_1713 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIOHTTP1_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = NIOHTTP1; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIOHTTP1; + }; + name = Release; + }; + OBJ_1744 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIOOpenSSL_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap"; + PRODUCT_BUNDLE_IDENTIFIER = NIOOpenSSL; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIOOpenSSL; + }; + name = Debug; + }; + OBJ_1745 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIOOpenSSL_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap"; + PRODUCT_BUNDLE_IDENTIFIER = NIOOpenSSL; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIOOpenSSL; + }; + name = Release; + }; + OBJ_1784 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIOPriorityQueue_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = NIOPriorityQueue; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIOPriorityQueue; + }; + name = Debug; + }; + OBJ_1785 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIOPriorityQueue_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = NIOPriorityQueue; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIOPriorityQueue; + }; + name = Release; + }; + OBJ_1791 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIOTLS_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = NIOTLS; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIOTLS; + }; + name = Debug; + }; + OBJ_1792 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIOTLS_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = NIOTLS; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIOTLS; + }; + name = Release; + }; + OBJ_1813 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIOWebSocket_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = NIOWebSocket; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIOWebSocket; + }; + name = Debug; + }; + OBJ_1814 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/NIOWebSocket_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = NIOWebSocket; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = NIOWebSocket; + }; + name = Release; + }; + OBJ_1847 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Random_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include"; + PRODUCT_BUNDLE_IDENTIFIER = Random; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Random; + }; + name = Debug; + }; + OBJ_1848 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Random_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include"; + PRODUCT_BUNDLE_IDENTIFIER = Random; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Random; + }; + name = Release; + }; + OBJ_1874 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Routing_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Routing; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Routing; + }; + name = Debug; + }; + OBJ_1875 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Routing_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Routing; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Routing; + }; + name = Release; + }; + OBJ_1920 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_1921 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_1926 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/SQLite.swift/Sources/SQLiteObjc/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Run_Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx @executable_path"; + MACOSX_DEPLOYMENT_TARGET = 10.10; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_FORCE_DYNAMIC_LINK_STDLIB = YES; + SWIFT_FORCE_STATIC_LINK_STDLIB = NO; + SWIFT_VERSION = 5.0; + TARGET_NAME = Run; + TVOS_DEPLOYMENT_TARGET = 9.0; + WATCHOS_DEPLOYMENT_TARGET = 2.0; + }; + name = Debug; + }; + OBJ_1927 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/SQLite.swift/Sources/SQLiteObjc/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Run_Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx @executable_path"; + MACOSX_DEPLOYMENT_TARGET = 10.10; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_FORCE_DYNAMIC_LINK_STDLIB = YES; + SWIFT_FORCE_STATIC_LINK_STDLIB = NO; + SWIFT_VERSION = 5.0; + TARGET_NAME = Run; + TVOS_DEPLOYMENT_TARGET = 9.0; + WATCHOS_DEPLOYMENT_TARGET = 2.0; + }; + name = Release; + }; + OBJ_2014 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/SQLite.swift/Sources/SQLiteObjc/include", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/SQLite_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = "$(inherited)"; + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = SQLite; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 5.0; + TARGET_NAME = SQLite; + }; + name = Debug; + }; + OBJ_2015 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/SQLite.swift/Sources/SQLiteObjc/include", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/SQLite_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = "$(inherited)"; + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = SQLite; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 5.0; + TARGET_NAME = SQLite; + }; + name = Release; + }; + OBJ_2044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_2045 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_2049 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/SQLite.swift/Sources/SQLiteObjc/include", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/SQLiteObjc_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = "$(inherited)"; + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = SQLiteObjc; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = SQLiteObjc; + }; + name = Debug; + }; + OBJ_2050 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/SQLite.swift/Sources/SQLiteObjc/include", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/SQLiteObjc_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = "$(inherited)"; + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = SQLiteObjc; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + TARGET_NAME = SQLiteObjc; + }; + name = Release; + }; + OBJ_2057 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Service_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Service; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Service; + }; + name = Debug; + }; + OBJ_2058 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Service_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Service; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Service; + }; + name = Release; + }; + OBJ_2109 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_2110 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_2114 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/TemplateKit_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = TemplateKit; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = TemplateKit; + }; + name = Debug; + }; + OBJ_2115 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/TemplateKit_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = TemplateKit; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = TemplateKit; + }; + name = Release; + }; + OBJ_2189 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.1.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_2190 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.1.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_2194 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/URLEncodedForm_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = URLEncodedForm; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = URLEncodedForm; + }; + name = Debug; + }; + OBJ_2195 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/URLEncodedForm_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = URLEncodedForm; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = URLEncodedForm; + }; + name = Release; + }; + OBJ_2234 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.1.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_2235 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.1.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_2239 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Validation_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Validation; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Validation; + }; + name = Debug; + }; + OBJ_2240 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Validation_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Validation; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Validation; + }; + name = Release; + }; + OBJ_2289 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_2290 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_2294 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Vapor_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap"; + PRODUCT_BUNDLE_IDENTIFIER = Vapor; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Vapor; + }; + name = Debug; + }; + OBJ_2295 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Vapor_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap"; + PRODUCT_BUNDLE_IDENTIFIER = Vapor; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Vapor; + }; + name = Release; + }; + OBJ_2449 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_2450 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_2454 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/WebSocket_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap"; + PRODUCT_BUNDLE_IDENTIFIER = WebSocket; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = WebSocket; + }; + name = Debug; + }; + OBJ_2455 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/WebSocket_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap"; + PRODUCT_BUNDLE_IDENTIFIER = WebSocket; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = WebSocket; + }; + name = Release; + }; + OBJ_2518 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.1.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_2519 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.1.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_2524 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_2525 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_2530 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Debug; + }; + OBJ_2531 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LD = /usr/bin/true; + OTHER_SWIFT_FLAGS = "-swift-version 4 -I $(TOOLCHAIN_DIR)/usr/lib/swift/pm/4 -target x86_64-apple-macosx10.10 -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -package-description-version 4.0.0"; + SWIFT_VERSION = 4.0; + }; + name = Release; + }; + OBJ_3 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_OBJC_ARC = YES; + COMBINE_HIDPI_IMAGES = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_NS_ASSERTIONS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "SWIFT_PACKAGE=1", + "DEBUG=1", + ); + MACOSX_DEPLOYMENT_TARGET = 10.10; + ONLY_ACTIVE_ARCH = YES; + OTHER_SWIFT_FLAGS = "$(inherited) -DXcode"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + SUPPORTED_PLATFORMS = "macosx iphoneos iphonesimulator appletvos appletvsimulator watchos watchsimulator"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) SWIFT_PACKAGE DEBUG"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + USE_HEADERMAP = NO; + }; + name = Debug; + }; + OBJ_4 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_OBJC_ARC = YES; + COMBINE_HIDPI_IMAGES = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_OPTIMIZATION_LEVEL = s; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "SWIFT_PACKAGE=1", + ); + MACOSX_DEPLOYMENT_TARGET = 10.10; + OTHER_SWIFT_FLAGS = "$(inherited) -DXcode"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + SUPPORTED_PLATFORMS = "macosx iphoneos iphonesimulator appletvos appletvsimulator watchos watchsimulator"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) SWIFT_PACKAGE"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + USE_HEADERMAP = NO; + }; + name = Release; + }; + OBJ_754 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/SQLite.swift/Sources/SQLiteObjc/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/App_Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + MACOSX_DEPLOYMENT_TARGET = 10.10; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap"; + PRODUCT_BUNDLE_IDENTIFIER = App; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 5.0; + TARGET_NAME = App; + TVOS_DEPLOYMENT_TARGET = 9.0; + WATCHOS_DEPLOYMENT_TARGET = 2.0; + }; + name = Debug; + }; + OBJ_755 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/SQLite.swift/Sources/SQLiteObjc/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/App_Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + MACOSX_DEPLOYMENT_TARGET = 10.10; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap"; + PRODUCT_BUNDLE_IDENTIFIER = App; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 5.0; + TARGET_NAME = App; + TVOS_DEPLOYMENT_TARGET = 9.0; + WATCHOS_DEPLOYMENT_TARGET = 2.0; + }; + name = Release; + }; + OBJ_883 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + EMBEDDED_CONTENT_CONTAINS_SWIFT = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/SQLite.swift/Sources/SQLiteObjc/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/AppTests_Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @loader_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.10; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 5.0; + TARGET_NAME = AppTests; + TVOS_DEPLOYMENT_TARGET = 9.0; + WATCHOS_DEPLOYMENT_TARGET = 2.0; + }; + name = Debug; + }; + OBJ_884 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + EMBEDDED_CONTENT_CONTAINS_SWIFT = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/SQLite.swift/Sources/SQLiteObjc/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOZlib/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include", + "$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include", + "$(SRCROOT)/.build/checkouts/swift-nio-ssl-support", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL", + "$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/AppTests_Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @loader_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.10; + OTHER_CFLAGS = ( + "$(inherited)", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + "-I/usr/local/Cellar/libressl/2.9.1/include", + ); + OTHER_LDFLAGS = ( + "$(inherited)", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lssl", + "-L/usr/local/Cellar/libressl/2.9.1/lib", + "-lcrypto", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited) -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -I/usr/local/Cellar/libressl/2.9.1/include -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CNIOOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CapCollectorServer.xcodeproj/GeneratedModuleMap/CCryptoOpenSSL/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/.build/checkouts/crypto/Sources/CBase32/include/module.modulemap"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 5.0; + TARGET_NAME = AppTests; + TVOS_DEPLOYMENT_TARGET = 9.0; + WATCHOS_DEPLOYMENT_TARGET = 2.0; + }; + name = Release; + }; + OBJ_971 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Async_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Async; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Async; + }; + name = Debug; + }; + OBJ_972 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PLATFORM_DIR)/Developer/Library/Frameworks", + ); + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOSHA1/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOAtomics/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIODarwin/include", + "$(SRCROOT)/.build/checkouts/swift-nio/Sources/CNIOLinux/include", + "$(SRCROOT)/.build/checkouts/swift-nio-zlib-support", + ); + INFOPLIST_FILE = CapCollectorServer.xcodeproj/Async_Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx"; + OTHER_CFLAGS = "$(inherited)"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-lz", + ); + OTHER_SWIFT_FLAGS = "$(inherited)"; + PRODUCT_BUNDLE_IDENTIFIER = Async; + PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)"; + SWIFT_VERSION = 4.0; + TARGET_NAME = Async; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + OBJ_1004 /* Build configuration list for PBXNativeTarget "Bits" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1005 /* Debug */, + OBJ_1006 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1037 /* Build configuration list for PBXNativeTarget "CBase32" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1038 /* Debug */, + OBJ_1039 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1043 /* Build configuration list for PBXNativeTarget "CBcrypt" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1044 /* Debug */, + OBJ_1045 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1050 /* Build configuration list for PBXNativeTarget "CCryptoOpenSSL" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1051 /* Debug */, + OBJ_1052 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1056 /* Build configuration list for PBXNativeTarget "CNIOAtomics" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1057 /* Debug */, + OBJ_1058 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1065 /* Build configuration list for PBXNativeTarget "CNIODarwin" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1066 /* Debug */, + OBJ_1067 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1073 /* Build configuration list for PBXNativeTarget "CNIOHTTPParser" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1074 /* Debug */, + OBJ_1075 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1082 /* Build configuration list for PBXNativeTarget "CNIOLinux" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1083 /* Debug */, + OBJ_1084 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1092 /* Build configuration list for PBXNativeTarget "CNIOOpenSSL" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1093 /* Debug */, + OBJ_1094 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1099 /* Build configuration list for PBXNativeTarget "CNIOSHA1" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1100 /* Debug */, + OBJ_1101 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1107 /* Build configuration list for PBXNativeTarget "CNIOZlib" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1108 /* Debug */, + OBJ_1109 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1115 /* Build configuration list for PBXNativeTarget "COperatingSystem" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1116 /* Debug */, + OBJ_1117 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1122 /* Build configuration list for PBXNativeTarget "CapCollectorServerPackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1123 /* Debug */, + OBJ_1124 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1128 /* Build configuration list for PBXAggregateTarget "CapCollectorServerPackageTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1129 /* Debug */, + OBJ_1130 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1132 /* Build configuration list for PBXNativeTarget "Command" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1133 /* Debug */, + OBJ_1134 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1185 /* Build configuration list for PBXNativeTarget "Console" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1186 /* Debug */, + OBJ_1187 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1249 /* Build configuration list for PBXNativeTarget "ConsolePackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1250 /* Debug */, + OBJ_1251 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1254 /* Build configuration list for PBXNativeTarget "Core" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1255 /* Debug */, + OBJ_1256 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1309 /* Build configuration list for PBXNativeTarget "CorePackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1310 /* Debug */, + OBJ_1311 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1314 /* Build configuration list for PBXNativeTarget "Crypto" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1315 /* Debug */, + OBJ_1316 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1373 /* Build configuration list for PBXNativeTarget "CryptoPackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1374 /* Debug */, + OBJ_1375 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1378 /* Build configuration list for PBXNativeTarget "DatabaseKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1379 /* Debug */, + OBJ_1380 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1442 /* Build configuration list for PBXNativeTarget "DatabaseKitPackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1443 /* Debug */, + OBJ_1444 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1447 /* Build configuration list for PBXNativeTarget "Debugging" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1448 /* Debug */, + OBJ_1449 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1455 /* Build configuration list for PBXNativeTarget "HTTP" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1456 /* Debug */, + OBJ_1457 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1525 /* Build configuration list for PBXNativeTarget "HTTPPackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1526 /* Debug */, + OBJ_1527 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1530 /* Build configuration list for PBXNativeTarget "Logging" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1531 /* Debug */, + OBJ_1532 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1565 /* Build configuration list for PBXNativeTarget "Multipart" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1566 /* Debug */, + OBJ_1567 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1605 /* Build configuration list for PBXNativeTarget "MultipartPackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1606 /* Debug */, + OBJ_1607 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1610 /* Build configuration list for PBXNativeTarget "NIO" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1611 /* Debug */, + OBJ_1612 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1682 /* Build configuration list for PBXNativeTarget "NIOConcurrencyHelpers" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1683 /* Debug */, + OBJ_1684 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1691 /* Build configuration list for PBXNativeTarget "NIOFoundationCompat" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1692 /* Debug */, + OBJ_1693 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1711 /* Build configuration list for PBXNativeTarget "NIOHTTP1" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1712 /* Debug */, + OBJ_1713 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1743 /* Build configuration list for PBXNativeTarget "NIOOpenSSL" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1744 /* Debug */, + OBJ_1745 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1783 /* Build configuration list for PBXNativeTarget "NIOPriorityQueue" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1784 /* Debug */, + OBJ_1785 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1790 /* Build configuration list for PBXNativeTarget "NIOTLS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1791 /* Debug */, + OBJ_1792 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1812 /* Build configuration list for PBXNativeTarget "NIOWebSocket" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1813 /* Debug */, + OBJ_1814 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1846 /* Build configuration list for PBXNativeTarget "Random" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1847 /* Debug */, + OBJ_1848 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1873 /* Build configuration list for PBXNativeTarget "Routing" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1874 /* Debug */, + OBJ_1875 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1919 /* Build configuration list for PBXNativeTarget "RoutingPackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1920 /* Debug */, + OBJ_1921 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_1925 /* Build configuration list for PBXNativeTarget "Run" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_1926 /* Debug */, + OBJ_1927 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2 /* Build configuration list for PBXProject "CapCollectorServer" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_3 /* Debug */, + OBJ_4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2013 /* Build configuration list for PBXNativeTarget "SQLite" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2014 /* Debug */, + OBJ_2015 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2043 /* Build configuration list for PBXNativeTarget "SQLite.swiftPackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2044 /* Debug */, + OBJ_2045 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2048 /* Build configuration list for PBXNativeTarget "SQLiteObjc" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2049 /* Debug */, + OBJ_2050 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2056 /* Build configuration list for PBXNativeTarget "Service" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2057 /* Debug */, + OBJ_2058 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2108 /* Build configuration list for PBXNativeTarget "ServicePackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2109 /* Debug */, + OBJ_2110 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2113 /* Build configuration list for PBXNativeTarget "TemplateKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2114 /* Debug */, + OBJ_2115 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2188 /* Build configuration list for PBXNativeTarget "TemplateKitPackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2189 /* Debug */, + OBJ_2190 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2193 /* Build configuration list for PBXNativeTarget "URLEncodedForm" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2194 /* Debug */, + OBJ_2195 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2233 /* Build configuration list for PBXNativeTarget "URLEncodedFormPackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2234 /* Debug */, + OBJ_2235 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2238 /* Build configuration list for PBXNativeTarget "Validation" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2239 /* Debug */, + OBJ_2240 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2288 /* Build configuration list for PBXNativeTarget "ValidationPackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2289 /* Debug */, + OBJ_2290 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2293 /* Build configuration list for PBXNativeTarget "Vapor" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2294 /* Debug */, + OBJ_2295 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2448 /* Build configuration list for PBXNativeTarget "VaporPackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2449 /* Debug */, + OBJ_2450 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2453 /* Build configuration list for PBXNativeTarget "WebSocket" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2454 /* Debug */, + OBJ_2455 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2517 /* Build configuration list for PBXNativeTarget "WebSocketPackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2518 /* Debug */, + OBJ_2519 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2523 /* Build configuration list for PBXNativeTarget "swift-nio-sslPackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2524 /* Debug */, + OBJ_2525 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_2529 /* Build configuration list for PBXNativeTarget "swift-nioPackageDescription" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_2530 /* Debug */, + OBJ_2531 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_753 /* Build configuration list for PBXNativeTarget "App" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_754 /* Debug */, + OBJ_755 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_882 /* Build configuration list for PBXNativeTarget "AppTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_883 /* Debug */, + OBJ_884 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + OBJ_970 /* Build configuration list for PBXNativeTarget "Async" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_971 /* Debug */, + OBJ_972 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = OBJ_1 /* Project object */; +} diff --git a/CapCollectorServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/CapCollectorServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..fe1aa71 --- /dev/null +++ b/CapCollectorServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/CapCollectorServer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/CapCollectorServer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/CapCollectorServer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/CapCollectorServer.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/CapCollectorServer.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..a72dc2b --- /dev/null +++ b/CapCollectorServer.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded + + + \ No newline at end of file diff --git a/CapCollectorServer.xcodeproj/xcshareddata/xcschemes/CapCollectorServer-Package.xcscheme b/CapCollectorServer.xcodeproj/xcshareddata/xcschemes/CapCollectorServer-Package.xcscheme new file mode 100644 index 0000000..d53b29d --- /dev/null +++ b/CapCollectorServer.xcodeproj/xcshareddata/xcschemes/CapCollectorServer-Package.xcscheme @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/CapCollectorServer.xcodeproj/xcshareddata/xcschemes/Run.xcscheme b/CapCollectorServer.xcodeproj/xcshareddata/xcschemes/Run.xcscheme new file mode 100644 index 0000000..f5be417 --- /dev/null +++ b/CapCollectorServer.xcodeproj/xcshareddata/xcschemes/Run.xcscheme @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Package.swift b/Package.swift index 78a0e15..fa2ac49 100755 --- a/Package.swift +++ b/Package.swift @@ -4,11 +4,11 @@ import PackageDescription let package = Package( name: "CapCollectorServer", dependencies: [ - // 💧 A server-side Swift web framework. .package(url: "https://github.com/vapor/vapor.git", .upToNextMinor(from: "3.3.0")), + .package(url: "https://github.com/stephencelis/SQLite.swift", from: "0.12.0"), ], targets: [ - .target(name: "App", dependencies: ["Vapor"]), + .target(name: "App", dependencies: ["Vapor", "SQLite"]), .target(name: "Run", dependencies: ["App"]), .testTarget(name: "AppTests", dependencies: ["App"]), ] diff --git a/Sources/App/Error.swift b/Sources/App/Error.swift new file mode 100644 index 0000000..fabaf9e --- /dev/null +++ b/Sources/App/Error.swift @@ -0,0 +1,27 @@ +// +// Error.swift +// App +// +// Created by Christoph on 17.05.20. +// + +import Foundation +import Vapor + +enum CapError: Error { + + case unknownId + case invalidBody + case dataInconsistency + case invalidFile + + var response: HTTPResponseStatus { + switch self { + case .unknownId: return .notFound + case .invalidBody: return .badRequest + case .dataInconsistency: return .conflict + case .invalidFile: return .preconditionFailed + } + } +} + diff --git a/Sources/App/Log.swift b/Sources/App/Log.swift new file mode 100644 index 0000000..a47fd82 --- /dev/null +++ b/Sources/App/Log.swift @@ -0,0 +1,20 @@ +// +// Log.swift +// App +// +// Created by Christoph on 05.05.20. +// + +import Foundation + +private let df: DateFormatter = { + let df = DateFormatter() + df.dateStyle = .short + df.timeStyle = .short + return df +}() + +func log(_ message: String, file: String = #file, line: Int = #line) { + let date = df.string(from: Date()) + print("[\(date)][\(file.components(separatedBy: "/").last ?? file):\(line)] \(message)") +} diff --git a/Sources/App/Router+Extensions.swift b/Sources/App/Router+Extensions.swift new file mode 100644 index 0000000..bb7931f --- /dev/null +++ b/Sources/App/Router+Extensions.swift @@ -0,0 +1,56 @@ +// +// Router+Extensions.swift +// App +// +// Created by Christoph on 05.05.20. +// + +import Vapor + +extension Router { + + func getCatching(_ path: PathComponentsRepresentable..., call: @escaping (Request) throws -> T) { + self.get(path) { (request: Request) -> HTTPResponse in + catching(path, request: request, closure: call) + } + } + + func postCatching(_ path: PathComponentsRepresentable..., call: @escaping (Request) throws -> T) { + self.post(path) { (request: Request) -> HTTPResponse in + catching(path, request: request, closure: call) + } + } +} + +private func catching(_ path: PathComponentsRepresentable..., request: Request, closure: @escaping (Request) throws -> T) -> HTTPResponse { + + let route = path.convertToPathComponents().map { $0.string }.joined(separator: "/") + do { + let data = try closure(request) + if let d = data as? Data { + return HTTPResponse(status: .ok, body: d) + } else { + return HTTPResponse(status: .ok) + } + } catch let error as CapError { + log("\(route): Error \(error)") + return HTTPResponse(status: error.response) + } catch { + log("\(route): Unhandled error \(error)") + return HTTPResponse(status: .internalServerError) + } +} + +extension PathComponent { + + var string: String { + switch self { + case .constant(let value): + return value + case .parameter(let value): + return "<\(value)>" + default: + return "\(self)" + } + } +} diff --git a/Sources/App/routes.swift b/Sources/App/routes.swift index 41fd993..85c4036 100755 --- a/Sources/App/routes.swift +++ b/Sources/App/routes.swift @@ -1,11 +1,133 @@ import Routing import Vapor +import SQLite + +private let fm = FileManager.default + +private let baseFolder = URL(fileURLWithPath: "/caps") + +private let imageFolder = URL(fileURLWithPath: "/caps/public/images") + +private let dbFile = "/caps/db.sqlite3" + +private let tempImageFile = imageFolder.appendingPathComponent("temp.jpg") + +private var db: Connection! + +private let id = Expression("id") + +private let name = Expression("name") + +private let table = Table("caps") + +func loadDatabase() throws { + db = try Connection(dbFile) +} + +private func select(_ cap: Int) -> Table { + table.filter(id == cap) +} + +private func folder(of cap: Int) -> URL { + imageFolder.appendingPathComponent(String(format: "%04d", cap)) +} + +private func file(of cap: Int, version: Int) -> URL { + folder(of: cap).appendingPathComponent(String(format: "%04d-%02d.jpg", cap, version)) +} + +private func countImages(in folder: URL) throws -> Int { + try fm.contentsOfDirectory(at: folder, includingPropertiesForKeys: nil).filter({ $0.pathExtension == "jpg" }).count +} + +private func count(of cap: Int) throws -> Int { + let f = folder(of: cap) + guard fm.fileExists(atPath: f.path) else { + throw CapError.unknownId + } + return try countImages(in: f) +} /// Register your application's routes here. /// /// [Learn More →](https://docs.vapor.codes/3.0/getting-started/structure/#routesswift) public func routes(_ router: Router) throws { - router.get("hello") { req in - return "Hello, world!" + + // Get the name of a cap + router.getCatching("name", Int.parameter) { request -> Data in + let cap = try request.parameters.next(Int.self) + guard let row = try db.pluck(table.select(name).filter(id == cap)) else { + throw CapError.unknownId + } + return row[name].data(using: .utf8)! + } + + // Set the name of a cap + router.postCatching("name", Int.parameter) { request in + let cap = try request.parameters.next(Int.self) + guard let data = request.http.body.data, let string = String(data: data, encoding: .utf8) else { + throw CapError.invalidBody + } + guard let _ = try db.pluck(select(cap)) else { + try db.run(select(cap).insert(id <- cap, name <- string)) + return + } + try db.run(select(cap).update(name <- string)) + } + + // Upload an image + router.postCatching("images", Int.parameter) { request -> Data in + let cap = try request.parameters.next(Int.self) + guard let data = request.http.body.data else { + throw CapError.invalidBody + } + let c = try count(of: cap) + let f = file(of: cap, version: c) + guard !fm.fileExists(atPath: f.path) else { + throw CapError.dataInconsistency + } + try data.write(to: f) + return "\(c)".data(using: .utf8)! + } + + // Get count of a cap + router.getCatching("count", Int.parameter) { request -> Data in + let cap = try request.parameters.next(Int.self) + let c = try count(of: cap) + return "\(c)".data(using: .utf8)! + } + + // Get the count of all caps + router.getCatching("count", "all") { request -> Data in + let counts: [(id: Int, count: Int)] = try fm.contentsOfDirectory(at: imageFolder, includingPropertiesForKeys: nil).compactMap { folder in + guard let id = Int(folder.lastPathComponent) else { + return nil + } + guard let count = try? countImages(in: folder) else { + return nil + } + return (id, count) + } + return counts.map { "\($0.id)#\($0.count)"}.joined(separator: ";").data(using: .utf8)! + } + + // Set a different version as the main image + router.getCatching("switch", Int.parameter, Int.parameter) { request in + let cap = try request.parameters.next(Int.self) + let version = try request.parameters.next(Int.self) + guard version > 0 else { + return + } + let file1 = file(of: cap, version: 0) + guard fm.fileExists(atPath: file1.path) else { + throw CapError.invalidFile + } + let file2 = file(of: cap, version: version) + guard fm.fileExists(atPath: file2.path) else { + throw CapError.invalidFile + } + try fm.moveItem(at: file1, to: tempImageFile) + try fm.moveItem(at: file2, to: file1) + try fm.moveItem(at: tempImageFile, to: file2) } }