├── Cartfile.resolved ├── Configuration ├── Base32Tests.xcconfig ├── Base32-iOS.xcconfig ├── Base32-tvOS.xcconfig ├── Base32-macOS.xcconfig ├── Base32-watchOS.xcconfig ├── Base32Tests-iOS.xcconfig ├── Base32Tests-tvOS.xcconfig ├── Project-Debug.xcconfig ├── Project-Release.xcconfig ├── Base32.xcconfig ├── Project.xcconfig └── Base32Tests-macOS.xcconfig ├── Base32 ├── en.lproj │ ├── InfoPlist.strings │ ├── Credits.rtf │ └── MainMenu.xib ├── include │ └── module.modulemap ├── Base32-Prefix.pch ├── main.m ├── MF_AppDelegate.h ├── Base32.h ├── Info.plist ├── MF_Base32Additions.h ├── Base32-Info.plist ├── MF_AppDelegate.m └── MF_Base32Additions.m ├── Cartfile.private ├── .gitmodules ├── Base32.xcodeproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ ├── Base32 (watchOS).xcscheme │ │ ├── Base32 (iOS).xcscheme │ │ ├── Base32 (tvOS).xcscheme │ │ └── Base32 (macOS).xcscheme └── project.pbxproj ├── Base32.podspec ├── Package.swift ├── README.md ├── LICENSE ├── .gitignore └── Base32Tests └── Base32Tests.m /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "xcconfigs/xcconfigs" "1.0" 2 | -------------------------------------------------------------------------------- /Configuration/Base32Tests.xcconfig: -------------------------------------------------------------------------------- 1 | PRODUCT_NAME = Base32Tests; 2 | -------------------------------------------------------------------------------- /Base32/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Base32/include/module.modulemap: -------------------------------------------------------------------------------- 1 | module Base32 { 2 | header "../MF_Base32Additions.h" 3 | export * 4 | } 5 | -------------------------------------------------------------------------------- /Cartfile.private: -------------------------------------------------------------------------------- 1 | # Configuration for Carthage (https://github.com/Carthage/Carthage) 2 | 3 | github "xcconfigs/xcconfigs" ~> 1.0 4 | -------------------------------------------------------------------------------- /Configuration/Base32-iOS.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../Carthage/Checkouts/xcconfigs/iOS/iOS-Framework.xcconfig" 2 | #include "Base32.xcconfig" 3 | -------------------------------------------------------------------------------- /Configuration/Base32-tvOS.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../Carthage/Checkouts/xcconfigs/tvOS/tvOS-Framework.xcconfig" 2 | #include "Base32.xcconfig" 3 | -------------------------------------------------------------------------------- /Configuration/Base32-macOS.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../Carthage/Checkouts/xcconfigs/macOS/macOS-Framework.xcconfig" 2 | #include "Base32.xcconfig" 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Carthage/Checkouts/xcconfigs"] 2 | path = Carthage/Checkouts/xcconfigs 3 | url = https://github.com/xcconfigs/xcconfigs.git 4 | -------------------------------------------------------------------------------- /Configuration/Base32-watchOS.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../Carthage/Checkouts/xcconfigs/watchOS/watchOS-Framework.xcconfig" 2 | #include "Base32.xcconfig" 3 | -------------------------------------------------------------------------------- /Configuration/Base32Tests-iOS.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../Carthage/Checkouts/xcconfigs/iOS/iOS-Application.xcconfig" 2 | #include "Base32Tests.xcconfig" 3 | -------------------------------------------------------------------------------- /Configuration/Base32Tests-tvOS.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../Carthage/Checkouts/xcconfigs/tvOS/tvOS-Application.xcconfig" 2 | #include "Base32Tests.xcconfig" 3 | -------------------------------------------------------------------------------- /Configuration/Project-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../Carthage/Checkouts/xcconfigs/Base/Configurations/Debug.xcconfig" 2 | #include "Project.xcconfig" 3 | -------------------------------------------------------------------------------- /Configuration/Project-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../Carthage/Checkouts/xcconfigs/Base/Configurations/Release.xcconfig" 2 | #include "Project.xcconfig" 3 | -------------------------------------------------------------------------------- /Configuration/Base32.xcconfig: -------------------------------------------------------------------------------- 1 | PRODUCT_NAME = Base32; 2 | PRODUCT_BUNDLE_IDENTIFIER = me.mattrubin.$(PRODUCT_NAME:rfc1034identifier); 3 | INFOPLIST_FILE = Base32/Info.plist; 4 | -------------------------------------------------------------------------------- /Configuration/Project.xcconfig: -------------------------------------------------------------------------------- 1 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 2 | MACOSX_DEPLOYMENT_TARGET = 10.7; 3 | TVOS_DEPLOYMENT_TARGET = 9.0; 4 | WATCHOS_DEPLOYMENT_TARGET = 2.0; 5 | -------------------------------------------------------------------------------- /Base32/Base32-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'Base32' target in the 'Base32' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /Configuration/Base32Tests-macOS.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../Carthage/Checkouts/xcconfigs/macOS/macOS-Application.xcconfig" 2 | #include "Base32Tests.xcconfig" 3 | 4 | MACOSX_DEPLOYMENT_TARGET = 10.8; 5 | -------------------------------------------------------------------------------- /Base32.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Base32/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Base32 4 | // 5 | // Created by Dave Poirier on 12-06-14. 6 | // Copyright (c) 2012 Freshcode. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /Base32.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Base32/MF_AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // MF_AppDelegate.h 3 | // Base32 4 | // 5 | // Created by Dave Poirier on 12-06-14. 6 | // Public Domain 7 | // 8 | 9 | #import 10 | 11 | @interface MF_AppDelegate : NSObject 12 | 13 | @property (assign) IBOutlet NSWindow *window; 14 | @property (assign) IBOutlet NSTextField *textField; 15 | 16 | -(IBAction)encode:(id)sender; 17 | -(IBAction)decode:(id)sender; 18 | @end 19 | -------------------------------------------------------------------------------- /Base32.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = 'Base32' 3 | s.version = '1.2.1' 4 | s.license = 'Public Domain' 5 | s.summary = 'RFC 4648 Base32 implementation in Objective-C ARC.' 6 | s.homepage = 'https://github.com/ekscrypto/Base32' 7 | s.author = { 'Dave Poirier' => 'ekscrypto@gmail.com' } 8 | s.source = { :git => 'https://github.com/ekscrypto/Base32.git', :tag => '1.2.1' } 9 | s.source_files = 'Classes', 'Base32/MF_Base32Additions.{h,m}' 10 | s.requires_arc = true 11 | end 12 | -------------------------------------------------------------------------------- /Base32/Base32.h: -------------------------------------------------------------------------------- 1 | // 2 | // Base32.h 3 | // Base32 4 | // 5 | // Created by Matt Rubin on 1/25/15. 6 | // Public Domain 7 | // 8 | 9 | @import Foundation; 10 | 11 | //! Project version number for Base32. 12 | FOUNDATION_EXPORT double Base32VersionNumber; 13 | 14 | //! Project version string for Base32. 15 | FOUNDATION_EXPORT const unsigned char Base32VersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | #import 20 | -------------------------------------------------------------------------------- /Base32/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470 2 | {\fonttbl\f0\fswiss\fcharset0 Helvetica;} 3 | {\colortbl;\red255\green255\blue255;} 4 | \vieww9600\viewh8400\viewkind0 5 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720 6 | 7 | \f0\b\fs24 \cf0 Based on RFC 4648\ 8 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural 9 | 10 | \b0 \cf0 http://www.ietf.org/rfc/rfc4648.txt\ 11 | \ 12 | 13 | \b Written by:\ 14 | 15 | \b0 Dave Poirier\ 16 | ekscrypto@gmail.com\ 17 | } -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- 1 | // swift-tools-version:5.1 2 | import PackageDescription 3 | 4 | let package = Package( 5 | name: "Base32", 6 | platforms: [ 7 | .iOS(.v9), 8 | .macOS(.v10_10), 9 | .tvOS(.v9), 10 | .watchOS(.v2), 11 | ], 12 | products: [ 13 | .library( 14 | name: "Base32", 15 | targets: ["Base32"]), 16 | ], 17 | targets: [ 18 | .target( 19 | name: "Base32", 20 | path: "Base32", 21 | sources: ["MF_Base32Additions.m"]), 22 | .testTarget( 23 | name: "Base32Tests", 24 | dependencies: ["Base32"], 25 | path: "Base32Tests"), 26 | ] 27 | ) 28 | -------------------------------------------------------------------------------- /Base32/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.1.2 19 | CFBundleVersion 20 | 1.1.2 21 | NSHumanReadableCopyright 22 | Public Domain 23 | 24 | 25 | -------------------------------------------------------------------------------- /Base32/MF_Base32Additions.h: -------------------------------------------------------------------------------- 1 | // 2 | // MF_Base32Additions.h 3 | // Base32 -- RFC 4648 compatible implementation 4 | // see http://www.ietf.org/rfc/rfc4648.txt for more details 5 | // 6 | // Designed to be compiled with Automatic Reference Counting 7 | // 8 | // Created by Dave Poirier on 12-06-14. 9 | // Public Domain 10 | // 11 | 12 | #import 13 | 14 | #define NSBase32StringEncoding 0x4D467E32 15 | 16 | @interface NSString (Base32Addition) 17 | +(NSString *)stringFromBase32String:(NSString *)base32String; 18 | -(NSString *)base32String; 19 | @end 20 | 21 | @interface NSData (Base32Addition) 22 | +(NSData *)dataWithBase32String:(NSString *)base32String; 23 | -(NSString *)base32String; 24 | @end 25 | 26 | @interface MF_Base32Codec : NSObject 27 | +(NSData *)dataFromBase32String:(NSString *)base32String; 28 | +(NSString *)base32StringFromData:(NSData *)data; 29 | @end 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Base32 Additions for Objective-C on Mac OS X and iOS 2 | ==== 3 | 4 | 5 | Usage 6 | ---- 7 | Open the Xcode project file, and drag MF_Base32Additions.m/.h into your project. 8 | 9 | In files where you want to use Base32 encoding/decoding, simply include the header file and use one of the provided NSData or NSString additions. 10 | 11 | Example use: 12 | 13 | #import "MF_Base32Additions.h" 14 | 15 | NSString *helloWorld = @"Hello World"; 16 | NSString *helloInBase32 = [helloWorld base32String]; 17 | NSString *helloDecoded = [NSString stringFromBase32String:helloInBase32]; 18 | 19 | 20 | 21 | 22 | Performance 23 | ---- 24 | * Encoding: Approximately 4 to 5 times faster than using the equivalent SecTransform. 25 | * Decoding: Slightly faster but almost identical decoding time as equivalent SecTransform. 26 | 27 | 28 | 29 | Requirements 30 | ----- 31 | * Compile with Automatic Reference Counting 32 | * Compatible with Mac OSX 10.6+ and iOS 4.0+ 33 | 34 | 35 | 36 | Implementation 37 | ---- 38 | * Implemented as per RFC 4648, see http://www.ietf.org/rfc/rfc4648.txt for more details. 39 | -------------------------------------------------------------------------------- /Base32/Base32-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSMinimumSystemVersion 26 | ${MACOSX_DEPLOYMENT_TARGET} 27 | NSHumanReadableCopyright 28 | Public Domain 29 | NSMainNibFile 30 | MainMenu 31 | NSPrincipalClass 32 | NSApplication 33 | 34 | 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /Base32/MF_AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // MF_AppDelegate.m 3 | // Base32 4 | // 5 | // Created by Dave Poirier on 12-06-14. 6 | // Public Domain 7 | // 8 | 9 | #import "MF_AppDelegate.h" 10 | @import Base32; 11 | 12 | @implementation MF_AppDelegate 13 | 14 | @synthesize window = _window; 15 | @synthesize textField = _textField; 16 | 17 | - (void)applicationDidFinishLaunching:(NSNotification *)aNotification 18 | { 19 | int totalTests = 0; 20 | int totalSuccess = 0; 21 | int totalFailed = 0; 22 | for( int i = 0; i < 300; i++ ) { 23 | NSData *randomDataBlock = [self randomDataBlock]; 24 | NSString *base32Rep = [randomDataBlock base32String]; 25 | NSData *revertedDataBlock = [MF_Base32Codec dataFromBase32String:base32Rep]; 26 | if( [randomDataBlock isEqualToData:revertedDataBlock] ) { 27 | NSLog(@"SUCCESS: %@", base32Rep); 28 | totalSuccess++; 29 | } else { 30 | NSLog(@"FAILED: %@\noriginal data block: %@\n reverted data block: %@", base32Rep, randomDataBlock, revertedDataBlock); 31 | totalFailed++; 32 | } 33 | totalTests++; 34 | } 35 | NSLog(@"Tests completed with %i failures, %i success out of %i tests", totalFailed, totalSuccess, totalTests); 36 | } 37 | 38 | -(NSData *)randomDataBlock 39 | { 40 | #define MaxRandomDataLength 64 41 | unsigned char bytes[MaxRandomDataLength]; 42 | long dataLength = arc4random() % 64; 43 | for(int i = 0; i < dataLength; i++ ) { 44 | bytes[i] = (unsigned char)(arc4random() % 256); 45 | } 46 | 47 | return [[NSData alloc] initWithBytes:bytes length:dataLength]; 48 | } 49 | -(void)encode:(id)sender 50 | { 51 | NSString *raw = [_textField stringValue]; 52 | NSString *encoded = [raw base32String]; 53 | [_textField setStringValue:encoded]; 54 | } 55 | 56 | -(void)decode:(id)sender 57 | { 58 | NSString *encoded = [_textField stringValue]; 59 | NSData *data = [NSData dataWithBase32String:encoded]; 60 | NSString *raw = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; 61 | [_textField setStringValue:raw]; 62 | } 63 | 64 | @end 65 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## User settings 6 | xcuserdata/ 7 | 8 | ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) 9 | *.xcscmblueprint 10 | *.xccheckout 11 | 12 | ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) 13 | build/ 14 | DerivedData/ 15 | *.moved-aside 16 | *.pbxuser 17 | !default.pbxuser 18 | *.mode1v3 19 | !default.mode1v3 20 | *.mode2v3 21 | !default.mode2v3 22 | *.perspectivev3 23 | !default.perspectivev3 24 | 25 | ## Obj-C/Swift specific 26 | *.hmap 27 | 28 | ## App packaging 29 | *.ipa 30 | *.dSYM.zip 31 | *.dSYM 32 | 33 | ## Playgrounds 34 | timeline.xctimeline 35 | playground.xcworkspace 36 | 37 | # Swift Package Manager 38 | # 39 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 40 | # Packages/ 41 | # Package.pins 42 | # Package.resolved 43 | # *.xcodeproj 44 | # 45 | # Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata 46 | # hence it is not needed unless you have added a package configuration file to your project 47 | .swiftpm 48 | 49 | .build/ 50 | 51 | # CocoaPods 52 | # 53 | # We recommend against adding the Pods directory to your .gitignore. However 54 | # you should judge for yourself, the pros and cons are mentioned at: 55 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 56 | # 57 | # Pods/ 58 | # 59 | # Add this line if you want to avoid checking in source code from the Xcode workspace 60 | # *.xcworkspace 61 | 62 | # Carthage 63 | # 64 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 65 | # Carthage/Checkouts 66 | 67 | Carthage/Build/ 68 | 69 | # Accio dependency management 70 | Dependencies/ 71 | .accio/ 72 | 73 | # fastlane 74 | # 75 | # It is recommended to not store the screenshots in the git repo. 76 | # Instead, use fastlane to re-generate the screenshots whenever they are needed. 77 | # For more information about the recommended setup visit: 78 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 79 | 80 | fastlane/report.xml 81 | fastlane/Preview.html 82 | fastlane/screenshots/**/*.png 83 | fastlane/test_output 84 | 85 | # Code Injection 86 | # 87 | # After new code Injection tools there's a generated folder /iOSInjectionProject 88 | # https://github.com/johnno1962/injectionforxcode 89 | 90 | iOSInjectionProject/ 91 | -------------------------------------------------------------------------------- /Base32.xcodeproj/xcshareddata/xcschemes/Base32 (watchOS).xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 41 | 42 | 52 | 53 | 59 | 60 | 61 | 62 | 68 | 69 | 75 | 76 | 77 | 78 | 80 | 81 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /Base32Tests/Base32Tests.m: -------------------------------------------------------------------------------- 1 | // 2 | // Base32Tests.m 3 | // Base32Tests 4 | // 5 | // Created by Matt Rubin on 1/25/15. 6 | // Public Domain 7 | // 8 | 9 | @import XCTest; 10 | @import Base32; 11 | 12 | 13 | @interface Base32Tests : XCTestCase 14 | @end 15 | 16 | 17 | @implementation Base32Tests 18 | 19 | // The values in this test are found in Section 10 of the Base32 RFC 20 | // https://tools.ietf.org/html/rfc4648#section-10 21 | - (void)testRFCValues 22 | { 23 | NSDictionary *vectors = @{@"": @"", 24 | @"f": @"MY======", 25 | @"fo": @"MZXQ====", 26 | @"foo": @"MZXW6===", 27 | @"foob": @"MZXW6YQ=", 28 | @"fooba": @"MZXW6YTB", 29 | @"foobar": @"MZXW6YTBOI======"}; 30 | [self _testEncodingWithVectors:vectors]; 31 | [self _testDecodingWithVectors:vectors]; 32 | } 33 | 34 | - (void)testUnpaddedRFCValues 35 | { 36 | NSDictionary *vectors = @{@"": @"", 37 | @"f": @"MY", 38 | @"fo": @"MZXQ", 39 | @"foo": @"MZXW6", 40 | @"foob": @"MZXW6YQ", 41 | @"fooba": @"MZXW6YTB", 42 | @"foobar": @"MZXW6YTBOI"}; 43 | [self _testDecodingWithVectors:vectors]; 44 | } 45 | 46 | - (void)testUnpaddedLowercaseRFCValues 47 | { 48 | NSDictionary *vectors = @{@"": @"", 49 | @"f": @"my", 50 | @"fo": @"mzxq", 51 | @"foo": @"mzxw6", 52 | @"foob": @"mzxw6yq", 53 | @"fooba": @"mzxw6ytb", 54 | @"foobar": @"mzxw6ytboi"}; 55 | [self _testDecodingWithVectors:vectors]; 56 | } 57 | 58 | - (void)_testEncodingWithVectors:(NSDictionary *)vectors 59 | { 60 | for (NSString *plaintext in vectors) { 61 | NSString *ciphertext = vectors[plaintext]; 62 | 63 | NSString *encryptedPlaintext = [[plaintext dataUsingEncoding:NSUTF8StringEncoding] base32String]; 64 | XCTAssertEqualObjects(encryptedPlaintext, ciphertext, @""); 65 | } 66 | } 67 | 68 | - (void)_testDecodingWithVectors:(NSDictionary *)vectors 69 | { 70 | for (NSString *plaintext in vectors) { 71 | NSString *ciphertext = vectors[plaintext]; 72 | 73 | NSString *decryptedCiphertext = [[NSString alloc] initWithData:[NSData dataWithBase32String:ciphertext] encoding:NSUTF8StringEncoding]; 74 | XCTAssertEqualObjects(decryptedCiphertext, plaintext, @""); 75 | } 76 | } 77 | 78 | - (void)testRandomData 79 | { 80 | for (int i = 0; i < 300; i++) { 81 | NSData *randomDataBlock = [self randomDataBlock]; 82 | NSString *base32Rep = [randomDataBlock base32String]; 83 | NSData *revertedDataBlock = [NSData dataWithBase32String:base32Rep]; 84 | XCTAssertTrue([randomDataBlock isEqualToData:revertedDataBlock], 85 | @"%@\n original data block: %@\n reverted data block: %@", 86 | base32Rep, randomDataBlock, revertedDataBlock); 87 | } 88 | } 89 | 90 | - (NSData *)randomDataBlock 91 | { 92 | #define MaxRandomDataLength 64 93 | unsigned char bytes[MaxRandomDataLength]; 94 | long dataLength = arc4random() % 64; 95 | for (int i = 0; i < dataLength; i++) { 96 | bytes[i] = (unsigned char)(arc4random() % 256); 97 | } 98 | 99 | return [[NSData alloc] initWithBytes:bytes length:dataLength]; 100 | } 101 | 102 | @end 103 | -------------------------------------------------------------------------------- /Base32.xcodeproj/xcshareddata/xcschemes/Base32 (iOS).xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 42 | 48 | 49 | 50 | 51 | 52 | 62 | 63 | 69 | 70 | 71 | 72 | 78 | 79 | 85 | 86 | 87 | 88 | 90 | 91 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /Base32.xcodeproj/xcshareddata/xcschemes/Base32 (tvOS).xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 42 | 48 | 49 | 50 | 51 | 52 | 62 | 63 | 69 | 70 | 71 | 72 | 78 | 79 | 85 | 86 | 87 | 88 | 90 | 91 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /Base32.xcodeproj/xcshareddata/xcschemes/Base32 (macOS).xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 42 | 48 | 49 | 50 | 51 | 52 | 62 | 63 | 69 | 70 | 71 | 72 | 78 | 79 | 85 | 86 | 87 | 88 | 90 | 91 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /Base32/MF_Base32Additions.m: -------------------------------------------------------------------------------- 1 | // 2 | // MF_Base32Additions.m 3 | // Base32 -- RFC 4648 compatible implementation 4 | // see http://www.ietf.org/rfc/rfc4648.txt for more details 5 | // 6 | // Designed to be compiled with Automatic Reference Counting 7 | // 8 | // Created by Dave Poirier on 12-06-14. 9 | // Public Domain 10 | // 11 | 12 | #import "MF_Base32Additions.h" 13 | 14 | @implementation MF_Base32Codec 15 | +(NSData *)dataFromBase32String:(NSString *)encoding 16 | { 17 | NSData *data = nil; 18 | unsigned char *decodedBytes = NULL; 19 | @try { 20 | #define __ 255 21 | static char decodingTable[256] = { 22 | __,__,__,__, __,__,__,__, __,__,__,__, __,__,__,__, // 0x00 - 0x0F 23 | __,__,__,__, __,__,__,__, __,__,__,__, __,__,__,__, // 0x10 - 0x1F 24 | __,__,__,__, __,__,__,__, __,__,__,__, __,__,__,__, // 0x20 - 0x2F 25 | __,__,26,27, 28,29,30,31, __,__,__,__, __, 0,__,__, // 0x30 - 0x3F 26 | __, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14, // 0x40 - 0x4F 27 | 15,16,17,18, 19,20,21,22, 23,24,25,__, __,__,__,__, // 0x50 - 0x5F 28 | __, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14, // 0x60 - 0x6F 29 | 15,16,17,18, 19,20,21,22, 23,24,25,__, __,__,__,__, // 0x70 - 0x7F 30 | __,__,__,__, __,__,__,__, __,__,__,__, __,__,__,__, // 0x80 - 0x8F 31 | __,__,__,__, __,__,__,__, __,__,__,__, __,__,__,__, // 0x90 - 0x9F 32 | __,__,__,__, __,__,__,__, __,__,__,__, __,__,__,__, // 0xA0 - 0xAF 33 | __,__,__,__, __,__,__,__, __,__,__,__, __,__,__,__, // 0xB0 - 0xBF 34 | __,__,__,__, __,__,__,__, __,__,__,__, __,__,__,__, // 0xC0 - 0xCF 35 | __,__,__,__, __,__,__,__, __,__,__,__, __,__,__,__, // 0xD0 - 0xDF 36 | __,__,__,__, __,__,__,__, __,__,__,__, __,__,__,__, // 0xE0 - 0xEF 37 | __,__,__,__, __,__,__,__, __,__,__,__, __,__,__,__, // 0xF0 - 0xFF 38 | }; 39 | static NSUInteger paddingAdjustment[8] = {0,1,1,1,2,3,3,4}; 40 | encoding = [encoding stringByReplacingOccurrencesOfString:@"=" withString:@""]; 41 | NSData *encodedData = [encoding dataUsingEncoding:NSASCIIStringEncoding]; 42 | unsigned char *encodedBytes = (unsigned char *)[encodedData bytes]; 43 | 44 | NSUInteger encodedLength = [encodedData length]; 45 | if( encodedLength >= (NSUIntegerMax - 7) ) return nil; // NSUInteger overflow check 46 | NSUInteger encodedBlocks = (encodedLength + 7) >> 3; 47 | NSUInteger expectedDataLength = encodedBlocks * 5; 48 | 49 | decodedBytes = calloc(expectedDataLength, 1); 50 | if( decodedBytes != NULL ) { 51 | 52 | unsigned char encodedByte1, encodedByte2, encodedByte3, encodedByte4; 53 | unsigned char encodedByte5, encodedByte6, encodedByte7, encodedByte8; 54 | NSUInteger encodedBytesToProcess = encodedLength; 55 | NSUInteger encodedBaseIndex = 0; 56 | NSUInteger decodedBaseIndex = 0; 57 | unsigned char encodedBlock[8] = {0,0,0,0,0,0,0,0}; 58 | NSUInteger encodedBlockIndex = 0; 59 | unsigned char c; 60 | while( encodedBytesToProcess-- >= 1 ) { 61 | c = encodedBytes[encodedBaseIndex++]; 62 | if( c == '=' ) break; // padding... 63 | 64 | c = decodingTable[c]; 65 | if( c == __ ) continue; 66 | 67 | encodedBlock[encodedBlockIndex++] = c; 68 | if( encodedBlockIndex == 8 ) { 69 | encodedByte1 = encodedBlock[0]; 70 | encodedByte2 = encodedBlock[1]; 71 | encodedByte3 = encodedBlock[2]; 72 | encodedByte4 = encodedBlock[3]; 73 | encodedByte5 = encodedBlock[4]; 74 | encodedByte6 = encodedBlock[5]; 75 | encodedByte7 = encodedBlock[6]; 76 | encodedByte8 = encodedBlock[7]; 77 | decodedBytes[decodedBaseIndex] = ((encodedByte1 << 3) & 0xF8) | ((encodedByte2 >> 2) & 0x07); 78 | decodedBytes[decodedBaseIndex+1] = ((encodedByte2 << 6) & 0xC0) | ((encodedByte3 << 1) & 0x3E) | ((encodedByte4 >> 4) & 0x01); 79 | decodedBytes[decodedBaseIndex+2] = ((encodedByte4 << 4) & 0xF0) | ((encodedByte5 >> 1) & 0x0F); 80 | decodedBytes[decodedBaseIndex+3] = ((encodedByte5 << 7) & 0x80) | ((encodedByte6 << 2) & 0x7C) | ((encodedByte7 >> 3) & 0x03); 81 | decodedBytes[decodedBaseIndex+4] = ((encodedByte7 << 5) & 0xE0) | (encodedByte8 & 0x1F); 82 | decodedBaseIndex += 5; 83 | encodedBlockIndex = 0; 84 | } 85 | } 86 | encodedByte7 = 0; 87 | encodedByte6 = 0; 88 | encodedByte5 = 0; 89 | encodedByte4 = 0; 90 | encodedByte3 = 0; 91 | encodedByte2 = 0; 92 | switch (encodedBlockIndex) { 93 | case 7: 94 | encodedByte7 = encodedBlock[6]; 95 | case 6: 96 | encodedByte6 = encodedBlock[5]; 97 | case 5: 98 | encodedByte5 = encodedBlock[4]; 99 | case 4: 100 | encodedByte4 = encodedBlock[3]; 101 | case 3: 102 | encodedByte3 = encodedBlock[2]; 103 | case 2: 104 | encodedByte2 = encodedBlock[1]; 105 | case 1: 106 | encodedByte1 = encodedBlock[0]; 107 | decodedBytes[decodedBaseIndex] = ((encodedByte1 << 3) & 0xF8) | ((encodedByte2 >> 2) & 0x07); 108 | decodedBytes[decodedBaseIndex+1] = ((encodedByte2 << 6) & 0xC0) | ((encodedByte3 << 1) & 0x3E) | ((encodedByte4 >> 4) & 0x01); 109 | decodedBytes[decodedBaseIndex+2] = ((encodedByte4 << 4) & 0xF0) | ((encodedByte5 >> 1) & 0x0F); 110 | decodedBytes[decodedBaseIndex+3] = ((encodedByte5 << 7) & 0x80) | ((encodedByte6 << 2) & 0x7C) | ((encodedByte7 >> 3) & 0x03); 111 | decodedBytes[decodedBaseIndex+4] = ((encodedByte7 << 5) & 0xE0); 112 | } 113 | decodedBaseIndex += paddingAdjustment[encodedBlockIndex]; 114 | data = [[NSData alloc] initWithBytes:decodedBytes length:decodedBaseIndex]; 115 | } 116 | } 117 | @catch (NSException *exception) { 118 | data = nil; 119 | NSLog(@"WARNING: error occured while decoding base 32 string: %@", exception); 120 | } 121 | @finally { 122 | if( decodedBytes != NULL ) { 123 | free( decodedBytes ); 124 | } 125 | } 126 | return data; 127 | } 128 | +(NSString *)base32StringFromData:(NSData *)data 129 | { 130 | NSString *encoding = nil; 131 | unsigned char *encodingBytes = NULL; 132 | @try { 133 | static char encodingTable[32] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"; 134 | static NSUInteger paddingTable[] = {0,6,4,3,1}; 135 | 136 | // Table 3: The Base 32 Alphabet 137 | // 138 | // Value Encoding Value Encoding Value Encoding Value Encoding 139 | // 0 A 9 J 18 S 27 3 140 | // 1 B 10 K 19 T 28 4 141 | // 2 C 11 L 20 U 29 5 142 | // 3 D 12 M 21 V 30 6 143 | // 4 E 13 N 22 W 31 7 144 | // 5 F 14 O 23 X 145 | // 6 G 15 P 24 Y (pad) = 146 | // 7 H 16 Q 25 Z 147 | // 8 I 17 R 26 2 148 | 149 | NSUInteger dataLength = [data length]; 150 | NSUInteger encodedBlocks = dataLength / 5; 151 | if( (encodedBlocks + 1) >= (NSUIntegerMax / 8) ) return nil; // NSUInteger overflow check 152 | NSUInteger padding = paddingTable[dataLength % 5]; 153 | if( padding > 0 ) encodedBlocks++; 154 | NSUInteger encodedLength = encodedBlocks * 8; 155 | 156 | encodingBytes = calloc(encodedLength, 1); 157 | if( encodingBytes != NULL ) { 158 | NSUInteger rawBytesToProcess = dataLength; 159 | NSUInteger rawBaseIndex = 0; 160 | NSUInteger encodingBaseIndex = 0; 161 | unsigned char *rawBytes = (unsigned char *)[data bytes]; 162 | unsigned char rawByte1, rawByte2, rawByte3, rawByte4, rawByte5; 163 | while( rawBytesToProcess >= 5 ) { 164 | rawByte1 = rawBytes[rawBaseIndex]; 165 | rawByte2 = rawBytes[rawBaseIndex+1]; 166 | rawByte3 = rawBytes[rawBaseIndex+2]; 167 | rawByte4 = rawBytes[rawBaseIndex+3]; 168 | rawByte5 = rawBytes[rawBaseIndex+4]; 169 | encodingBytes[encodingBaseIndex] = encodingTable[((rawByte1 >> 3) & 0x1F)]; 170 | encodingBytes[encodingBaseIndex+1] = encodingTable[((rawByte1 << 2) & 0x1C) | ((rawByte2 >> 6) & 0x03) ]; 171 | encodingBytes[encodingBaseIndex+2] = encodingTable[((rawByte2 >> 1) & 0x1F)]; 172 | encodingBytes[encodingBaseIndex+3] = encodingTable[((rawByte2 << 4) & 0x10) | ((rawByte3 >> 4) & 0x0F)]; 173 | encodingBytes[encodingBaseIndex+4] = encodingTable[((rawByte3 << 1) & 0x1E) | ((rawByte4 >> 7) & 0x01)]; 174 | encodingBytes[encodingBaseIndex+5] = encodingTable[((rawByte4 >> 2) & 0x1F)]; 175 | encodingBytes[encodingBaseIndex+6] = encodingTable[((rawByte4 << 3) & 0x18) | ((rawByte5 >> 5) & 0x07)]; 176 | encodingBytes[encodingBaseIndex+7] = encodingTable[rawByte5 & 0x1F]; 177 | 178 | rawBaseIndex += 5; 179 | encodingBaseIndex += 8; 180 | rawBytesToProcess -= 5; 181 | } 182 | rawByte4 = 0; 183 | rawByte3 = 0; 184 | rawByte2 = 0; 185 | switch (dataLength-rawBaseIndex) { 186 | case 4: 187 | rawByte4 = rawBytes[rawBaseIndex+3]; 188 | case 3: 189 | rawByte3 = rawBytes[rawBaseIndex+2]; 190 | case 2: 191 | rawByte2 = rawBytes[rawBaseIndex+1]; 192 | case 1: 193 | rawByte1 = rawBytes[rawBaseIndex]; 194 | encodingBytes[encodingBaseIndex] = encodingTable[((rawByte1 >> 3) & 0x1F)]; 195 | encodingBytes[encodingBaseIndex+1] = encodingTable[((rawByte1 << 2) & 0x1C) | ((rawByte2 >> 6) & 0x03) ]; 196 | encodingBytes[encodingBaseIndex+2] = encodingTable[((rawByte2 >> 1) & 0x1F)]; 197 | encodingBytes[encodingBaseIndex+3] = encodingTable[((rawByte2 << 4) & 0x10) | ((rawByte3 >> 4) & 0x0F)]; 198 | encodingBytes[encodingBaseIndex+4] = encodingTable[((rawByte3 << 1) & 0x1E) | ((rawByte4 >> 7) & 0x01)]; 199 | encodingBytes[encodingBaseIndex+5] = encodingTable[((rawByte4 >> 2) & 0x1F)]; 200 | encodingBytes[encodingBaseIndex+6] = encodingTable[((rawByte4 << 3) & 0x18)]; 201 | // we can skip rawByte5 since we have a partial block it would always be 0 202 | break; 203 | } 204 | // compute location from where to begin inserting padding, it may overwrite some bytes from the partial block encoding 205 | // if their value was 0 (cases 1-3). 206 | encodingBaseIndex = encodedLength - padding; 207 | while( padding-- > 0 ) { 208 | encodingBytes[encodingBaseIndex++] = '='; 209 | } 210 | encoding = [[NSString alloc] initWithBytes:encodingBytes length:encodedLength encoding:NSASCIIStringEncoding]; 211 | } 212 | } 213 | @catch (NSException *exception) { 214 | encoding = nil; 215 | NSLog(@"WARNING: error occured while tring to encode base 32 data: %@", exception); 216 | } 217 | @finally { 218 | if( encodingBytes != NULL ) { 219 | free( encodingBytes ); 220 | } 221 | } 222 | return encoding; 223 | } 224 | @end 225 | 226 | @implementation NSString (Base32Addition) 227 | -(NSString *)base32String 228 | { 229 | NSData *utf8encoding = [self dataUsingEncoding:NSUTF8StringEncoding]; 230 | return [MF_Base32Codec base32StringFromData:utf8encoding]; 231 | } 232 | +(NSString *)stringFromBase32String:(NSString *)base32String 233 | { 234 | NSData *utf8encoding = [MF_Base32Codec dataFromBase32String:base32String]; 235 | return [[NSString alloc] initWithData:utf8encoding encoding:NSUTF8StringEncoding]; 236 | } 237 | @end 238 | 239 | @implementation NSData (Base32Addition) 240 | +(NSData *)dataWithBase32String:(NSString *)base32String 241 | { 242 | return [MF_Base32Codec dataFromBase32String:base32String]; 243 | } 244 | -(NSString *)base32String 245 | { 246 | return [MF_Base32Codec base32StringFromData:self]; 247 | } 248 | @end 249 | -------------------------------------------------------------------------------- /Base32.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0DDF90E7158A1A0F00D44611 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0DDF90E6158A1A0F00D44611 /* Cocoa.framework */; }; 11 | 0DDF90F1158A1A0F00D44611 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 0DDF90EF158A1A0F00D44611 /* InfoPlist.strings */; }; 12 | 0DDF90F3158A1A0F00D44611 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DDF90F2158A1A0F00D44611 /* main.m */; }; 13 | 0DDF90F7158A1A0F00D44611 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 0DDF90F5158A1A0F00D44611 /* Credits.rtf */; }; 14 | 0DDF90FA158A1A0F00D44611 /* MF_AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DDF90F9158A1A0F00D44611 /* MF_AppDelegate.m */; }; 15 | 0DDF90FD158A1A1000D44611 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 0DDF90FB158A1A1000D44611 /* MainMenu.xib */; }; 16 | 0DDF910A158A1E2800D44611 /* MF_Base32Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DDF9109158A1E2800D44611 /* MF_Base32Additions.m */; }; 17 | C9357C051DCD6BED007C1419 /* Base32.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C9357BFC1DCD6BED007C1419 /* Base32.framework */; }; 18 | C969A5721A750B1E004FE0F7 /* Base32.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C996EC9F1A7500D30076B105 /* Base32.framework */; }; 19 | C996EC6E1A74F2190076B105 /* Base32.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C996EC631A74F2180076B105 /* Base32.framework */; }; 20 | C996EC751A74F2190076B105 /* Base32Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = C996EC741A74F2190076B105 /* Base32Tests.m */; }; 21 | C996ECAA1A7500D40076B105 /* Base32.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C996EC9F1A7500D30076B105 /* Base32.framework */; }; 22 | C996ECBA1A7503930076B105 /* MF_Base32Additions.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DDF9108158A1E2800D44611 /* MF_Base32Additions.h */; settings = {ATTRIBUTES = (Public, ); }; }; 23 | C996ECBB1A7503980076B105 /* Base32.h in Headers */ = {isa = PBXBuildFile; fileRef = C996EC671A74F2190076B105 /* Base32.h */; settings = {ATTRIBUTES = (Public, ); }; }; 24 | /* End PBXBuildFile section */ 25 | 26 | /* Begin PBXContainerItemProxy section */ 27 | C9357C061DCD6BED007C1419 /* PBXContainerItemProxy */ = { 28 | isa = PBXContainerItemProxy; 29 | containerPortal = 0DDF90D9158A1A0F00D44611 /* Project object */; 30 | proxyType = 1; 31 | remoteGlobalIDString = C9357BFB1DCD6BED007C1419; 32 | remoteInfo = Base32; 33 | }; 34 | C969A5701A750B19004FE0F7 /* PBXContainerItemProxy */ = { 35 | isa = PBXContainerItemProxy; 36 | containerPortal = 0DDF90D9158A1A0F00D44611 /* Project object */; 37 | proxyType = 1; 38 | remoteGlobalIDString = C996EC9E1A7500D30076B105; 39 | remoteInfo = Base32; 40 | }; 41 | C996EC6F1A74F2190076B105 /* PBXContainerItemProxy */ = { 42 | isa = PBXContainerItemProxy; 43 | containerPortal = 0DDF90D9158A1A0F00D44611 /* Project object */; 44 | proxyType = 1; 45 | remoteGlobalIDString = C996EC621A74F2180076B105; 46 | remoteInfo = Base32; 47 | }; 48 | C996ECAB1A7500D40076B105 /* PBXContainerItemProxy */ = { 49 | isa = PBXContainerItemProxy; 50 | containerPortal = 0DDF90D9158A1A0F00D44611 /* Project object */; 51 | proxyType = 1; 52 | remoteGlobalIDString = C996EC9E1A7500D30076B105; 53 | remoteInfo = Base32; 54 | }; 55 | /* End PBXContainerItemProxy section */ 56 | 57 | /* Begin PBXFileReference section */ 58 | 0DDF90E2158A1A0F00D44611 /* Base32.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Base32.app; sourceTree = BUILT_PRODUCTS_DIR; }; 59 | 0DDF90E6158A1A0F00D44611 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; }; 60 | 0DDF90E9158A1A0F00D44611 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; }; 61 | 0DDF90EA158A1A0F00D44611 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; }; 62 | 0DDF90EB158A1A0F00D44611 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 63 | 0DDF90EE158A1A0F00D44611 /* Base32-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Base32-Info.plist"; sourceTree = ""; }; 64 | 0DDF90F0158A1A0F00D44611 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 65 | 0DDF90F2158A1A0F00D44611 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 66 | 0DDF90F4158A1A0F00D44611 /* Base32-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Base32-Prefix.pch"; sourceTree = ""; }; 67 | 0DDF90F6158A1A0F00D44611 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = en; path = en.lproj/Credits.rtf; sourceTree = ""; }; 68 | 0DDF90F8158A1A0F00D44611 /* MF_AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MF_AppDelegate.h; sourceTree = ""; }; 69 | 0DDF90F9158A1A0F00D44611 /* MF_AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MF_AppDelegate.m; sourceTree = ""; }; 70 | 0DDF90FC158A1A1000D44611 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainMenu.xib; sourceTree = ""; }; 71 | 0DDF9108158A1E2800D44611 /* MF_Base32Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MF_Base32Additions.h; sourceTree = ""; }; 72 | 0DDF9109158A1E2800D44611 /* MF_Base32Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MF_Base32Additions.m; sourceTree = ""; }; 73 | 5B39F4841DBD04A400CD2DAB /* Base32.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Base32.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 74 | C9357BFC1DCD6BED007C1419 /* Base32.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Base32.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 75 | C9357C041DCD6BED007C1419 /* Base32Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Base32Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 76 | C9357C131DCD6F43007C1419 /* Base32-tvOS.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Base32-tvOS.xcconfig"; sourceTree = ""; }; 77 | C9357C141DCD6F5A007C1419 /* Base32Tests-tvOS.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Base32Tests-tvOS.xcconfig"; sourceTree = ""; }; 78 | C9357C1B1DCD7BD6007C1419 /* Project.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Project.xcconfig; sourceTree = ""; }; 79 | C9357C1C1DCD7BE4007C1419 /* Project-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Project-Debug.xcconfig"; sourceTree = ""; }; 80 | C9357C1D1DCD7BFF007C1419 /* Project-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Project-Release.xcconfig"; sourceTree = ""; }; 81 | C996EC631A74F2180076B105 /* Base32.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Base32.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 82 | C996EC661A74F2190076B105 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 83 | C996EC671A74F2190076B105 /* Base32.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Base32.h; sourceTree = ""; }; 84 | C996EC6D1A74F2190076B105 /* Base32Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Base32Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 85 | C996EC741A74F2190076B105 /* Base32Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Base32Tests.m; sourceTree = ""; }; 86 | C996EC941A74FA390076B105 /* macOS-Application.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "macOS-Application.xcconfig"; path = "Carthage/Checkouts/xcconfigs/macOS/macOS-Application.xcconfig"; sourceTree = SOURCE_ROOT; }; 87 | C996EC9F1A7500D30076B105 /* Base32.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Base32.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 88 | C996ECA91A7500D30076B105 /* Base32Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Base32Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 89 | C99ECD5B1DCC2DCC00A1BF3C /* Base32.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Base32.xcconfig; sourceTree = ""; }; 90 | C99ECD5C1DCC2DD800A1BF3C /* Base32Tests.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Base32Tests.xcconfig; sourceTree = ""; }; 91 | C99ECD5D1DCC2E0100A1BF3C /* Base32-iOS.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Base32-iOS.xcconfig"; sourceTree = ""; }; 92 | C99ECD5E1DCC2E0100A1BF3C /* Base32-macOS.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Base32-macOS.xcconfig"; sourceTree = ""; }; 93 | C99ECD5F1DCC2E0100A1BF3C /* Base32-watchOS.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Base32-watchOS.xcconfig"; sourceTree = ""; }; 94 | C99ECD601DCC2E1F00A1BF3C /* Base32Tests-iOS.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Base32Tests-iOS.xcconfig"; sourceTree = ""; }; 95 | C99ECD611DCC2E1F00A1BF3C /* Base32Tests-macOS.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Base32Tests-macOS.xcconfig"; sourceTree = ""; }; 96 | /* End PBXFileReference section */ 97 | 98 | /* Begin PBXFrameworksBuildPhase section */ 99 | 0DDF90DF158A1A0F00D44611 /* Frameworks */ = { 100 | isa = PBXFrameworksBuildPhase; 101 | buildActionMask = 2147483647; 102 | files = ( 103 | 0DDF90E7158A1A0F00D44611 /* Cocoa.framework in Frameworks */, 104 | C969A5721A750B1E004FE0F7 /* Base32.framework in Frameworks */, 105 | ); 106 | runOnlyForDeploymentPostprocessing = 0; 107 | }; 108 | C9357C011DCD6BED007C1419 /* Frameworks */ = { 109 | isa = PBXFrameworksBuildPhase; 110 | buildActionMask = 2147483647; 111 | files = ( 112 | C9357C051DCD6BED007C1419 /* Base32.framework in Frameworks */, 113 | ); 114 | runOnlyForDeploymentPostprocessing = 0; 115 | }; 116 | C996EC6A1A74F2190076B105 /* Frameworks */ = { 117 | isa = PBXFrameworksBuildPhase; 118 | buildActionMask = 2147483647; 119 | files = ( 120 | C996EC6E1A74F2190076B105 /* Base32.framework in Frameworks */, 121 | ); 122 | runOnlyForDeploymentPostprocessing = 0; 123 | }; 124 | C996ECA61A7500D30076B105 /* Frameworks */ = { 125 | isa = PBXFrameworksBuildPhase; 126 | buildActionMask = 2147483647; 127 | files = ( 128 | C996ECAA1A7500D40076B105 /* Base32.framework in Frameworks */, 129 | ); 130 | runOnlyForDeploymentPostprocessing = 0; 131 | }; 132 | /* End PBXFrameworksBuildPhase section */ 133 | 134 | /* Begin PBXGroup section */ 135 | 0DDF90D7158A1A0F00D44611 = { 136 | isa = PBXGroup; 137 | children = ( 138 | 0DDF90EC158A1A0F00D44611 /* Base32 */, 139 | C996EC641A74F2190076B105 /* Base32 */, 140 | C996EC711A74F2190076B105 /* Base32Tests */, 141 | 0DDF90E5158A1A0F00D44611 /* Frameworks */, 142 | C996EC7E1A74FA390076B105 /* Configuration */, 143 | 0DDF90E3158A1A0F00D44611 /* Products */, 144 | ); 145 | sourceTree = ""; 146 | }; 147 | 0DDF90E3158A1A0F00D44611 /* Products */ = { 148 | isa = PBXGroup; 149 | children = ( 150 | 0DDF90E2158A1A0F00D44611 /* Base32.app */, 151 | C996EC631A74F2180076B105 /* Base32.framework */, 152 | C996EC6D1A74F2190076B105 /* Base32Tests.xctest */, 153 | C996EC9F1A7500D30076B105 /* Base32.framework */, 154 | C996ECA91A7500D30076B105 /* Base32Tests.xctest */, 155 | C9357BFC1DCD6BED007C1419 /* Base32.framework */, 156 | C9357C041DCD6BED007C1419 /* Base32Tests.xctest */, 157 | 5B39F4841DBD04A400CD2DAB /* Base32.framework */, 158 | ); 159 | name = Products; 160 | sourceTree = ""; 161 | }; 162 | 0DDF90E5158A1A0F00D44611 /* Frameworks */ = { 163 | isa = PBXGroup; 164 | children = ( 165 | 0DDF90E6158A1A0F00D44611 /* Cocoa.framework */, 166 | 0DDF90E8158A1A0F00D44611 /* Other Frameworks */, 167 | ); 168 | name = Frameworks; 169 | sourceTree = ""; 170 | }; 171 | 0DDF90E8158A1A0F00D44611 /* Other Frameworks */ = { 172 | isa = PBXGroup; 173 | children = ( 174 | 0DDF90E9158A1A0F00D44611 /* AppKit.framework */, 175 | 0DDF90EA158A1A0F00D44611 /* CoreData.framework */, 176 | 0DDF90EB158A1A0F00D44611 /* Foundation.framework */, 177 | ); 178 | name = "Other Frameworks"; 179 | sourceTree = ""; 180 | }; 181 | 0DDF90EC158A1A0F00D44611 /* Base32 */ = { 182 | isa = PBXGroup; 183 | children = ( 184 | 0DDF90F8158A1A0F00D44611 /* MF_AppDelegate.h */, 185 | 0DDF90F9158A1A0F00D44611 /* MF_AppDelegate.m */, 186 | 0DDF90FB158A1A1000D44611 /* MainMenu.xib */, 187 | 0DDF90ED158A1A0F00D44611 /* Supporting Files */, 188 | ); 189 | path = Base32; 190 | sourceTree = ""; 191 | }; 192 | 0DDF90ED158A1A0F00D44611 /* Supporting Files */ = { 193 | isa = PBXGroup; 194 | children = ( 195 | 0DDF90EE158A1A0F00D44611 /* Base32-Info.plist */, 196 | 0DDF90EF158A1A0F00D44611 /* InfoPlist.strings */, 197 | 0DDF90F2158A1A0F00D44611 /* main.m */, 198 | 0DDF90F4158A1A0F00D44611 /* Base32-Prefix.pch */, 199 | 0DDF90F5158A1A0F00D44611 /* Credits.rtf */, 200 | ); 201 | name = "Supporting Files"; 202 | sourceTree = ""; 203 | }; 204 | C9357C191DCD7B6B007C1419 /* Base32 */ = { 205 | isa = PBXGroup; 206 | children = ( 207 | C99ECD5B1DCC2DCC00A1BF3C /* Base32.xcconfig */, 208 | C99ECD5D1DCC2E0100A1BF3C /* Base32-iOS.xcconfig */, 209 | C99ECD5E1DCC2E0100A1BF3C /* Base32-macOS.xcconfig */, 210 | C9357C131DCD6F43007C1419 /* Base32-tvOS.xcconfig */, 211 | C99ECD5F1DCC2E0100A1BF3C /* Base32-watchOS.xcconfig */, 212 | ); 213 | name = Base32; 214 | sourceTree = ""; 215 | }; 216 | C9357C1A1DCD7B73007C1419 /* Base32Tests */ = { 217 | isa = PBXGroup; 218 | children = ( 219 | C99ECD5C1DCC2DD800A1BF3C /* Base32Tests.xcconfig */, 220 | C99ECD601DCC2E1F00A1BF3C /* Base32Tests-iOS.xcconfig */, 221 | C99ECD611DCC2E1F00A1BF3C /* Base32Tests-macOS.xcconfig */, 222 | C9357C141DCD6F5A007C1419 /* Base32Tests-tvOS.xcconfig */, 223 | ); 224 | name = Base32Tests; 225 | sourceTree = ""; 226 | }; 227 | C996EC641A74F2190076B105 /* Base32 */ = { 228 | isa = PBXGroup; 229 | children = ( 230 | C996EC671A74F2190076B105 /* Base32.h */, 231 | 0DDF9108158A1E2800D44611 /* MF_Base32Additions.h */, 232 | 0DDF9109158A1E2800D44611 /* MF_Base32Additions.m */, 233 | C996EC651A74F2190076B105 /* Supporting Files */, 234 | ); 235 | path = Base32; 236 | sourceTree = ""; 237 | }; 238 | C996EC651A74F2190076B105 /* Supporting Files */ = { 239 | isa = PBXGroup; 240 | children = ( 241 | C996EC661A74F2190076B105 /* Info.plist */, 242 | ); 243 | name = "Supporting Files"; 244 | sourceTree = ""; 245 | }; 246 | C996EC711A74F2190076B105 /* Base32Tests */ = { 247 | isa = PBXGroup; 248 | children = ( 249 | C996EC741A74F2190076B105 /* Base32Tests.m */, 250 | ); 251 | path = Base32Tests; 252 | sourceTree = ""; 253 | }; 254 | C996EC7E1A74FA390076B105 /* Configuration */ = { 255 | isa = PBXGroup; 256 | children = ( 257 | C996EC7F1A74FA390076B105 /* Project */, 258 | C99ECD5A1DCC2D7700A1BF3C /* Targets */, 259 | ); 260 | path = Configuration; 261 | sourceTree = ""; 262 | }; 263 | C996EC7F1A74FA390076B105 /* Project */ = { 264 | isa = PBXGroup; 265 | children = ( 266 | C9357C1B1DCD7BD6007C1419 /* Project.xcconfig */, 267 | C9357C1C1DCD7BE4007C1419 /* Project-Debug.xcconfig */, 268 | C9357C1D1DCD7BFF007C1419 /* Project-Release.xcconfig */, 269 | ); 270 | name = Project; 271 | sourceTree = ""; 272 | }; 273 | C99ECD5A1DCC2D7700A1BF3C /* Targets */ = { 274 | isa = PBXGroup; 275 | children = ( 276 | C9357C191DCD7B6B007C1419 /* Base32 */, 277 | C9357C1A1DCD7B73007C1419 /* Base32Tests */, 278 | C996EC941A74FA390076B105 /* macOS-Application.xcconfig */, 279 | ); 280 | name = Targets; 281 | sourceTree = ""; 282 | }; 283 | /* End PBXGroup section */ 284 | 285 | /* Begin PBXHeadersBuildPhase section */ 286 | C996EC9C1A7500D30076B105 /* Headers */ = { 287 | isa = PBXHeadersBuildPhase; 288 | buildActionMask = 2147483647; 289 | files = ( 290 | C996ECBB1A7503980076B105 /* Base32.h in Headers */, 291 | C996ECBA1A7503930076B105 /* MF_Base32Additions.h in Headers */, 292 | ); 293 | runOnlyForDeploymentPostprocessing = 0; 294 | }; 295 | /* End PBXHeadersBuildPhase section */ 296 | 297 | /* Begin PBXNativeTarget section */ 298 | 0DDF90E1158A1A0F00D44611 /* Base32 */ = { 299 | isa = PBXNativeTarget; 300 | buildConfigurationList = 0DDF9100158A1A1000D44611 /* Build configuration list for PBXNativeTarget "Base32" */; 301 | buildPhases = ( 302 | 0DDF90DE158A1A0F00D44611 /* Sources */, 303 | 0DDF90DF158A1A0F00D44611 /* Frameworks */, 304 | 0DDF90E0158A1A0F00D44611 /* Resources */, 305 | ); 306 | buildRules = ( 307 | ); 308 | dependencies = ( 309 | C969A5711A750B19004FE0F7 /* PBXTargetDependency */, 310 | ); 311 | name = Base32; 312 | productName = Base32; 313 | productReference = 0DDF90E2158A1A0F00D44611 /* Base32.app */; 314 | productType = "com.apple.product-type.application"; 315 | }; 316 | 5B39F4831DBD04A400CD2DAB /* Base32 (watchOS) */ = { 317 | isa = PBXNativeTarget; 318 | buildConfigurationList = 5B39F48B1DBD04A400CD2DAB /* Build configuration list for PBXNativeTarget "Base32 (watchOS)" */; 319 | buildPhases = ( 320 | C996EC5E1A74F2180076B105 /* Sources */, 321 | C996EC9C1A7500D30076B105 /* Headers */, 322 | ); 323 | buildRules = ( 324 | ); 325 | dependencies = ( 326 | ); 327 | name = "Base32 (watchOS)"; 328 | productName = Base32; 329 | productReference = 5B39F4841DBD04A400CD2DAB /* Base32.framework */; 330 | productType = "com.apple.product-type.framework"; 331 | }; 332 | C9357BFB1DCD6BED007C1419 /* Base32 (tvOS) */ = { 333 | isa = PBXNativeTarget; 334 | buildConfigurationList = C9357C0D1DCD6BED007C1419 /* Build configuration list for PBXNativeTarget "Base32 (tvOS)" */; 335 | buildPhases = ( 336 | C996EC5E1A74F2180076B105 /* Sources */, 337 | C996EC9C1A7500D30076B105 /* Headers */, 338 | ); 339 | buildRules = ( 340 | ); 341 | dependencies = ( 342 | ); 343 | name = "Base32 (tvOS)"; 344 | productName = Base32; 345 | productReference = C9357BFC1DCD6BED007C1419 /* Base32.framework */; 346 | productType = "com.apple.product-type.framework"; 347 | }; 348 | C9357C031DCD6BED007C1419 /* Base32Tests (tvOS) */ = { 349 | isa = PBXNativeTarget; 350 | buildConfigurationList = C9357C101DCD6BED007C1419 /* Build configuration list for PBXNativeTarget "Base32Tests (tvOS)" */; 351 | buildPhases = ( 352 | C996EC691A74F2190076B105 /* Sources */, 353 | C9357C011DCD6BED007C1419 /* Frameworks */, 354 | ); 355 | buildRules = ( 356 | ); 357 | dependencies = ( 358 | C9357C071DCD6BED007C1419 /* PBXTargetDependency */, 359 | ); 360 | name = "Base32Tests (tvOS)"; 361 | productName = Base32Tests; 362 | productReference = C9357C041DCD6BED007C1419 /* Base32Tests.xctest */; 363 | productType = "com.apple.product-type.bundle.unit-test"; 364 | }; 365 | C996EC621A74F2180076B105 /* Base32 (iOS) */ = { 366 | isa = PBXNativeTarget; 367 | buildConfigurationList = C996EC761A74F2190076B105 /* Build configuration list for PBXNativeTarget "Base32 (iOS)" */; 368 | buildPhases = ( 369 | C996EC5E1A74F2180076B105 /* Sources */, 370 | C996EC9C1A7500D30076B105 /* Headers */, 371 | ); 372 | buildRules = ( 373 | ); 374 | dependencies = ( 375 | ); 376 | name = "Base32 (iOS)"; 377 | productName = Base32; 378 | productReference = C996EC631A74F2180076B105 /* Base32.framework */; 379 | productType = "com.apple.product-type.framework"; 380 | }; 381 | C996EC6C1A74F2190076B105 /* Base32Tests (iOS) */ = { 382 | isa = PBXNativeTarget; 383 | buildConfigurationList = C996EC791A74F2190076B105 /* Build configuration list for PBXNativeTarget "Base32Tests (iOS)" */; 384 | buildPhases = ( 385 | C996EC691A74F2190076B105 /* Sources */, 386 | C996EC6A1A74F2190076B105 /* Frameworks */, 387 | ); 388 | buildRules = ( 389 | ); 390 | dependencies = ( 391 | C996EC701A74F2190076B105 /* PBXTargetDependency */, 392 | ); 393 | name = "Base32Tests (iOS)"; 394 | productName = Base32Tests; 395 | productReference = C996EC6D1A74F2190076B105 /* Base32Tests.xctest */; 396 | productType = "com.apple.product-type.bundle.unit-test"; 397 | }; 398 | C996EC9E1A7500D30076B105 /* Base32 (macOS) */ = { 399 | isa = PBXNativeTarget; 400 | buildConfigurationList = C996ECB21A7500D40076B105 /* Build configuration list for PBXNativeTarget "Base32 (macOS)" */; 401 | buildPhases = ( 402 | C996EC5E1A74F2180076B105 /* Sources */, 403 | C996EC9C1A7500D30076B105 /* Headers */, 404 | ); 405 | buildRules = ( 406 | ); 407 | dependencies = ( 408 | ); 409 | name = "Base32 (macOS)"; 410 | productName = Base32; 411 | productReference = C996EC9F1A7500D30076B105 /* Base32.framework */; 412 | productType = "com.apple.product-type.framework"; 413 | }; 414 | C996ECA81A7500D30076B105 /* Base32Tests (macOS) */ = { 415 | isa = PBXNativeTarget; 416 | buildConfigurationList = C996ECB51A7500D40076B105 /* Build configuration list for PBXNativeTarget "Base32Tests (macOS)" */; 417 | buildPhases = ( 418 | C996EC691A74F2190076B105 /* Sources */, 419 | C996ECA61A7500D30076B105 /* Frameworks */, 420 | ); 421 | buildRules = ( 422 | ); 423 | dependencies = ( 424 | C996ECAC1A7500D40076B105 /* PBXTargetDependency */, 425 | ); 426 | name = "Base32Tests (macOS)"; 427 | productName = Base32Tests; 428 | productReference = C996ECA91A7500D30076B105 /* Base32Tests.xctest */; 429 | productType = "com.apple.product-type.bundle.unit-test"; 430 | }; 431 | /* End PBXNativeTarget section */ 432 | 433 | /* Begin PBXProject section */ 434 | 0DDF90D9158A1A0F00D44611 /* Project object */ = { 435 | isa = PBXProject; 436 | attributes = { 437 | CLASSPREFIX = MF_; 438 | LastUpgradeCheck = 1240; 439 | ORGANIZATIONNAME = Freshcode; 440 | TargetAttributes = { 441 | 0DDF90E1158A1A0F00D44611 = { 442 | ProvisioningStyle = Manual; 443 | }; 444 | 5B39F4831DBD04A400CD2DAB = { 445 | CreatedOnToolsVersion = 8.0; 446 | ProvisioningStyle = Manual; 447 | }; 448 | C9357BFB1DCD6BED007C1419 = { 449 | CreatedOnToolsVersion = 8.1; 450 | ProvisioningStyle = Manual; 451 | }; 452 | C9357C031DCD6BED007C1419 = { 453 | CreatedOnToolsVersion = 8.1; 454 | ProvisioningStyle = Manual; 455 | }; 456 | C996EC621A74F2180076B105 = { 457 | CreatedOnToolsVersion = 6.1.1; 458 | ProvisioningStyle = Manual; 459 | }; 460 | C996EC6C1A74F2190076B105 = { 461 | CreatedOnToolsVersion = 6.1.1; 462 | ProvisioningStyle = Manual; 463 | }; 464 | C996EC9E1A7500D30076B105 = { 465 | CreatedOnToolsVersion = 6.1.1; 466 | ProvisioningStyle = Manual; 467 | }; 468 | C996ECA81A7500D30076B105 = { 469 | CreatedOnToolsVersion = 6.1.1; 470 | ProvisioningStyle = Manual; 471 | }; 472 | }; 473 | }; 474 | buildConfigurationList = 0DDF90DC158A1A0F00D44611 /* Build configuration list for PBXProject "Base32" */; 475 | compatibilityVersion = "Xcode 3.2"; 476 | developmentRegion = en; 477 | hasScannedForEncodings = 0; 478 | knownRegions = ( 479 | en, 480 | Base, 481 | ); 482 | mainGroup = 0DDF90D7158A1A0F00D44611; 483 | productRefGroup = 0DDF90E3158A1A0F00D44611 /* Products */; 484 | projectDirPath = ""; 485 | projectRoot = ""; 486 | targets = ( 487 | 0DDF90E1158A1A0F00D44611 /* Base32 */, 488 | C996EC621A74F2180076B105 /* Base32 (iOS) */, 489 | C996EC6C1A74F2190076B105 /* Base32Tests (iOS) */, 490 | C996EC9E1A7500D30076B105 /* Base32 (macOS) */, 491 | C996ECA81A7500D30076B105 /* Base32Tests (macOS) */, 492 | C9357BFB1DCD6BED007C1419 /* Base32 (tvOS) */, 493 | C9357C031DCD6BED007C1419 /* Base32Tests (tvOS) */, 494 | 5B39F4831DBD04A400CD2DAB /* Base32 (watchOS) */, 495 | ); 496 | }; 497 | /* End PBXProject section */ 498 | 499 | /* Begin PBXResourcesBuildPhase section */ 500 | 0DDF90E0158A1A0F00D44611 /* Resources */ = { 501 | isa = PBXResourcesBuildPhase; 502 | buildActionMask = 2147483647; 503 | files = ( 504 | 0DDF90F1158A1A0F00D44611 /* InfoPlist.strings in Resources */, 505 | 0DDF90F7158A1A0F00D44611 /* Credits.rtf in Resources */, 506 | 0DDF90FD158A1A1000D44611 /* MainMenu.xib in Resources */, 507 | ); 508 | runOnlyForDeploymentPostprocessing = 0; 509 | }; 510 | /* End PBXResourcesBuildPhase section */ 511 | 512 | /* Begin PBXSourcesBuildPhase section */ 513 | 0DDF90DE158A1A0F00D44611 /* Sources */ = { 514 | isa = PBXSourcesBuildPhase; 515 | buildActionMask = 2147483647; 516 | files = ( 517 | 0DDF90F3158A1A0F00D44611 /* main.m in Sources */, 518 | 0DDF90FA158A1A0F00D44611 /* MF_AppDelegate.m in Sources */, 519 | ); 520 | runOnlyForDeploymentPostprocessing = 0; 521 | }; 522 | C996EC5E1A74F2180076B105 /* Sources */ = { 523 | isa = PBXSourcesBuildPhase; 524 | buildActionMask = 2147483647; 525 | files = ( 526 | 0DDF910A158A1E2800D44611 /* MF_Base32Additions.m in Sources */, 527 | ); 528 | runOnlyForDeploymentPostprocessing = 0; 529 | }; 530 | C996EC691A74F2190076B105 /* Sources */ = { 531 | isa = PBXSourcesBuildPhase; 532 | buildActionMask = 2147483647; 533 | files = ( 534 | C996EC751A74F2190076B105 /* Base32Tests.m in Sources */, 535 | ); 536 | runOnlyForDeploymentPostprocessing = 0; 537 | }; 538 | /* End PBXSourcesBuildPhase section */ 539 | 540 | /* Begin PBXTargetDependency section */ 541 | C9357C071DCD6BED007C1419 /* PBXTargetDependency */ = { 542 | isa = PBXTargetDependency; 543 | target = C9357BFB1DCD6BED007C1419 /* Base32 (tvOS) */; 544 | targetProxy = C9357C061DCD6BED007C1419 /* PBXContainerItemProxy */; 545 | }; 546 | C969A5711A750B19004FE0F7 /* PBXTargetDependency */ = { 547 | isa = PBXTargetDependency; 548 | target = C996EC9E1A7500D30076B105 /* Base32 (macOS) */; 549 | targetProxy = C969A5701A750B19004FE0F7 /* PBXContainerItemProxy */; 550 | }; 551 | C996EC701A74F2190076B105 /* PBXTargetDependency */ = { 552 | isa = PBXTargetDependency; 553 | target = C996EC621A74F2180076B105 /* Base32 (iOS) */; 554 | targetProxy = C996EC6F1A74F2190076B105 /* PBXContainerItemProxy */; 555 | }; 556 | C996ECAC1A7500D40076B105 /* PBXTargetDependency */ = { 557 | isa = PBXTargetDependency; 558 | target = C996EC9E1A7500D30076B105 /* Base32 (macOS) */; 559 | targetProxy = C996ECAB1A7500D40076B105 /* PBXContainerItemProxy */; 560 | }; 561 | /* End PBXTargetDependency section */ 562 | 563 | /* Begin PBXVariantGroup section */ 564 | 0DDF90EF158A1A0F00D44611 /* InfoPlist.strings */ = { 565 | isa = PBXVariantGroup; 566 | children = ( 567 | 0DDF90F0158A1A0F00D44611 /* en */, 568 | ); 569 | name = InfoPlist.strings; 570 | sourceTree = ""; 571 | }; 572 | 0DDF90F5158A1A0F00D44611 /* Credits.rtf */ = { 573 | isa = PBXVariantGroup; 574 | children = ( 575 | 0DDF90F6158A1A0F00D44611 /* en */, 576 | ); 577 | name = Credits.rtf; 578 | sourceTree = ""; 579 | }; 580 | 0DDF90FB158A1A1000D44611 /* MainMenu.xib */ = { 581 | isa = PBXVariantGroup; 582 | children = ( 583 | 0DDF90FC158A1A1000D44611 /* en */, 584 | ); 585 | name = MainMenu.xib; 586 | sourceTree = ""; 587 | }; 588 | /* End PBXVariantGroup section */ 589 | 590 | /* Begin XCBuildConfiguration section */ 591 | 0DDF90FE158A1A1000D44611 /* Debug */ = { 592 | isa = XCBuildConfiguration; 593 | baseConfigurationReference = C9357C1C1DCD7BE4007C1419 /* Project-Debug.xcconfig */; 594 | buildSettings = { 595 | }; 596 | name = Debug; 597 | }; 598 | 0DDF90FF158A1A1000D44611 /* Release */ = { 599 | isa = XCBuildConfiguration; 600 | baseConfigurationReference = C9357C1D1DCD7BFF007C1419 /* Project-Release.xcconfig */; 601 | buildSettings = { 602 | }; 603 | name = Release; 604 | }; 605 | 0DDF9101158A1A1000D44611 /* Debug */ = { 606 | isa = XCBuildConfiguration; 607 | baseConfigurationReference = C996EC941A74FA390076B105 /* macOS-Application.xcconfig */; 608 | buildSettings = { 609 | CODE_SIGN_IDENTITY = "-"; 610 | GCC_PREFIX_HEADER = "Base32/Base32-Prefix.pch"; 611 | INFOPLIST_FILE = "Base32/Base32-Info.plist"; 612 | PRODUCT_BUNDLE_IDENTIFIER = "ca.madefresh.$(PRODUCT_NAME:rfc1034identifier)"; 613 | PRODUCT_NAME = "$(TARGET_NAME)"; 614 | WRAPPER_EXTENSION = app; 615 | }; 616 | name = Debug; 617 | }; 618 | 0DDF9102158A1A1000D44611 /* Release */ = { 619 | isa = XCBuildConfiguration; 620 | baseConfigurationReference = C996EC941A74FA390076B105 /* macOS-Application.xcconfig */; 621 | buildSettings = { 622 | CODE_SIGN_IDENTITY = "-"; 623 | GCC_PREFIX_HEADER = "Base32/Base32-Prefix.pch"; 624 | INFOPLIST_FILE = "Base32/Base32-Info.plist"; 625 | PRODUCT_BUNDLE_IDENTIFIER = "ca.madefresh.$(PRODUCT_NAME:rfc1034identifier)"; 626 | PRODUCT_NAME = "$(TARGET_NAME)"; 627 | WRAPPER_EXTENSION = app; 628 | }; 629 | name = Release; 630 | }; 631 | 5B39F4891DBD04A400CD2DAB /* Debug */ = { 632 | isa = XCBuildConfiguration; 633 | baseConfigurationReference = C99ECD5F1DCC2E0100A1BF3C /* Base32-watchOS.xcconfig */; 634 | buildSettings = { 635 | }; 636 | name = Debug; 637 | }; 638 | 5B39F48A1DBD04A400CD2DAB /* Release */ = { 639 | isa = XCBuildConfiguration; 640 | baseConfigurationReference = C99ECD5F1DCC2E0100A1BF3C /* Base32-watchOS.xcconfig */; 641 | buildSettings = { 642 | }; 643 | name = Release; 644 | }; 645 | C9357C0E1DCD6BED007C1419 /* Debug */ = { 646 | isa = XCBuildConfiguration; 647 | baseConfigurationReference = C9357C131DCD6F43007C1419 /* Base32-tvOS.xcconfig */; 648 | buildSettings = { 649 | }; 650 | name = Debug; 651 | }; 652 | C9357C0F1DCD6BED007C1419 /* Release */ = { 653 | isa = XCBuildConfiguration; 654 | baseConfigurationReference = C9357C131DCD6F43007C1419 /* Base32-tvOS.xcconfig */; 655 | buildSettings = { 656 | }; 657 | name = Release; 658 | }; 659 | C9357C111DCD6BED007C1419 /* Debug */ = { 660 | isa = XCBuildConfiguration; 661 | baseConfigurationReference = C9357C141DCD6F5A007C1419 /* Base32Tests-tvOS.xcconfig */; 662 | buildSettings = { 663 | }; 664 | name = Debug; 665 | }; 666 | C9357C121DCD6BED007C1419 /* Release */ = { 667 | isa = XCBuildConfiguration; 668 | baseConfigurationReference = C9357C141DCD6F5A007C1419 /* Base32Tests-tvOS.xcconfig */; 669 | buildSettings = { 670 | }; 671 | name = Release; 672 | }; 673 | C996EC771A74F2190076B105 /* Debug */ = { 674 | isa = XCBuildConfiguration; 675 | baseConfigurationReference = C99ECD5D1DCC2E0100A1BF3C /* Base32-iOS.xcconfig */; 676 | buildSettings = { 677 | }; 678 | name = Debug; 679 | }; 680 | C996EC781A74F2190076B105 /* Release */ = { 681 | isa = XCBuildConfiguration; 682 | baseConfigurationReference = C99ECD5D1DCC2E0100A1BF3C /* Base32-iOS.xcconfig */; 683 | buildSettings = { 684 | }; 685 | name = Release; 686 | }; 687 | C996EC7A1A74F2190076B105 /* Debug */ = { 688 | isa = XCBuildConfiguration; 689 | baseConfigurationReference = C99ECD601DCC2E1F00A1BF3C /* Base32Tests-iOS.xcconfig */; 690 | buildSettings = { 691 | }; 692 | name = Debug; 693 | }; 694 | C996EC7B1A74F2190076B105 /* Release */ = { 695 | isa = XCBuildConfiguration; 696 | baseConfigurationReference = C99ECD601DCC2E1F00A1BF3C /* Base32Tests-iOS.xcconfig */; 697 | buildSettings = { 698 | }; 699 | name = Release; 700 | }; 701 | C996ECB31A7500D40076B105 /* Debug */ = { 702 | isa = XCBuildConfiguration; 703 | baseConfigurationReference = C99ECD5E1DCC2E0100A1BF3C /* Base32-macOS.xcconfig */; 704 | buildSettings = { 705 | }; 706 | name = Debug; 707 | }; 708 | C996ECB41A7500D40076B105 /* Release */ = { 709 | isa = XCBuildConfiguration; 710 | baseConfigurationReference = C99ECD5E1DCC2E0100A1BF3C /* Base32-macOS.xcconfig */; 711 | buildSettings = { 712 | }; 713 | name = Release; 714 | }; 715 | C996ECB61A7500D40076B105 /* Debug */ = { 716 | isa = XCBuildConfiguration; 717 | baseConfigurationReference = C99ECD611DCC2E1F00A1BF3C /* Base32Tests-macOS.xcconfig */; 718 | buildSettings = { 719 | }; 720 | name = Debug; 721 | }; 722 | C996ECB71A7500D40076B105 /* Release */ = { 723 | isa = XCBuildConfiguration; 724 | baseConfigurationReference = C99ECD611DCC2E1F00A1BF3C /* Base32Tests-macOS.xcconfig */; 725 | buildSettings = { 726 | }; 727 | name = Release; 728 | }; 729 | /* End XCBuildConfiguration section */ 730 | 731 | /* Begin XCConfigurationList section */ 732 | 0DDF90DC158A1A0F00D44611 /* Build configuration list for PBXProject "Base32" */ = { 733 | isa = XCConfigurationList; 734 | buildConfigurations = ( 735 | 0DDF90FE158A1A1000D44611 /* Debug */, 736 | 0DDF90FF158A1A1000D44611 /* Release */, 737 | ); 738 | defaultConfigurationIsVisible = 0; 739 | defaultConfigurationName = Release; 740 | }; 741 | 0DDF9100158A1A1000D44611 /* Build configuration list for PBXNativeTarget "Base32" */ = { 742 | isa = XCConfigurationList; 743 | buildConfigurations = ( 744 | 0DDF9101158A1A1000D44611 /* Debug */, 745 | 0DDF9102158A1A1000D44611 /* Release */, 746 | ); 747 | defaultConfigurationIsVisible = 0; 748 | defaultConfigurationName = Release; 749 | }; 750 | 5B39F48B1DBD04A400CD2DAB /* Build configuration list for PBXNativeTarget "Base32 (watchOS)" */ = { 751 | isa = XCConfigurationList; 752 | buildConfigurations = ( 753 | 5B39F4891DBD04A400CD2DAB /* Debug */, 754 | 5B39F48A1DBD04A400CD2DAB /* Release */, 755 | ); 756 | defaultConfigurationIsVisible = 0; 757 | defaultConfigurationName = Release; 758 | }; 759 | C9357C0D1DCD6BED007C1419 /* Build configuration list for PBXNativeTarget "Base32 (tvOS)" */ = { 760 | isa = XCConfigurationList; 761 | buildConfigurations = ( 762 | C9357C0E1DCD6BED007C1419 /* Debug */, 763 | C9357C0F1DCD6BED007C1419 /* Release */, 764 | ); 765 | defaultConfigurationIsVisible = 0; 766 | defaultConfigurationName = Release; 767 | }; 768 | C9357C101DCD6BED007C1419 /* Build configuration list for PBXNativeTarget "Base32Tests (tvOS)" */ = { 769 | isa = XCConfigurationList; 770 | buildConfigurations = ( 771 | C9357C111DCD6BED007C1419 /* Debug */, 772 | C9357C121DCD6BED007C1419 /* Release */, 773 | ); 774 | defaultConfigurationIsVisible = 0; 775 | defaultConfigurationName = Release; 776 | }; 777 | C996EC761A74F2190076B105 /* Build configuration list for PBXNativeTarget "Base32 (iOS)" */ = { 778 | isa = XCConfigurationList; 779 | buildConfigurations = ( 780 | C996EC771A74F2190076B105 /* Debug */, 781 | C996EC781A74F2190076B105 /* Release */, 782 | ); 783 | defaultConfigurationIsVisible = 0; 784 | defaultConfigurationName = Release; 785 | }; 786 | C996EC791A74F2190076B105 /* Build configuration list for PBXNativeTarget "Base32Tests (iOS)" */ = { 787 | isa = XCConfigurationList; 788 | buildConfigurations = ( 789 | C996EC7A1A74F2190076B105 /* Debug */, 790 | C996EC7B1A74F2190076B105 /* Release */, 791 | ); 792 | defaultConfigurationIsVisible = 0; 793 | defaultConfigurationName = Release; 794 | }; 795 | C996ECB21A7500D40076B105 /* Build configuration list for PBXNativeTarget "Base32 (macOS)" */ = { 796 | isa = XCConfigurationList; 797 | buildConfigurations = ( 798 | C996ECB31A7500D40076B105 /* Debug */, 799 | C996ECB41A7500D40076B105 /* Release */, 800 | ); 801 | defaultConfigurationIsVisible = 0; 802 | defaultConfigurationName = Release; 803 | }; 804 | C996ECB51A7500D40076B105 /* Build configuration list for PBXNativeTarget "Base32Tests (macOS)" */ = { 805 | isa = XCConfigurationList; 806 | buildConfigurations = ( 807 | C996ECB61A7500D40076B105 /* Debug */, 808 | C996ECB71A7500D40076B105 /* Release */, 809 | ); 810 | defaultConfigurationIsVisible = 0; 811 | defaultConfigurationName = Release; 812 | }; 813 | /* End XCConfigurationList section */ 814 | }; 815 | rootObject = 0DDF90D9158A1A0F00D44611 /* Project object */; 816 | } 817 | -------------------------------------------------------------------------------- /Base32/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- 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 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 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 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | Default 524 | 525 | 526 | 527 | 528 | 529 | 530 | Left to Right 531 | 532 | 533 | 534 | 535 | 536 | 537 | Right to Left 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | Default 549 | 550 | 551 | 552 | 553 | 554 | 555 | Left to Right 556 | 557 | 558 | 559 | 560 | 561 | 562 | Right to Left 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 673 | 686 | 687 | 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | 708 | 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | --------------------------------------------------------------------------------