├── Xylophone ├── Sounds │ ├── A.wav │ ├── B.wav │ ├── C.wav │ ├── D.wav │ ├── E.wav │ ├── F.wav │ └── G.wav ├── Assets.xcassets │ ├── Contents.json │ ├── AppIcon.appiconset │ │ ├── Icon-1024.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-40@3x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ └── Contents.json │ ├── background.imageset │ │ ├── background.png │ │ ├── background-1.png │ │ ├── background-2.png │ │ └── Contents.json │ └── AppBreweryLogo.imageset │ │ ├── AppBreweryLogo.png │ │ ├── AppBreweryLogo-1.png │ │ ├── AppBreweryLogo-2.png │ │ └── Contents.json ├── ViewController.swift ├── AppDelegate.swift ├── Info.plist ├── SceneDelegate.swift ├── LaunchScreen.storyboard └── Base.lproj │ └── Main.storyboard ├── Documentation ├── AppBreweryBanner.png └── readme-end-banner.png ├── Xylophone.xcodeproj ├── .xcodesamplecode.plist ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcuserdata │ └── angelayu.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── project.pbxproj └── README.md /Xylophone/Sounds/A.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Sounds/A.wav -------------------------------------------------------------------------------- /Xylophone/Sounds/B.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Sounds/B.wav -------------------------------------------------------------------------------- /Xylophone/Sounds/C.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Sounds/C.wav -------------------------------------------------------------------------------- /Xylophone/Sounds/D.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Sounds/D.wav -------------------------------------------------------------------------------- /Xylophone/Sounds/E.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Sounds/E.wav -------------------------------------------------------------------------------- /Xylophone/Sounds/F.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Sounds/F.wav -------------------------------------------------------------------------------- /Xylophone/Sounds/G.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Sounds/G.wav -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Documentation/AppBreweryBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Documentation/AppBreweryBanner.png -------------------------------------------------------------------------------- /Documentation/readme-end-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Documentation/readme-end-banner.png -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-1024.png -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/background.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Assets.xcassets/background.imageset/background.png -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/background.imageset/background-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Assets.xcassets/background.imageset/background-1.png -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/background.imageset/background-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Assets.xcassets/background.imageset/background-2.png -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/AppBreweryLogo.imageset/AppBreweryLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Assets.xcassets/AppBreweryLogo.imageset/AppBreweryLogo.png -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/AppBreweryLogo.imageset/AppBreweryLogo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Assets.xcassets/AppBreweryLogo.imageset/AppBreweryLogo-1.png -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/AppBreweryLogo.imageset/AppBreweryLogo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appbrewery/Xylophone-iOS13-Completed/HEAD/Xylophone/Assets.xcassets/AppBreweryLogo.imageset/AppBreweryLogo-2.png -------------------------------------------------------------------------------- /Xylophone.xcodeproj/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Xylophone.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Xylophone.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Xylophone.xcodeproj/xcuserdata/angelayu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | Xylophone.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/background.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "background.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "background-1.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "background-2.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/AppBreweryLogo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "AppBreweryLogo.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "AppBreweryLogo-1.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "AppBreweryLogo-2.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Xylophone/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // Xylophone 4 | // 5 | // Created by Angela Yu on 28/06/2019. 6 | // Copyright © 2019 The App Brewery. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import AVFoundation 11 | 12 | class ViewController: UIViewController { 13 | 14 | var player: AVAudioPlayer! 15 | 16 | override func viewDidLoad() { 17 | super.viewDidLoad() 18 | 19 | } 20 | 21 | @IBAction func keyPressed(_ sender: UIButton) { 22 | 23 | playSound(soundName: sender.currentTitle!) 24 | 25 | //Reduces the sender's (the button that got pressed) opacity to half. 26 | sender.alpha = 0.5 27 | 28 | //Code should execute after 0.2 second delay. 29 | DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) { 30 | //Bring's sender's opacity back up to fully opaque. 31 | sender.alpha = 1.0 32 | } 33 | 34 | } 35 | 36 | func playSound(soundName: String) { 37 | let url = Bundle.main.url(forResource: soundName, withExtension: "wav") 38 | player = try! AVAudioPlayer(contentsOf: url!) 39 | player.play() 40 | 41 | } 42 | 43 | } 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![App Brewery Banner](Documentation/AppBreweryBanner.png) 2 | 3 | # Xylophone 4 | 5 | ## Our Goal 6 | 7 | The goal of this tutorial is to dive into a simple iOS recipe - how to play sound and use an Apple library called AVFoundation. The most important skill of a great programmer is being able to solve your own problems. We’ll do that by exploring StackOverflow, Apple Documentation and learning how to search for solutions effectively. By learning to use these tools, you’ll be able to start adding custom features to an app and get it to do what you want it to. 8 | 9 | 10 | ## What you will create 11 | 12 | You will be making your first musical instrument! Music apps are so popular on the App Store that they even get their own category. So in this module, we’re going to make a colourful XyloPhone app. Get it? Ok, the jokes are bad, but remember, I only wrote the good ones... 13 | 14 | ## What you will learn 15 | 16 | * How to play sound using AVFoundation and AVAudioPlayer. 17 | * Understand Apple documentation and how to use StackOverflow. 18 | * Functions and methods in Swift. 19 | * Data types. 20 | * Swift loops. 21 | * Variable scope. 22 | * The ViewController lifecycle. 23 | * Error handling in Swift. 24 | * Code refactoring. 25 | * Basic debugging. 26 | 27 | 28 | >This is a companion project to The App Brewery's Complete App Development Bootcamp, check out the full course at [www.appbrewery.co](https://www.appbrewery.co/) 29 | 30 | ![End Banner](Documentation/readme-end-banner.png) 31 | 32 | -------------------------------------------------------------------------------- /Xylophone/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // Xylophone 4 | // 5 | // Created by Angela Yu on 28/06/2019. 6 | // Copyright © 2019 The App Brewery. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | 15 | 16 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 17 | // Override point for customization after application launch. 18 | return true 19 | } 20 | 21 | func applicationWillTerminate(_ application: UIApplication) { 22 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 23 | } 24 | 25 | // MARK: UISceneSession Lifecycle 26 | 27 | func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { 28 | // Called when a new scene session is being created. 29 | // Use this method to select a configuration to create the new scene with. 30 | return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) 31 | } 32 | 33 | func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { 34 | // Called when the user discards a scene session. 35 | // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. 36 | // Use this method to release any resources that were specific to the discarded scenes, as they will not return. 37 | } 38 | 39 | 40 | } 41 | 42 | -------------------------------------------------------------------------------- /Xylophone/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UIApplicationSceneManifest 24 | 25 | UIApplicationSupportsMultipleScenes 26 | 27 | UISceneConfigurations 28 | 29 | UIWindowSceneSessionRoleApplication 30 | 31 | 32 | UILaunchStoryboardName 33 | LaunchScreen 34 | UISceneConfigurationName 35 | Default Configuration 36 | UISceneDelegateClassName 37 | $(PRODUCT_MODULE_NAME).SceneDelegate 38 | UISceneStoryboardFile 39 | Main 40 | 41 | 42 | 43 | 44 | UILaunchStoryboardName 45 | LaunchScreen 46 | UIMainStoryboardFile 47 | Main 48 | UIRequiredDeviceCapabilities 49 | 50 | armv7 51 | 52 | UISupportedInterfaceOrientations 53 | 54 | UIInterfaceOrientationPortrait 55 | 56 | UISupportedInterfaceOrientations~ipad 57 | 58 | UIInterfaceOrientationPortrait 59 | UIInterfaceOrientationPortraitUpsideDown 60 | UIInterfaceOrientationLandscapeLeft 61 | UIInterfaceOrientationLandscapeRight 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /Xylophone/SceneDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SceneDelegate.swift 3 | // Xylophone 4 | // 5 | // Created by Angela Yu on 28/06/2019. 6 | // Copyright © 2019 The App Brewery. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class SceneDelegate: UIResponder, UIWindowSceneDelegate { 12 | 13 | var window: UIWindow? 14 | 15 | 16 | func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { 17 | // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. 18 | // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. 19 | // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). 20 | guard let _ = (scene as? UIWindowScene) else { return } 21 | } 22 | 23 | func sceneDidDisconnect(_ scene: UIScene) { 24 | // Called as the scene is being released by the system. 25 | // This occurs shortly after the scene enters the background, or when its session is discarded. 26 | // Release any resources associated with this scene that can be re-created the next time the scene connects. 27 | // The scene may re-connect later, as its session was not neccessarily discarded (see `application:didDiscardSceneSessions` instead). 28 | } 29 | 30 | func sceneDidBecomeActive(_ scene: UIScene) { 31 | // Called when the scene has moved from an inactive state to an active state. 32 | // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. 33 | } 34 | 35 | func sceneWillResignActive(_ scene: UIScene) { 36 | // Called when the scene will move from an active state to an inactive state. 37 | // This may occur due to temporary interruptions (ex. an incoming phone call). 38 | } 39 | 40 | func sceneWillEnterForeground(_ scene: UIScene) { 41 | // Called as the scene transitions from the background to the foreground. 42 | // Use this method to undo the changes made on entering the background. 43 | } 44 | 45 | func sceneDidEnterBackground(_ scene: UIScene) { 46 | // Called as the scene transitions from the foreground to the background. 47 | // Use this method to save data, release shared resources, and store enough scene-specific state information 48 | // to restore the scene back to its current state. 49 | } 50 | 51 | 52 | } 53 | 54 | -------------------------------------------------------------------------------- /Xylophone/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "size" : "29x29", 15 | "idiom" : "iphone", 16 | "filename" : "Icon-Small@2x.png", 17 | "scale" : "2x" 18 | }, 19 | { 20 | "size" : "29x29", 21 | "idiom" : "iphone", 22 | "filename" : "Icon-Small@3x.png", 23 | "scale" : "3x" 24 | }, 25 | { 26 | "size" : "40x40", 27 | "idiom" : "iphone", 28 | "filename" : "Icon-40@2x.png", 29 | "scale" : "2x" 30 | }, 31 | { 32 | "size" : "40x40", 33 | "idiom" : "iphone", 34 | "filename" : "Icon-40@3x.png", 35 | "scale" : "3x" 36 | }, 37 | { 38 | "size" : "60x60", 39 | "idiom" : "iphone", 40 | "filename" : "Icon-60@2x.png", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "size" : "60x60", 45 | "idiom" : "iphone", 46 | "filename" : "Icon-60@3x.png", 47 | "scale" : "3x" 48 | }, 49 | { 50 | "size" : "1024x1024", 51 | "idiom" : "ios-marketing", 52 | "filename" : "Icon-1024.png", 53 | "scale" : "1x" 54 | }, 55 | { 56 | "size" : "24x24", 57 | "idiom" : "watch", 58 | "scale" : "2x", 59 | "role" : "notificationCenter", 60 | "subtype" : "38mm" 61 | }, 62 | { 63 | "size" : "27.5x27.5", 64 | "idiom" : "watch", 65 | "scale" : "2x", 66 | "role" : "notificationCenter", 67 | "subtype" : "42mm" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "watch", 72 | "role" : "companionSettings", 73 | "scale" : "2x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "watch", 78 | "role" : "companionSettings", 79 | "scale" : "3x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "watch", 84 | "scale" : "2x", 85 | "role" : "appLauncher", 86 | "subtype" : "38mm" 87 | }, 88 | { 89 | "size" : "44x44", 90 | "idiom" : "watch", 91 | "scale" : "2x", 92 | "role" : "appLauncher", 93 | "subtype" : "40mm" 94 | }, 95 | { 96 | "size" : "50x50", 97 | "idiom" : "watch", 98 | "scale" : "2x", 99 | "role" : "appLauncher", 100 | "subtype" : "44mm" 101 | }, 102 | { 103 | "size" : "86x86", 104 | "idiom" : "watch", 105 | "scale" : "2x", 106 | "role" : "quickLook", 107 | "subtype" : "38mm" 108 | }, 109 | { 110 | "size" : "98x98", 111 | "idiom" : "watch", 112 | "scale" : "2x", 113 | "role" : "quickLook", 114 | "subtype" : "42mm" 115 | }, 116 | { 117 | "size" : "108x108", 118 | "idiom" : "watch", 119 | "scale" : "2x", 120 | "role" : "quickLook", 121 | "subtype" : "44mm" 122 | }, 123 | { 124 | "idiom" : "watch-marketing", 125 | "size" : "1024x1024", 126 | "scale" : "1x" 127 | } 128 | ], 129 | "info" : { 130 | "version" : 1, 131 | "author" : "xcode" 132 | } 133 | } -------------------------------------------------------------------------------- /Xylophone/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /Xylophone.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | AD937BF622C61DBB002E2D88 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD937BF522C61DBB002E2D88 /* AppDelegate.swift */; }; 11 | AD937BF822C61DBB002E2D88 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD937BF722C61DBB002E2D88 /* SceneDelegate.swift */; }; 12 | AD937BFA22C61DBB002E2D88 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD937BF922C61DBB002E2D88 /* ViewController.swift */; }; 13 | AD937BFD22C61DBB002E2D88 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AD937BFB22C61DBB002E2D88 /* Main.storyboard */; }; 14 | AD937BFF22C61DBE002E2D88 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AD937BFE22C61DBE002E2D88 /* Assets.xcassets */; }; 15 | ADE587E922CB4D36007F0F9A /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = ADE587E822CB4D36007F0F9A /* README.md */; }; 16 | ADE587EB22CB5121007F0F9A /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = ADE587EA22CB5121007F0F9A /* LaunchScreen.storyboard */; }; 17 | ADE587F322CB513D007F0F9A /* A.wav in Resources */ = {isa = PBXBuildFile; fileRef = ADE587EC22CB513C007F0F9A /* A.wav */; }; 18 | ADE587F422CB513D007F0F9A /* G.wav in Resources */ = {isa = PBXBuildFile; fileRef = ADE587ED22CB513C007F0F9A /* G.wav */; }; 19 | ADE587F522CB513D007F0F9A /* C.wav in Resources */ = {isa = PBXBuildFile; fileRef = ADE587EE22CB513C007F0F9A /* C.wav */; }; 20 | ADE587F622CB513D007F0F9A /* E.wav in Resources */ = {isa = PBXBuildFile; fileRef = ADE587EF22CB513D007F0F9A /* E.wav */; }; 21 | ADE587F722CB513D007F0F9A /* F.wav in Resources */ = {isa = PBXBuildFile; fileRef = ADE587F022CB513D007F0F9A /* F.wav */; }; 22 | ADE587F822CB513D007F0F9A /* B.wav in Resources */ = {isa = PBXBuildFile; fileRef = ADE587F122CB513D007F0F9A /* B.wav */; }; 23 | ADE587F922CB513D007F0F9A /* D.wav in Resources */ = {isa = PBXBuildFile; fileRef = ADE587F222CB513D007F0F9A /* D.wav */; }; 24 | /* End PBXBuildFile section */ 25 | 26 | /* Begin PBXFileReference section */ 27 | AD937BF222C61DBB002E2D88 /* Xylophone.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Xylophone.app; sourceTree = BUILT_PRODUCTS_DIR; }; 28 | AD937BF522C61DBB002E2D88 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 29 | AD937BF722C61DBB002E2D88 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; 30 | AD937BF922C61DBB002E2D88 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 31 | AD937BFC22C61DBB002E2D88 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 32 | AD937BFE22C61DBE002E2D88 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 33 | AD937C0322C61DBE002E2D88 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 34 | ADE587E822CB4D36007F0F9A /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 35 | ADE587EA22CB5121007F0F9A /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = ""; }; 36 | ADE587EC22CB513C007F0F9A /* A.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = A.wav; sourceTree = ""; }; 37 | ADE587ED22CB513C007F0F9A /* G.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = G.wav; sourceTree = ""; }; 38 | ADE587EE22CB513C007F0F9A /* C.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = C.wav; sourceTree = ""; }; 39 | ADE587EF22CB513D007F0F9A /* E.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = E.wav; sourceTree = ""; }; 40 | ADE587F022CB513D007F0F9A /* F.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = F.wav; sourceTree = ""; }; 41 | ADE587F122CB513D007F0F9A /* B.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = B.wav; sourceTree = ""; }; 42 | ADE587F222CB513D007F0F9A /* D.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = D.wav; sourceTree = ""; }; 43 | /* End PBXFileReference section */ 44 | 45 | /* Begin PBXFrameworksBuildPhase section */ 46 | AD937BEF22C61DBB002E2D88 /* Frameworks */ = { 47 | isa = PBXFrameworksBuildPhase; 48 | buildActionMask = 2147483647; 49 | files = ( 50 | ); 51 | runOnlyForDeploymentPostprocessing = 0; 52 | }; 53 | /* End PBXFrameworksBuildPhase section */ 54 | 55 | /* Begin PBXGroup section */ 56 | AD937BE922C61DBB002E2D88 = { 57 | isa = PBXGroup; 58 | children = ( 59 | ADE587E822CB4D36007F0F9A /* README.md */, 60 | AD937BF422C61DBB002E2D88 /* Xylophone */, 61 | AD937BF322C61DBB002E2D88 /* Products */, 62 | ); 63 | sourceTree = ""; 64 | }; 65 | AD937BF322C61DBB002E2D88 /* Products */ = { 66 | isa = PBXGroup; 67 | children = ( 68 | AD937BF222C61DBB002E2D88 /* Xylophone.app */, 69 | ); 70 | name = Products; 71 | sourceTree = ""; 72 | }; 73 | AD937BF422C61DBB002E2D88 /* Xylophone */ = { 74 | isa = PBXGroup; 75 | children = ( 76 | AD937BF522C61DBB002E2D88 /* AppDelegate.swift */, 77 | AD937BF722C61DBB002E2D88 /* SceneDelegate.swift */, 78 | AD937BF922C61DBB002E2D88 /* ViewController.swift */, 79 | AD937BFB22C61DBB002E2D88 /* Main.storyboard */, 80 | AD937BFE22C61DBE002E2D88 /* Assets.xcassets */, 81 | ADE587EA22CB5121007F0F9A /* LaunchScreen.storyboard */, 82 | AD937C0322C61DBE002E2D88 /* Info.plist */, 83 | ADE587FA22CB5141007F0F9A /* Sounds */, 84 | ); 85 | path = Xylophone; 86 | sourceTree = ""; 87 | }; 88 | ADE587FA22CB5141007F0F9A /* Sounds */ = { 89 | isa = PBXGroup; 90 | children = ( 91 | ADE587EE22CB513C007F0F9A /* C.wav */, 92 | ADE587F222CB513D007F0F9A /* D.wav */, 93 | ADE587EF22CB513D007F0F9A /* E.wav */, 94 | ADE587F022CB513D007F0F9A /* F.wav */, 95 | ADE587ED22CB513C007F0F9A /* G.wav */, 96 | ADE587EC22CB513C007F0F9A /* A.wav */, 97 | ADE587F122CB513D007F0F9A /* B.wav */, 98 | ); 99 | path = Sounds; 100 | sourceTree = ""; 101 | }; 102 | /* End PBXGroup section */ 103 | 104 | /* Begin PBXNativeTarget section */ 105 | AD937BF122C61DBB002E2D88 /* Xylophone */ = { 106 | isa = PBXNativeTarget; 107 | buildConfigurationList = AD937C0622C61DBE002E2D88 /* Build configuration list for PBXNativeTarget "Xylophone" */; 108 | buildPhases = ( 109 | AD937BEE22C61DBB002E2D88 /* Sources */, 110 | AD937BEF22C61DBB002E2D88 /* Frameworks */, 111 | AD937BF022C61DBB002E2D88 /* Resources */, 112 | ); 113 | buildRules = ( 114 | ); 115 | dependencies = ( 116 | ); 117 | name = Xylophone; 118 | productName = Xylophone; 119 | productReference = AD937BF222C61DBB002E2D88 /* Xylophone.app */; 120 | productType = "com.apple.product-type.application"; 121 | }; 122 | /* End PBXNativeTarget section */ 123 | 124 | /* Begin PBXProject section */ 125 | AD937BEA22C61DBB002E2D88 /* Project object */ = { 126 | isa = PBXProject; 127 | attributes = { 128 | LastSwiftUpdateCheck = 1100; 129 | LastUpgradeCheck = 1100; 130 | ORGANIZATIONNAME = "The App Brewery"; 131 | TargetAttributes = { 132 | AD937BF122C61DBB002E2D88 = { 133 | CreatedOnToolsVersion = 11.0; 134 | }; 135 | }; 136 | }; 137 | buildConfigurationList = AD937BED22C61DBB002E2D88 /* Build configuration list for PBXProject "Xylophone" */; 138 | compatibilityVersion = "Xcode 9.3"; 139 | developmentRegion = en; 140 | hasScannedForEncodings = 0; 141 | knownRegions = ( 142 | en, 143 | Base, 144 | ); 145 | mainGroup = AD937BE922C61DBB002E2D88; 146 | productRefGroup = AD937BF322C61DBB002E2D88 /* Products */; 147 | projectDirPath = ""; 148 | projectRoot = ""; 149 | targets = ( 150 | AD937BF122C61DBB002E2D88 /* Xylophone */, 151 | ); 152 | }; 153 | /* End PBXProject section */ 154 | 155 | /* Begin PBXResourcesBuildPhase section */ 156 | AD937BF022C61DBB002E2D88 /* Resources */ = { 157 | isa = PBXResourcesBuildPhase; 158 | buildActionMask = 2147483647; 159 | files = ( 160 | ADE587F722CB513D007F0F9A /* F.wav in Resources */, 161 | ADE587F422CB513D007F0F9A /* G.wav in Resources */, 162 | AD937BFF22C61DBE002E2D88 /* Assets.xcassets in Resources */, 163 | ADE587EB22CB5121007F0F9A /* LaunchScreen.storyboard in Resources */, 164 | ADE587E922CB4D36007F0F9A /* README.md in Resources */, 165 | ADE587F922CB513D007F0F9A /* D.wav in Resources */, 166 | ADE587F522CB513D007F0F9A /* C.wav in Resources */, 167 | ADE587F822CB513D007F0F9A /* B.wav in Resources */, 168 | ADE587F322CB513D007F0F9A /* A.wav in Resources */, 169 | ADE587F622CB513D007F0F9A /* E.wav in Resources */, 170 | AD937BFD22C61DBB002E2D88 /* Main.storyboard in Resources */, 171 | ); 172 | runOnlyForDeploymentPostprocessing = 0; 173 | }; 174 | /* End PBXResourcesBuildPhase section */ 175 | 176 | /* Begin PBXSourcesBuildPhase section */ 177 | AD937BEE22C61DBB002E2D88 /* Sources */ = { 178 | isa = PBXSourcesBuildPhase; 179 | buildActionMask = 2147483647; 180 | files = ( 181 | AD937BFA22C61DBB002E2D88 /* ViewController.swift in Sources */, 182 | AD937BF622C61DBB002E2D88 /* AppDelegate.swift in Sources */, 183 | AD937BF822C61DBB002E2D88 /* SceneDelegate.swift in Sources */, 184 | ); 185 | runOnlyForDeploymentPostprocessing = 0; 186 | }; 187 | /* End PBXSourcesBuildPhase section */ 188 | 189 | /* Begin PBXVariantGroup section */ 190 | AD937BFB22C61DBB002E2D88 /* Main.storyboard */ = { 191 | isa = PBXVariantGroup; 192 | children = ( 193 | AD937BFC22C61DBB002E2D88 /* Base */, 194 | ); 195 | name = Main.storyboard; 196 | sourceTree = ""; 197 | }; 198 | /* End PBXVariantGroup section */ 199 | 200 | /* Begin XCBuildConfiguration section */ 201 | AD937C0422C61DBE002E2D88 /* Debug */ = { 202 | isa = XCBuildConfiguration; 203 | buildSettings = { 204 | ALWAYS_SEARCH_USER_PATHS = NO; 205 | CLANG_ANALYZER_NONNULL = YES; 206 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 207 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 208 | CLANG_CXX_LIBRARY = "libc++"; 209 | CLANG_ENABLE_MODULES = YES; 210 | CLANG_ENABLE_OBJC_ARC = YES; 211 | CLANG_ENABLE_OBJC_WEAK = YES; 212 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 213 | CLANG_WARN_BOOL_CONVERSION = YES; 214 | CLANG_WARN_COMMA = YES; 215 | CLANG_WARN_CONSTANT_CONVERSION = YES; 216 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 217 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 218 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 219 | CLANG_WARN_EMPTY_BODY = YES; 220 | CLANG_WARN_ENUM_CONVERSION = YES; 221 | CLANG_WARN_INFINITE_RECURSION = YES; 222 | CLANG_WARN_INT_CONVERSION = YES; 223 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 224 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 225 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 226 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 227 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 228 | CLANG_WARN_STRICT_PROTOTYPES = YES; 229 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 230 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 231 | CLANG_WARN_UNREACHABLE_CODE = YES; 232 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 233 | COPY_PHASE_STRIP = NO; 234 | DEBUG_INFORMATION_FORMAT = dwarf; 235 | ENABLE_STRICT_OBJC_MSGSEND = YES; 236 | ENABLE_TESTABILITY = YES; 237 | GCC_C_LANGUAGE_STANDARD = gnu11; 238 | GCC_DYNAMIC_NO_PIC = NO; 239 | GCC_NO_COMMON_BLOCKS = YES; 240 | GCC_OPTIMIZATION_LEVEL = 0; 241 | GCC_PREPROCESSOR_DEFINITIONS = ( 242 | "DEBUG=1", 243 | "$(inherited)", 244 | ); 245 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 246 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 247 | GCC_WARN_UNDECLARED_SELECTOR = YES; 248 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 249 | GCC_WARN_UNUSED_FUNCTION = YES; 250 | GCC_WARN_UNUSED_VARIABLE = YES; 251 | IPHONEOS_DEPLOYMENT_TARGET = 13.0; 252 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 253 | MTL_FAST_MATH = YES; 254 | ONLY_ACTIVE_ARCH = YES; 255 | SDKROOT = iphoneos; 256 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 257 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 258 | }; 259 | name = Debug; 260 | }; 261 | AD937C0522C61DBE002E2D88 /* Release */ = { 262 | isa = XCBuildConfiguration; 263 | buildSettings = { 264 | ALWAYS_SEARCH_USER_PATHS = NO; 265 | CLANG_ANALYZER_NONNULL = YES; 266 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 267 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 268 | CLANG_CXX_LIBRARY = "libc++"; 269 | CLANG_ENABLE_MODULES = YES; 270 | CLANG_ENABLE_OBJC_ARC = YES; 271 | CLANG_ENABLE_OBJC_WEAK = YES; 272 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 273 | CLANG_WARN_BOOL_CONVERSION = YES; 274 | CLANG_WARN_COMMA = YES; 275 | CLANG_WARN_CONSTANT_CONVERSION = YES; 276 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 277 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 278 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 279 | CLANG_WARN_EMPTY_BODY = YES; 280 | CLANG_WARN_ENUM_CONVERSION = YES; 281 | CLANG_WARN_INFINITE_RECURSION = YES; 282 | CLANG_WARN_INT_CONVERSION = YES; 283 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 284 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 285 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 286 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 287 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 288 | CLANG_WARN_STRICT_PROTOTYPES = YES; 289 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 290 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 291 | CLANG_WARN_UNREACHABLE_CODE = YES; 292 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 293 | COPY_PHASE_STRIP = NO; 294 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 295 | ENABLE_NS_ASSERTIONS = NO; 296 | ENABLE_STRICT_OBJC_MSGSEND = YES; 297 | GCC_C_LANGUAGE_STANDARD = gnu11; 298 | GCC_NO_COMMON_BLOCKS = YES; 299 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 300 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 301 | GCC_WARN_UNDECLARED_SELECTOR = YES; 302 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 303 | GCC_WARN_UNUSED_FUNCTION = YES; 304 | GCC_WARN_UNUSED_VARIABLE = YES; 305 | IPHONEOS_DEPLOYMENT_TARGET = 13.0; 306 | MTL_ENABLE_DEBUG_INFO = NO; 307 | MTL_FAST_MATH = YES; 308 | SDKROOT = iphoneos; 309 | SWIFT_COMPILATION_MODE = wholemodule; 310 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 311 | VALIDATE_PRODUCT = YES; 312 | }; 313 | name = Release; 314 | }; 315 | AD937C0722C61DBE002E2D88 /* Debug */ = { 316 | isa = XCBuildConfiguration; 317 | buildSettings = { 318 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 319 | CODE_SIGN_STYLE = Automatic; 320 | INFOPLIST_FILE = Xylophone/Info.plist; 321 | LD_RUNPATH_SEARCH_PATHS = ( 322 | "$(inherited)", 323 | "@executable_path/Frameworks", 324 | ); 325 | PRODUCT_BUNDLE_IDENTIFIER = co.appbrewery.Xylophone; 326 | PRODUCT_NAME = "$(TARGET_NAME)"; 327 | SWIFT_VERSION = 5.0; 328 | TARGETED_DEVICE_FAMILY = 1; 329 | }; 330 | name = Debug; 331 | }; 332 | AD937C0822C61DBE002E2D88 /* Release */ = { 333 | isa = XCBuildConfiguration; 334 | buildSettings = { 335 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 336 | CODE_SIGN_STYLE = Automatic; 337 | INFOPLIST_FILE = Xylophone/Info.plist; 338 | LD_RUNPATH_SEARCH_PATHS = ( 339 | "$(inherited)", 340 | "@executable_path/Frameworks", 341 | ); 342 | PRODUCT_BUNDLE_IDENTIFIER = co.appbrewery.Xylophone; 343 | PRODUCT_NAME = "$(TARGET_NAME)"; 344 | SWIFT_VERSION = 5.0; 345 | TARGETED_DEVICE_FAMILY = 1; 346 | }; 347 | name = Release; 348 | }; 349 | /* End XCBuildConfiguration section */ 350 | 351 | /* Begin XCConfigurationList section */ 352 | AD937BED22C61DBB002E2D88 /* Build configuration list for PBXProject "Xylophone" */ = { 353 | isa = XCConfigurationList; 354 | buildConfigurations = ( 355 | AD937C0422C61DBE002E2D88 /* Debug */, 356 | AD937C0522C61DBE002E2D88 /* Release */, 357 | ); 358 | defaultConfigurationIsVisible = 0; 359 | defaultConfigurationName = Release; 360 | }; 361 | AD937C0622C61DBE002E2D88 /* Build configuration list for PBXNativeTarget "Xylophone" */ = { 362 | isa = XCConfigurationList; 363 | buildConfigurations = ( 364 | AD937C0722C61DBE002E2D88 /* Debug */, 365 | AD937C0822C61DBE002E2D88 /* Release */, 366 | ); 367 | defaultConfigurationIsVisible = 0; 368 | defaultConfigurationName = Release; 369 | }; 370 | /* End XCConfigurationList section */ 371 | }; 372 | rootObject = AD937BEA22C61DBB002E2D88 /* Project object */; 373 | } 374 | -------------------------------------------------------------------------------- /Xylophone/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | --------------------------------------------------------------------------------