···11+# Xcode
22+#
33+# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
44+55+## User settings
66+xcuserdata/
77+88+## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
99+*.xcscmblueprint
1010+*.xccheckout
1111+1212+## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
1313+build/
1414+DerivedData/
1515+*.moved-aside
1616+*.pbxuser
1717+!default.pbxuser
1818+*.mode1v3
1919+!default.mode1v3
2020+*.mode2v3
2121+!default.mode2v3
2222+*.perspectivev3
2323+!default.perspectivev3
2424+2525+## Obj-C/Swift specific
2626+*.hmap
2727+2828+## App packaging
2929+*.ipa
3030+*.dSYM.zip
3131+*.dSYM
3232+3333+## Playgrounds
3434+timeline.xctimeline
3535+playground.xcworkspace
3636+3737+# Swift Package Manager
3838+#
3939+# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
4040+# Packages/
4141+# Package.pins
4242+# Package.resolved
4343+# *.xcodeproj
4444+#
4545+# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
4646+# hence it is not needed unless you have added a package configuration file to your project
4747+# .swiftpm
4848+4949+.build/
5050+5151+# CocoaPods
5252+#
5353+# We recommend against adding the Pods directory to your .gitignore. However
5454+# you should judge for yourself, the pros and cons are mentioned at:
5555+# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
5656+#
5757+# Pods/
5858+#
5959+# Add this line if you want to avoid checking in source code from the Xcode workspace
6060+# *.xcworkspace
6161+6262+# Carthage
6363+#
6464+# Add this line if you want to avoid checking in source code from Carthage dependencies.
6565+# Carthage/Checkouts
6666+6767+Carthage/Build/
6868+6969+# Accio dependency management
7070+Dependencies/
7171+.accio/
7272+7373+# fastlane
7474+#
7575+# It is recommended to not store the screenshots in the git repo.
7676+# Instead, use fastlane to re-generate the screenshots whenever they are needed.
7777+# For more information about the recommended setup visit:
7878+# https://docs.fastlane.tools/best-practices/source-control/#source-control
7979+8080+fastlane/report.xml
8181+fastlane/Preview.html
8282+fastlane/screenshots/**/*.png
8383+fastlane/test_output
8484+8585+# Code Injection
8686+#
8787+# After new code Injection tools there's a generated folder /iOSInjectionProject
8888+# https://github.com/johnno1962/injectionforxcode
8989+9090+iOSInjectionProject/
+21
LICENSE
···11+MIT License
22+33+Copyright (c) 2021 SparrowTek
44+55+Permission is hereby granted, free of charge, to any person obtaining a copy
66+of this software and associated documentation files (the "Software"), to deal
77+in the Software without restriction, including without limitation the rights
88+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99+copies of the Software, and to permit persons to whom the Software is
1010+furnished to do so, subject to the following conditions:
1111+1212+The above copyright notice and this permission notice shall be included in all
1313+copies or substantial portions of the Software.
1414+1515+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1616+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1717+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121+SOFTWARE.