[iOS] Move nala symbols & color assets into core build
This shifts the actual symbol & color asset catalog generation and compilation into the brave-core ninja build system and bundles them in a dynamic framework which will allow asset sharing between targets saving some disk space. This change will improve incremental build times of anything that would have imported the `DesignSystem` target by 30s+ per build as SPM plugins were executing incorrectly every build (with no way to seemingly fix it for asset catalogs) thus causing asset catalog recompilations each time.
This commit is contained in:
@@ -61,6 +61,7 @@ group("brave_ios") {
|
||||
":brave_core_xcframework",
|
||||
":generated_xcconfig",
|
||||
":material_components_xcframework",
|
||||
":nala_assets_xcframework",
|
||||
]
|
||||
}
|
||||
|
||||
@@ -197,6 +198,11 @@ ios_create_xcframework("material_components_xcframework") {
|
||||
deps = [ "//ios/third_party/material_components_ios" ]
|
||||
}
|
||||
|
||||
ios_create_xcframework("nala_assets_xcframework") {
|
||||
framework_dir = "$root_build_dir/NalaAssets.framework"
|
||||
deps = [ "//brave/ios/nala:nala_assets_framework" ]
|
||||
}
|
||||
|
||||
# Generates an xcconfig based on GN args that are needed in the Xcode app build
|
||||
# process such as Info.plist or build setting subsititions.
|
||||
generated_file("generated_xcconfig") {
|
||||
|
||||
@@ -18,7 +18,7 @@ var package = Package(
|
||||
.library(name: "BraveShared", targets: ["BraveShared"]),
|
||||
.library(name: "BraveShields", targets: ["BraveShields"]),
|
||||
.library(name: "BraveUI", targets: ["BraveUI"]),
|
||||
.library(name: "DesignSystem", targets: ["DesignSystem"]),
|
||||
.library(name: "DesignSystem", targets: ["DesignSystem", "NalaAssets"]),
|
||||
.library(name: "BraveWallet", targets: ["BraveWallet"]),
|
||||
.library(name: "Data", targets: ["Data"]),
|
||||
.library(name: "Storage", targets: ["Storage"]),
|
||||
@@ -140,7 +140,12 @@ var package = Package(
|
||||
dependencies: ["Strings", "Preferences", "BraveCore"],
|
||||
plugins: ["LoggerPlugin"]
|
||||
),
|
||||
.target(name: "DesignSystem", dependencies: ["Then"], plugins: ["LeoAssetsPlugin"]),
|
||||
.target(
|
||||
name: "DesignSystem",
|
||||
dependencies: ["Then", "NalaAssets"],
|
||||
plugins: ["LeoAssetsPlugin"]
|
||||
),
|
||||
.binaryTarget(name: "NalaAssets", path: "../../../out/ios_current_link/NalaAssets.xcframework"),
|
||||
.binaryTarget(name: "BraveCore", path: "../../../out/ios_current_link/BraveCore.xcframework"),
|
||||
.binaryTarget(
|
||||
name: "MaterialComponents",
|
||||
|
||||
@@ -15,12 +15,9 @@ struct LeoAssetsPlugin: BuildToolPlugin {
|
||||
let fileManager = FileManager.default
|
||||
let braveCoreRootDirectory = context.package.directory.removingLastComponent()
|
||||
.removingLastComponent()
|
||||
let leoSymbolsDirectory = braveCoreRootDirectory.appending("node_modules/@brave/leo-sf-symbols")
|
||||
let leoColorsDirectory = braveCoreRootDirectory.appending("node_modules/@brave/leo")
|
||||
|
||||
if !fileManager.fileExists(atPath: leoSymbolsDirectory.string)
|
||||
|| !fileManager.fileExists(atPath: leoColorsDirectory.string)
|
||||
{
|
||||
if !fileManager.fileExists(atPath: leoColorsDirectory.string) {
|
||||
Diagnostics.error(
|
||||
"Required Leo assets not found: \(FileManager.default.currentDirectoryPath)"
|
||||
)
|
||||
@@ -33,53 +30,6 @@ struct LeoAssetsPlugin: BuildToolPlugin {
|
||||
return []
|
||||
}
|
||||
|
||||
let assetCatalogs = Array(target.sourceFiles(withSuffix: "xcassets").map(\.path))
|
||||
if assetCatalogs.isEmpty {
|
||||
Diagnostics.error("No asset catalogs found in the target")
|
||||
return []
|
||||
}
|
||||
|
||||
// The command that will create an asset catalog full of leo sf symbols
|
||||
let copySFSymbolsCommand: Command = try {
|
||||
let scriptPath = context.package.directory.appending(
|
||||
"Plugins/LeoAssetsPlugin/make_asset_catalog.sh"
|
||||
)
|
||||
let outputDirectory = context.pluginWorkDirectory.appending("LeoAssets.xcassets")
|
||||
|
||||
// Running a macOS tool while archiving a iOS build is unfortunately broken in Xcode 14. It attempts to
|
||||
// run the macOS tool from the wrong directory and fails to find it. One way around this is to use a
|
||||
// precompiled version of this tool instead, but it will mean building and uploading them somewhere
|
||||
// so for now the tool will be replaced by a bash script. We can uncomment this and add back the dep on
|
||||
// `LeoAssetCatalogGenerator` once this is fixed in Xcode.
|
||||
// return [
|
||||
// .buildCommand(
|
||||
// displayName: "Create Asset Catalog",
|
||||
// executable: try context.tool(named: "LeoAssetCatalogGenerator").path,
|
||||
// arguments: assetCatalogs + [leoSymbolsDirectory, outputDirectory.string],
|
||||
// inputFiles: assetCatalogs + [leoSymbolsDirectory.appending("package.json")],
|
||||
// outputFiles: [outputDirectory]
|
||||
// ),
|
||||
// ]
|
||||
let icons = try assetCatalogs.flatMap {
|
||||
try symbolSets(in: URL(fileURLWithPath: $0.string))
|
||||
}.joined(separator: ",")
|
||||
return .buildCommand(
|
||||
displayName: "Create Asset Catalog",
|
||||
executable: Path("/bin/zsh"),
|
||||
arguments: [
|
||||
scriptPath.string,
|
||||
"-l", leoSymbolsDirectory.string,
|
||||
"-i", icons,
|
||||
"-o", context.pluginWorkDirectory.string,
|
||||
],
|
||||
inputFiles: assetCatalogs + [
|
||||
leoSymbolsDirectory.appending("package.json"),
|
||||
scriptPath,
|
||||
],
|
||||
outputFiles: [outputDirectory]
|
||||
)
|
||||
}()
|
||||
|
||||
let copyColorsCommand: Command = {
|
||||
let tokensPath = leoColorsDirectory.appending("tokens/ios-swift")
|
||||
let outputDirectory = context.pluginWorkDirectory.appending("LeoColors")
|
||||
@@ -87,54 +37,19 @@ struct LeoAssetsPlugin: BuildToolPlugin {
|
||||
displayName: "Copy Leo Colors",
|
||||
executable: Path("/bin/zsh"),
|
||||
arguments: [
|
||||
"-c", "cp -R \"\(tokensPath.string)/.\" \"\(outputDirectory)\"",
|
||||
"-c", "find \"\(tokensPath)\" -name \\*.swift -exec cp {} \"\(outputDirectory)\" \\;",
|
||||
],
|
||||
inputFiles: [
|
||||
tokensPath.appending("Colors.xcassets"),
|
||||
tokensPath.appending("Gradients.swift"),
|
||||
tokensPath.appending("ColorSetAccessors.swift"),
|
||||
],
|
||||
outputFiles: [
|
||||
outputDirectory.appending("Colors.xcassets"),
|
||||
outputDirectory.appending("Gradients.swift"),
|
||||
outputDirectory.appending("ColorSetAccessors.swift"),
|
||||
]
|
||||
)
|
||||
}()
|
||||
|
||||
return [
|
||||
copySFSymbolsCommand,
|
||||
copyColorsCommand,
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
extension LeoAssetsPlugin {
|
||||
fileprivate func symbolSets(in catalog: URL) throws -> [String] {
|
||||
let fileManager = FileManager.default
|
||||
var symbols: [String] = []
|
||||
guard
|
||||
let enumerator = fileManager.enumerator(
|
||||
at: catalog,
|
||||
includingPropertiesForKeys: [.isDirectoryKey, .nameKey],
|
||||
options: [.skipsHiddenFiles, .skipsSubdirectoryDescendants]
|
||||
)
|
||||
else { return [] }
|
||||
while let fileURL = enumerator.nextObject() as? URL {
|
||||
guard
|
||||
let values = try? fileURL.resourceValues(forKeys: [.isDirectoryKey, .nameKey]),
|
||||
let isDirectory = values.isDirectory,
|
||||
let name = values.name,
|
||||
isDirectory,
|
||||
name.hasPrefix("leo"),
|
||||
name.hasSuffix(".symbolset"),
|
||||
!(try fileManager.contentsOfDirectory(atPath: fileURL.path)
|
||||
.contains(where: { $0.hasSuffix("svg") }))
|
||||
else {
|
||||
continue
|
||||
}
|
||||
symbols.append(fileURL.deletingPathExtension().lastPathComponent)
|
||||
}
|
||||
return symbols
|
||||
return [copyColorsCommand]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,75 +0,0 @@
|
||||
# Copyright (c) 2023 The Brave Authors. All rights reserved.
|
||||
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
||||
# You can obtain one at https://mozilla.org/MPL/2.0/.
|
||||
|
||||
# Creates an asset catalog in the provided output directory
|
||||
#
|
||||
# Usage: ./make_asset_catalog.sh icon[,icon1,icon2] -o outputDirectory
|
||||
|
||||
output_directory=""
|
||||
leo_sf_symbols_directory=""
|
||||
icons=()
|
||||
|
||||
function usage() {
|
||||
echo "Usage: ./ios_make_asset_catalog.sh -l leo_sf_symbols_directory -i icon[,icon1,icon2] -o output_directory"
|
||||
exit 1
|
||||
}
|
||||
|
||||
while getopts ":l:o:i:" arg
|
||||
do
|
||||
case "$arg" in
|
||||
o) output_directory="$OPTARG/LeoAssets.xcassets" ;;
|
||||
l) leo_sf_symbols_directory=$OPTARG ;;
|
||||
i) icons=($(echo "$OPTARG" | awk -F',' '{for(i=1; i<=NF; i++) print $i}')) ;;
|
||||
esac
|
||||
done
|
||||
|
||||
if [ $output_directory = "" ] || [ $leo_sf_symbols_directory = "" ] || [ ${#icons[@]} -eq 0 ]; then
|
||||
usage
|
||||
fi
|
||||
|
||||
echo "Output Directory: $output_directory"
|
||||
|
||||
if [ -d "$output_directory" ]; then
|
||||
rm -r "$output_directory"
|
||||
fi
|
||||
|
||||
mkdir -p "$output_directory"
|
||||
if [ ! -f "$output_directory/Contents.json" ]; then
|
||||
cat > "$output_directory/Contents.json" << EOF
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
EOF
|
||||
fi
|
||||
|
||||
for icon in $icons
|
||||
do
|
||||
declare svg_name="$icon.svg"
|
||||
if [ ! -f "$leo_sf_symbols_directory/symbols/$svg_name" ]; then
|
||||
echo "Could not find Leo SF symbol named $svg_name"
|
||||
exit 1
|
||||
fi
|
||||
mkdir -p "$output_directory/$icon.symbolset"
|
||||
cp "$leo_sf_symbols_directory/symbols/$svg_name" "$output_directory/$icon.symbolset/$svg_name"
|
||||
if [ ! -f "$output_directory/$icon.symbolset/Contents.json" ]; then
|
||||
cat > "$output_directory/$icon.symbolset/Contents.json" << EOF
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"filename" : "$svg_name",
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
EOF
|
||||
fi
|
||||
done
|
||||
+1
-1
@@ -113,7 +113,7 @@ public class BraveNewsAddSourceResultsViewController: UITableViewController {
|
||||
let cell = tableView.dequeueReusableCell(for: indexPath) as FeedLocationCell
|
||||
cell.imageView?.image =
|
||||
indexPath.section == 0
|
||||
? UIImage(braveSystemNamed: "brave.lock.alt", compatibleWith: nil)?
|
||||
? UIImage(braveSystemNamed: "leo.lock.plain", compatibleWith: nil)?
|
||||
.applyingSymbolConfiguration(
|
||||
.init(font: .preferredFont(for: .body, weight: .semibold), scale: .small)
|
||||
) : UIImage(named: "insecure-site-icon", in: .module, compatibleWith: nil)!
|
||||
|
||||
@@ -4,19 +4,20 @@
|
||||
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
||||
|
||||
import Foundation
|
||||
import NalaAssets
|
||||
import SwiftUI
|
||||
import UIKit
|
||||
|
||||
extension Color {
|
||||
/// Initialize a `Color` with a color resource.
|
||||
public init(braveSystemName resource: FigmaColorResource) {
|
||||
self.init(resource.name, bundle: resource.bundle)
|
||||
self.init(resource.name, bundle: .nalaAssets)
|
||||
}
|
||||
}
|
||||
|
||||
extension UIColor {
|
||||
/// Initialize a `UIColor` with a color resource.
|
||||
public convenience init(braveSystemName resource: FigmaColorResource) {
|
||||
self.init(named: resource.name, in: resource.bundle, compatibleWith: nil)!
|
||||
self.init(named: resource.name, in: .nalaAssets, compatibleWith: nil)!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
||||
|
||||
import Foundation
|
||||
import NalaAssets
|
||||
import SwiftUI
|
||||
import UIKit
|
||||
|
||||
@@ -14,14 +15,14 @@ extension UIImage {
|
||||
braveSystemNamed name: String,
|
||||
compatibleWith traitCollection: UITraitCollection? = nil
|
||||
) {
|
||||
self.init(named: name, in: .module, compatibleWith: traitCollection)
|
||||
self.init(named: name, in: .nalaAssets, compatibleWith: traitCollection)
|
||||
}
|
||||
}
|
||||
|
||||
extension Image {
|
||||
/// Creates a labeled image from the Design System bundle that you can use as content for controls.
|
||||
public init(braveSystemName name: String) {
|
||||
self.init(name, bundle: .module)
|
||||
self.init(name, bundle: .nalaAssets)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
-12
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"filename" : "brave.lock.alt.svg",
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-103
@@ -1,103 +0,0 @@
|
||||
<svg width="3300" height="2200" viewBox="0 0 3300 2200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="brave.lock.alt">
|
||||
<g id="Notes">
|
||||
<path id="artboard" d="M3300 0H0V2200H3300V0Z" fill="white"/>
|
||||
<path id="Vector" d="M263 292H3036" stroke="black" stroke-width="0.5"/>
|
||||
<text id="Weight/Scale Variations" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" font-weight="bold" letter-spacing="0em"><tspan x="263" y="321.727">Weight/Scale Variations</tspan></text>
|
||||
<text id="Ultralight" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="531.211" y="321.727">Ultralight</tspan></text>
|
||||
<text id="Thin" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="842.922" y="321.727">Thin</tspan></text>
|
||||
<text id="Light" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="1137.63" y="321.727">Light</tspan></text>
|
||||
<text id="Regular" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="1426.34" y="321.727">Regular</tspan></text>
|
||||
<text id="Medium" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="1721.56" y="321.727">Medium</tspan></text>
|
||||
<text id="Semibold" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="2014.27" y="321.727">Semibold</tspan></text>
|
||||
<text id="Bold" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="2325.98" y="321.727">Bold</tspan></text>
|
||||
<text id="Heavy" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="2617.19" y="321.727">Heavy</tspan></text>
|
||||
<text id="Black" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="2916.4" y="321.727">Black</tspan></text>
|
||||
<path id="Vector_2" d="M263 1903H3036" stroke="black" stroke-width="0.5"/>
|
||||
<g id="Group">
|
||||
<path id="Vector_3" d="M272.248 1933.83C273.329 1933.83 274.344 1933.62 275.295 1933.21C276.245 1932.8 277.084 1932.23 277.81 1931.51C278.535 1930.78 279.105 1929.94 279.519 1928.99C279.932 1928.04 280.139 1927.02 280.139 1925.95C280.139 1924.87 279.932 1923.86 279.519 1922.91C279.105 1921.96 278.534 1921.12 277.805 1920.39C277.075 1919.66 276.236 1919.09 275.285 1918.68C274.335 1918.27 273.319 1918.07 272.238 1918.07C271.164 1918.07 270.152 1918.27 269.201 1918.68C268.251 1919.09 267.414 1919.66 266.691 1920.39C265.969 1921.12 265.401 1921.96 264.987 1922.91C264.574 1923.86 264.367 1924.87 264.367 1925.95C264.367 1927.02 264.574 1928.04 264.987 1928.99C265.401 1929.94 265.97 1930.78 266.696 1931.51C267.422 1932.23 268.26 1932.8 269.211 1933.21C270.161 1933.62 271.174 1933.83 272.248 1933.83ZM272.248 1932.35C271.363 1932.35 270.534 1932.18 269.763 1931.85C268.991 1931.52 268.314 1931.07 267.731 1930.48C267.149 1929.89 266.693 1929.21 266.364 1928.44C266.035 1927.66 265.871 1926.83 265.871 1925.95C265.871 1925.06 266.034 1924.23 266.359 1923.46C266.685 1922.68 267.139 1922 267.722 1921.42C268.304 1920.83 268.981 1920.37 269.753 1920.05C270.524 1919.72 271.353 1919.55 272.238 1919.55C273.13 1919.55 273.962 1919.72 274.733 1920.05C275.505 1920.37 276.184 1920.83 276.769 1921.42C277.355 1922 277.814 1922.68 278.146 1923.46C278.478 1924.23 278.644 1925.06 278.644 1925.95C278.644 1926.83 278.48 1927.66 278.151 1928.44C277.823 1929.21 277.367 1929.89 276.784 1930.48C276.202 1931.07 275.523 1931.52 274.748 1931.85C273.973 1932.18 273.14 1932.35 272.248 1932.35ZM268.654 1925.95C268.654 1926.16 268.723 1926.34 268.859 1926.47C268.996 1926.61 269.178 1926.67 269.406 1926.67H271.516V1928.79C271.516 1929.01 271.581 1929.18 271.711 1929.32C271.841 1929.46 272.017 1929.53 272.238 1929.53C272.453 1929.53 272.631 1929.46 272.771 1929.32C272.91 1929.18 272.98 1929.01 272.98 1928.79V1926.67H275.09C275.311 1926.67 275.49 1926.61 275.627 1926.47C275.764 1926.34 275.832 1926.16 275.832 1925.95C275.832 1925.73 275.764 1925.55 275.627 1925.41C275.49 1925.28 275.311 1925.21 275.09 1925.21H272.98V1923.1C272.98 1922.88 272.91 1922.7 272.771 1922.56C272.631 1922.42 272.453 1922.35 272.238 1922.35C272.017 1922.35 271.841 1922.42 271.711 1922.56C271.581 1922.7 271.516 1922.88 271.516 1923.1V1925.21H269.406C269.178 1925.21 268.996 1925.28 268.859 1925.41C268.723 1925.55 268.654 1925.73 268.654 1925.95Z" fill="black"/>
|
||||
</g>
|
||||
<g id="Group_2">
|
||||
<path id="Vector_4" d="M293.576 1935.91C294.937 1935.91 296.218 1935.65 297.419 1935.13C298.62 1934.61 299.679 1933.89 300.597 1932.97C301.515 1932.05 302.235 1930.99 302.756 1929.79C303.276 1928.59 303.537 1927.31 303.537 1925.95C303.537 1924.59 303.276 1923.31 302.756 1922.11C302.235 1920.91 301.515 1919.85 300.597 1918.93C299.679 1918.01 298.618 1917.29 297.414 1916.77C296.209 1916.25 294.927 1915.99 293.566 1915.99C292.205 1915.99 290.925 1916.25 289.723 1916.77C288.522 1917.29 287.464 1918.01 286.55 1918.93C285.635 1919.85 284.917 1920.91 284.396 1922.11C283.875 1923.31 283.615 1924.59 283.615 1925.95C283.615 1927.31 283.875 1928.59 284.396 1929.79C284.917 1930.99 285.636 1932.05 286.554 1932.97C287.472 1933.89 288.532 1934.61 289.733 1935.13C290.934 1935.65 292.215 1935.91 293.576 1935.91ZM293.576 1934.25C292.424 1934.25 291.346 1934.04 290.344 1933.61C289.341 1933.18 288.46 1932.58 287.702 1931.82C286.943 1931.06 286.351 1930.18 285.925 1929.18C285.498 1928.18 285.285 1927.1 285.285 1925.95C285.285 1924.8 285.498 1923.72 285.925 1922.72C286.351 1921.71 286.942 1920.83 287.697 1920.07C288.452 1919.31 289.331 1918.71 290.334 1918.29C291.336 1917.86 292.414 1917.65 293.566 1917.65C294.718 1917.65 295.796 1917.86 296.799 1918.29C297.801 1918.71 298.683 1919.31 299.445 1920.07C300.207 1920.83 300.802 1921.71 301.232 1922.72C301.662 1923.72 301.877 1924.8 301.877 1925.95C301.877 1927.1 301.664 1928.18 301.237 1929.18C300.811 1930.18 300.218 1931.06 299.46 1931.82C298.701 1932.58 297.819 1933.18 296.813 1933.61C295.807 1934.04 294.728 1934.25 293.576 1934.25ZM289.045 1925.95C289.045 1926.18 289.123 1926.38 289.279 1926.53C289.435 1926.68 289.637 1926.75 289.885 1926.75H292.756V1929.63C292.756 1929.88 292.831 1930.08 292.98 1930.23C293.13 1930.38 293.322 1930.46 293.556 1930.46C293.804 1930.46 294.004 1930.38 294.157 1930.23C294.31 1930.08 294.386 1929.88 294.386 1929.63V1926.75H297.267C297.515 1926.75 297.715 1926.68 297.868 1926.53C298.021 1926.38 298.097 1926.18 298.097 1925.95C298.097 1925.7 298.021 1925.5 297.868 1925.35C297.715 1925.2 297.515 1925.12 297.267 1925.12H294.386V1922.25C294.386 1921.99 294.31 1921.79 294.157 1921.64C294.004 1921.48 293.804 1921.41 293.556 1921.41C293.322 1921.41 293.13 1921.49 292.98 1921.64C292.831 1921.8 292.756 1922 292.756 1922.25V1925.12H289.885C289.631 1925.12 289.427 1925.2 289.274 1925.35C289.121 1925.5 289.045 1925.7 289.045 1925.95Z" fill="black"/>
|
||||
</g>
|
||||
<g id="Group_3">
|
||||
<path id="Vector_5" d="M320.617 1938.66C322.01 1938.66 323.34 1938.45 324.606 1938.01C325.872 1937.58 327.036 1936.97 328.097 1936.19C329.158 1935.41 330.081 1934.49 330.866 1933.43C331.65 1932.37 332.259 1931.2 332.692 1929.93C333.125 1928.66 333.341 1927.34 333.341 1925.95C333.341 1924.56 333.125 1923.23 332.692 1921.96C332.259 1920.69 331.65 1919.53 330.866 1918.47C330.081 1917.41 329.158 1916.48 328.097 1915.7C327.036 1914.92 325.871 1914.31 324.601 1913.87C323.332 1913.44 322 1913.22 320.607 1913.22C319.214 1913.22 317.884 1913.44 316.618 1913.87C315.351 1914.31 314.189 1914.92 313.131 1915.7C312.073 1916.48 311.152 1917.41 310.368 1918.47C309.583 1919.53 308.976 1920.69 308.546 1921.96C308.117 1923.23 307.902 1924.56 307.902 1925.95C307.902 1927.34 308.118 1928.66 308.551 1929.93C308.984 1931.2 309.591 1932.37 310.373 1933.43C311.154 1934.49 312.075 1935.41 313.136 1936.19C314.197 1936.97 315.361 1937.58 316.627 1938.01C317.894 1938.45 319.223 1938.66 320.617 1938.66ZM320.617 1936.85C319.412 1936.85 318.265 1936.66 317.174 1936.3C316.084 1935.93 315.086 1935.41 314.181 1934.75C313.276 1934.08 312.49 1933.3 311.823 1932.39C311.155 1931.48 310.639 1930.48 310.275 1929.39C309.91 1928.3 309.728 1927.15 309.728 1925.95C309.728 1924.74 309.91 1923.59 310.275 1922.5C310.639 1921.41 311.154 1920.41 311.818 1919.5C312.482 1918.59 313.266 1917.8 314.171 1917.14C315.076 1916.48 316.074 1915.96 317.165 1915.6C318.255 1915.23 319.402 1915.05 320.607 1915.05C321.818 1915.05 322.969 1915.23 324.059 1915.6C325.15 1915.96 326.149 1916.48 327.057 1917.14C327.965 1917.8 328.751 1918.59 329.415 1919.5C330.08 1920.41 330.596 1921.41 330.963 1922.5C331.331 1923.59 331.515 1924.74 331.515 1925.95C331.522 1927.15 331.343 1928.3 330.978 1929.39C330.613 1930.48 330.098 1931.48 329.43 1932.39C328.763 1933.3 327.975 1934.08 327.067 1934.75C326.159 1935.41 325.159 1935.93 324.069 1936.3C322.978 1936.66 321.828 1936.85 320.617 1936.85ZM314.845 1925.95C314.845 1926.2 314.931 1926.41 315.104 1926.58C315.277 1926.75 315.496 1926.83 315.763 1926.83H319.708V1930.78C319.708 1931.05 319.791 1931.27 319.957 1931.44C320.123 1931.61 320.337 1931.7 320.597 1931.7C320.864 1931.7 321.084 1931.62 321.256 1931.45C321.429 1931.28 321.515 1931.06 321.515 1930.78V1926.83H325.47C325.737 1926.83 325.955 1926.75 326.124 1926.58C326.294 1926.41 326.378 1926.2 326.378 1925.95C326.378 1925.68 326.294 1925.45 326.124 1925.29C325.955 1925.12 325.737 1925.03 325.47 1925.03H321.515V1921.09C321.515 1920.81 321.429 1920.59 321.256 1920.42C321.084 1920.24 320.864 1920.16 320.597 1920.16C320.337 1920.16 320.123 1920.24 319.957 1920.42C319.791 1920.59 319.708 1920.81 319.708 1921.09V1925.03H315.763C315.49 1925.03 315.268 1925.12 315.099 1925.29C314.93 1925.45 314.845 1925.68 314.845 1925.95Z" fill="black"/>
|
||||
</g>
|
||||
<text id="Design Variations" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" font-weight="bold" letter-spacing="0em"><tspan x="263" y="1952.73">Design Variations</tspan></text>
|
||||
<text id="Symbols are supported in up to nine weights and three scales." fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="263" y="1970.73">Symbols are supported in up to nine weights and three scales.</tspan></text>
|
||||
<text id="For optimal layout with text and other symbols, vertically align" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="263" y="1988.73">For optimal layout with text and other symbols, vertically align</tspan></text>
|
||||
<text id="symbols with the adjacent text." fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="263" y="2006.73">symbols with the adjacent text.</tspan></text>
|
||||
<path id="Vector_6" d="M776 1919V1933" stroke="#00AEEF" stroke-width="0.5"/>
|
||||
<g id="Group_4">
|
||||
<path id="Vector_7" d="M779.311 1933.16C779.571 1933.16 779.773 1933.1 779.916 1932.99C780.059 1932.88 780.176 1932.69 780.268 1932.41L781.527 1928.97H787.289L788.549 1932.41C788.64 1932.69 788.757 1932.88 788.9 1932.99C789.044 1933.1 789.242 1933.16 789.496 1933.16C789.757 1933.16 789.963 1933.08 790.116 1932.94C790.269 1932.8 790.346 1932.6 790.346 1932.36C790.346 1932.21 790.31 1932.03 790.238 1931.83L785.658 1919.63C785.541 1919.33 785.382 1919.11 785.18 1918.96C784.978 1918.81 784.721 1918.73 784.408 1918.73C783.803 1918.73 783.393 1919.03 783.178 1919.62L778.598 1931.84C778.526 1932.04 778.49 1932.22 778.49 1932.37C778.49 1932.61 778.563 1932.81 778.71 1932.95C778.856 1933.09 779.057 1933.16 779.311 1933.16ZM782.006 1927.48L784.379 1920.91H784.428L786.801 1927.48H782.006Z" fill="black"/>
|
||||
</g>
|
||||
<path id="Vector_8" d="M793.197 1919V1933" stroke="#00AEEF" stroke-width="0.5"/>
|
||||
<text id="Margins" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" font-weight="bold" letter-spacing="0em"><tspan x="776" y="1952.73">Margins</tspan></text>
|
||||
<text id="Leading and trailing margins on the left and right side of each symbol" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="776" y="1970.73">Leading and trailing margins on the left and right side of each symbol</tspan></text>
|
||||
<text id="can be adjusted by modifying the x-location of the margin guidelines." fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="776" y="1988.73">can be adjusted by modifying the x-location of the margin guidelines.</tspan></text>
|
||||
<text id="Modifications are automatically applied proportionally to all" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="776" y="2006.73">Modifications are automatically applied proportionally to all</tspan></text>
|
||||
<text id="scales and weights." fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="776" y="2024.73">scales and weights.</tspan></text>
|
||||
<g id="Group_5">
|
||||
<path id="Vector_9" d="M1291.84 1934.87L1293.54 1936.57C1293.97 1937.01 1294.42 1937.21 1294.9 1937.18C1295.38 1937.15 1295.85 1936.87 1296.31 1936.36L1307.01 1924.57L1306.04 1923.6L1295.43 1935.28C1295.25 1935.48 1295.07 1935.59 1294.89 1935.62C1294.71 1935.64 1294.51 1935.54 1294.27 1935.3L1293.1 1934.14C1292.87 1933.91 1292.76 1933.7 1292.79 1933.52C1292.82 1933.34 1292.94 1933.16 1293.14 1932.98L1304.62 1922.18L1303.64 1921.21L1292.05 1932.1C1291.55 1932.56 1291.29 1933.02 1291.25 1933.5C1291.22 1933.97 1291.41 1934.43 1291.84 1934.87ZM1298.26 1916.67C1298.05 1916.87 1297.93 1917.1 1297.91 1917.37C1297.88 1917.63 1297.93 1917.85 1298.04 1918.05C1298.16 1918.23 1298.33 1918.37 1298.56 1918.46C1298.78 1918.55 1299.06 1918.56 1299.38 1918.48C1300.11 1918.31 1300.85 1918.24 1301.6 1918.27C1302.35 1918.3 1303.08 1918.55 1303.79 1919.02L1303.21 1920.47C1303.04 1920.89 1302.99 1921.25 1303.07 1921.56C1303.14 1921.87 1303.31 1922.16 1303.58 1922.43L1305.87 1924.75C1306.12 1925 1306.35 1925.14 1306.58 1925.18C1306.81 1925.22 1307.06 1925.21 1307.34 1925.16L1308.4 1924.96L1309.07 1925.64L1309.03 1926.19C1309.01 1926.44 1309.04 1926.67 1309.12 1926.88C1309.2 1927.09 1309.36 1927.31 1309.61 1927.55L1310.37 1928.29C1310.61 1928.53 1310.87 1928.66 1311.15 1928.67C1311.44 1928.68 1311.7 1928.57 1311.93 1928.33L1314.84 1925.41C1315.07 1925.18 1315.19 1924.92 1315.18 1924.65C1315.18 1924.37 1315.05 1924.11 1314.81 1923.87L1314.04 1923.11C1313.8 1922.87 1313.58 1922.7 1313.38 1922.61C1313.17 1922.53 1312.95 1922.49 1312.71 1922.51L1312.13 1922.56L1311.49 1921.93L1311.73 1920.8C1311.8 1920.52 1311.79 1920.26 1311.7 1920.02C1311.6 1919.77 1311.41 1919.5 1311.12 1919.21L1308.92 1917.02C1308.09 1916.2 1307.2 1915.58 1306.26 1915.16C1305.32 1914.75 1304.37 1914.53 1303.42 1914.52C1302.47 1914.5 1301.55 1914.68 1300.66 1915.04C1299.78 1915.41 1298.98 1915.95 1298.26 1916.67ZM1299.75 1917.04C1300.36 1916.6 1301.01 1916.28 1301.7 1916.1C1302.39 1915.91 1303.1 1915.85 1303.8 1915.92C1304.51 1915.98 1305.2 1916.17 1305.87 1916.49C1306.54 1916.8 1307.15 1917.24 1307.7 1917.79L1310.13 1920.21C1310.25 1920.32 1310.32 1920.44 1310.35 1920.55C1310.38 1920.66 1310.38 1920.8 1310.34 1920.97L1310.02 1922.45L1311.52 1923.94L1312.51 1923.88C1312.63 1923.87 1312.72 1923.88 1312.79 1923.9C1312.85 1923.93 1312.94 1923.99 1313.03 1924.08L1313.61 1924.66L1311.17 1927.1L1310.59 1926.53C1310.49 1926.43 1310.43 1926.35 1310.41 1926.28C1310.38 1926.22 1310.37 1926.12 1310.38 1925.99L1310.45 1925.01L1308.95 1923.53L1307.43 1923.78C1307.26 1923.81 1307.14 1923.82 1307.04 1923.8C1306.95 1923.77 1306.84 1923.7 1306.71 1923.59L1304.71 1921.58C1304.58 1921.47 1304.51 1921.35 1304.49 1921.25C1304.48 1921.14 1304.51 1920.99 1304.59 1920.81L1305.46 1918.72C1304.68 1917.99 1303.8 1917.49 1302.83 1917.21C1301.85 1916.93 1300.86 1916.94 1299.84 1917.24C1299.76 1917.26 1299.71 1917.24 1299.69 1917.19C1299.67 1917.15 1299.69 1917.1 1299.75 1917.04Z" fill="black"/>
|
||||
</g>
|
||||
<text id="Exporting" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" font-weight="bold" letter-spacing="0em"><tspan x="1289" y="1952.73">Exporting</tspan></text>
|
||||
<text id="Symbols should be outlined when exporting to ensure the" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="1289" y="1970.73">Symbols should be outlined when exporting to ensure the</tspan></text>
|
||||
<text id="design is preserved when submitting to Xcode." fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="1289" y="1988.73">design is preserved when submitting to Xcode.</tspan></text>
|
||||
<text id="template-version" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="2946" y="1932.73">Template v.3.0</tspan></text>
|
||||
<text id="Requires Xcode 13 or greater" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="2857" y="1950.73">Requires Xcode 13 or greater</tspan></text>
|
||||
<text id="descriptive-name" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="2872" y="1968.73">Generated from brave.lock</tspan></text>
|
||||
<text id="Typeset at 100 points" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="2903" y="1986.73">Typeset at 100 points</tspan></text>
|
||||
<text id="Small" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="263" y="725.727">Small</tspan></text>
|
||||
<text id="Medium_2" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="263" y="1155.73">Medium</tspan></text>
|
||||
<text id="Large" fill="black" xml:space="preserve" style="white-space: pre" font-family="Inter" font-size="13" letter-spacing="0em"><tspan x="263" y="1585.73">Large</tspan></text>
|
||||
</g>
|
||||
<g id="Guides">
|
||||
<g id="H-reference">
|
||||
<path id="Vector_10" d="M339.993 696H342.638L368.328 628.867H369.03V625.541H367.123L339.993 696ZM350.688 671.52H385.982L385.231 669.271H351.438L350.688 671.52ZM394.119 696H396.764L369.638 625.541H368.433V628.867L394.119 696Z" fill="#27AAE1"/>
|
||||
</g>
|
||||
<path id="Baseline-S" d="M263 696H3036" stroke="#27AAE1" stroke-width="0.5"/>
|
||||
<path id="Capline-S" d="M263 625.541H3036" stroke="#27AAE1" stroke-width="0.5"/>
|
||||
<g id="H-reference_2">
|
||||
<path id="Vector_11" d="M339.993 1126H342.638L368.328 1058.87H369.03V1055.54H367.123L339.993 1126ZM350.688 1101.52H385.982L385.231 1099.27H351.438L350.688 1101.52ZM394.119 1126H396.764L369.638 1055.54H368.433V1058.87L394.119 1126Z" fill="#27AAE1"/>
|
||||
</g>
|
||||
<path id="Baseline-M" d="M263 1126H3036" stroke="#27AAE1" stroke-width="0.5"/>
|
||||
<path id="Capline-M" d="M263 1055.54H3036" stroke="#27AAE1" stroke-width="0.5"/>
|
||||
<g id="H-reference_3">
|
||||
<path id="Vector_12" d="M339.993 1556H342.638L368.328 1488.87H369.03V1485.54H367.123L339.993 1556ZM350.688 1531.52H385.982L385.231 1529.27H351.438L350.688 1531.52ZM394.119 1556H396.764L369.638 1485.54H368.433V1488.87L394.119 1556Z" fill="#27AAE1"/>
|
||||
</g>
|
||||
<path id="Baseline-L" d="M263 1556H3036" stroke="#27AAE1" stroke-width="0.5"/>
|
||||
<path id="Capline-L" d="M263 1485.54H3036" stroke="#27AAE1" stroke-width="0.5"/>
|
||||
<path id="left-margin-Regular-M" d="M1396.1 1030.78V1150.12" stroke="#00AEEF" stroke-width="0.5"/>
|
||||
<path id="right-margin-Regular-M" d="M1503.59 1030.78V1150.12" stroke="#00AEEF" stroke-width="0.5"/>
|
||||
</g>
|
||||
<g id="Symbols">
|
||||
<g id="Regular-L">
|
||||
<path id="Vector_13" d="M1487.4 1584H1411.8C1402.87 1584 1395.6 1576.77 1395.6 1567.88V1514.12C1395.6 1505.23 1402.87 1498 1411.8 1498H1417.2V1487.25C1417.2 1469.47 1431.73 1455 1449.6 1455C1467.47 1455 1482 1469.47 1482 1487.25V1498H1487.4C1496.33 1498 1503.6 1505.23 1503.6 1514.12V1567.88C1503.6 1576.77 1496.33 1584 1487.4 1584ZM1449.6 1465.75C1437.69 1465.75 1428 1475.39 1428 1487.25V1498H1471.2V1487.25C1471.2 1475.39 1461.51 1465.75 1449.6 1465.75ZM1492.8 1514.12C1492.8 1511.16 1490.38 1508.75 1487.4 1508.75H1411.8C1408.82 1508.75 1406.4 1511.16 1406.4 1514.12V1567.88C1406.4 1570.84 1408.82 1573.25 1411.8 1573.25H1487.4C1490.38 1573.25 1492.8 1570.84 1492.8 1567.88V1514.12Z" fill="black"/>
|
||||
</g>
|
||||
<g id="Semibold-L">
|
||||
<path id="Vector_14" d="M2080.4 1584H2004.8C1995.87 1584 1988.6 1576.77 1988.6 1567.88V1514.12C1988.6 1505.23 1995.87 1498 2004.8 1498H2010.2V1487.25C2010.2 1469.47 2024.73 1455 2042.6 1455C2060.47 1455 2075 1469.47 2075 1487.25V1498H2080.4C2089.33 1498 2096.6 1505.23 2096.6 1514.12V1567.88C2096.6 1576.77 2089.33 1584 2080.4 1584ZM2042.6 1466.75C2030.69 1466.75 2022 1475.39 2022 1487.25V1498H2063.2V1487.25C2063.2 1475.39 2054.51 1466.75 2042.6 1466.75ZM2083.8 1516.12C2083.8 1513.16 2081.38 1510.75 2078.4 1510.75H2006.8C2003.82 1510.75 2001.4 1513.16 2001.4 1516.12V1565.88C2001.4 1568.84 2003.82 1571.25 2006.8 1571.25H2077.4C2080.38 1571.25 2082.8 1568.84 2082.8 1565.88L2083.8 1516.12Z" fill="black"/>
|
||||
</g>
|
||||
<g id="Heavy-L">
|
||||
<path id="Vector_15" d="M2679.4 1584H2603.8C2594.87 1584 2587.6 1576.77 2587.6 1567.88V1514.12C2587.6 1505.23 2594.87 1498 2603.8 1498H2609.2V1487.25C2609.2 1469.47 2623.73 1455 2641.6 1455C2659.47 1455 2674 1469.47 2674 1487.25V1498H2679.4C2688.33 1498 2695.6 1505.23 2695.6 1514.12V1567.88C2695.6 1576.77 2688.33 1584 2679.4 1584ZM2641.6 1468.75C2631.69 1468.75 2623 1475.39 2623 1487.25V1498H2660.2V1487.25C2660.2 1475.39 2651.51 1468.75 2641.6 1468.75ZM2680.8 1518.12C2680.8 1515.16 2678.38 1512.75 2675.4 1512.75H2607.8C2604.82 1512.75 2602.4 1515.16 2602.4 1518.12V1563.88C2602.4 1566.84 2604.82 1569.25 2607.8 1569.25H2674.4C2677.38 1569.25 2679.8 1566.84 2679.8 1563.88L2680.8 1518.12Z" fill="black"/>
|
||||
</g>
|
||||
<g id="Regular-M">
|
||||
<path id="Vector_16" d="M1478.65 1139H1420.55C1413.69 1139 1408.1 1133.4 1408.1 1126.5V1084.83C1408.1 1077.94 1413.69 1072.33 1420.55 1072.33H1424.7V1064C1424.7 1050.22 1435.87 1039 1449.6 1039C1463.33 1039 1474.5 1050.22 1474.5 1064V1072.33H1478.65C1485.51 1072.33 1491.1 1077.94 1491.1 1084.83V1126.5C1491.1 1133.4 1485.51 1139 1478.65 1139ZM1449.6 1047.33C1440.45 1047.33 1433 1054.81 1433 1064V1072.33H1466.2V1064C1466.2 1054.81 1458.75 1047.33 1449.6 1047.33ZM1482.8 1084.83C1482.8 1082.53 1480.94 1080.67 1478.65 1080.67H1420.55C1418.26 1080.67 1416.4 1082.53 1416.4 1084.83V1126.5C1416.4 1128.8 1418.26 1130.67 1420.55 1130.67H1478.65C1480.94 1130.67 1482.8 1128.8 1482.8 1126.5V1084.83Z" fill="black"/>
|
||||
</g>
|
||||
<g id="Semibold-M">
|
||||
<path id="Vector_17" d="M2071.65 1139H2013.55C2006.69 1139 2001.1 1133.4 2001.1 1126.5V1084.83C2001.1 1077.94 2006.69 1072.33 2013.55 1072.33H2017.7V1064C2017.7 1050.22 2028.87 1039 2042.6 1039C2056.33 1039 2067.5 1050.22 2067.5 1064V1072.33H2071.65C2078.51 1072.33 2084.1 1077.94 2084.1 1084.83V1126.5C2084.1 1133.4 2078.51 1139 2071.65 1139ZM2042.6 1048.33C2033.45 1048.33 2027 1054.81 2027 1064V1072.33H2058.2V1064C2058.2 1054.81 2051.75 1048.33 2042.6 1048.33ZM2073.8 1086.83C2073.8 1084.53 2071.94 1082.67 2069.65 1082.67H2015.55C2013.26 1082.67 2011.4 1084.53 2011.4 1086.83V1124.5C2011.4 1126.8 2013.26 1128.67 2015.55 1128.67H2069.65C2071.94 1128.67 2073.8 1126.8 2073.8 1124.5V1086.83Z" fill="black"/>
|
||||
</g>
|
||||
<g id="Heavy-M">
|
||||
<path id="Vector_18" d="M2670.65 1139H2612.55C2605.69 1139 2600.1 1133.4 2600.1 1126.5V1084.83C2600.1 1077.94 2605.69 1072.33 2612.55 1072.33H2616.7V1064C2616.7 1050.22 2627.87 1039 2641.6 1039C2655.33 1039 2666.5 1050.22 2666.5 1064V1072.33H2670.65C2677.51 1072.33 2683.1 1077.94 2683.1 1084.83V1126.5C2683.1 1133.4 2677.51 1139 2670.65 1139ZM2641.6 1050.33C2634.45 1050.33 2628 1054.81 2628 1064V1072.33H2655.2V1064C2655.2 1054.81 2648.75 1050.33 2641.6 1050.33ZM2670.8 1088.83C2670.8 1086.53 2668.94 1084.67 2666.65 1084.67H2616.55C2614.26 1084.67 2612.4 1086.53 2612.4 1088.83V1122.5C2612.4 1124.8 2614.26 1126.67 2616.55 1126.67H2666.65C2668.94 1126.67 2670.8 1124.8 2670.8 1122.5V1088.83Z" fill="black"/>
|
||||
</g>
|
||||
<g id="Regular-S">
|
||||
<path id="Vector_19" d="M1472 700H1427.2C1421.91 700 1417.6 695.629 1417.6 690.25V657.75C1417.6 652.374 1421.91 648 1427.2 648H1430.4V641.5C1430.4 630.749 1439.01 622 1449.6 622C1460.19 622 1468.8 630.749 1468.8 641.5V648H1472C1477.29 648 1481.6 652.374 1481.6 657.75V690.25C1481.6 695.629 1477.29 700 1472 700ZM1449.6 628.5C1442.54 628.5 1436.8 634.331 1436.8 641.5V648H1462.4V641.5C1462.4 634.331 1456.66 628.5 1449.6 628.5ZM1475.2 657.75C1475.2 655.956 1473.76 654.5 1472 654.5H1427.2C1425.44 654.5 1424 655.956 1424 657.75V690.25C1424 692.041 1425.44 693.5 1427.2 693.5H1472C1473.76 693.5 1475.2 692.041 1475.2 690.25V657.75Z" fill="black"/>
|
||||
</g>
|
||||
<g id="Semibold-S">
|
||||
<path id="Vector_20" d="M2065 700H2020.2C2014.91 700 2010.6 695.629 2010.6 690.25V657.75C2010.6 652.374 2014.91 648 2020.2 648H2023.4V641.5C2023.4 630.749 2032.01 622 2042.6 622C2053.19 622 2061.8 630.749 2061.8 641.5V648H2065C2070.29 648 2074.6 652.374 2074.6 657.75V690.25C2074.6 695.629 2070.29 700 2065 700ZM2042.6 629.5C2035.54 629.5 2030.8 634.331 2030.8 641.5V648H2054.4V641.5C2054.4 634.331 2049.66 629.5 2042.6 629.5ZM2066.2 659.75C2066.2 657.956 2064.76 656.5 2063 656.5H2022.2C2020.44 656.5 2019 657.956 2019 659.75V688.25C2019 690.041 2020.44 691.5 2022.2 691.5H2063C2064.76 691.5 2066.2 690.041 2066.2 688.25V659.75Z" fill="black"/>
|
||||
</g>
|
||||
<g id="Heavy-S">
|
||||
<path id="Vector_21" d="M2664 700H2619.2C2613.91 700 2609.6 695.629 2609.6 690.25V657.75C2609.6 652.374 2613.91 648 2619.2 648H2622.4V641.5C2622.4 630.749 2631.01 622 2641.6 622C2652.19 622 2660.8 630.749 2660.8 641.5V648H2664C2669.29 648 2673.6 652.374 2673.6 657.75V690.25C2673.6 695.629 2669.29 700 2664 700ZM2641.6 631.5C2636.2 631.5 2631.8 634.331 2631.8 641.5V648H2651.4V641.5C2651.4 634.331 2647 631.5 2641.6 631.5ZM2663.2 661.75C2663.2 659.956 2661.76 658.5 2660 658.5H2623.2C2621.44 658.5 2620 659.956 2620 661.75V686.25C2620 688.041 2621.44 689.5 2623.2 689.5H2660C2661.76 689.5 2663.2 688.041 2663.2 686.25V661.75Z" fill="black"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 26 KiB |
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
},
|
||||
"symbols" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
]
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user