[
  {
    "path": ".gitignore",
    "content": "# OS X\n.DS_Store\n\n# Xcode\nbuild/\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!default.perspectivev3\nxcuserdata/\n*.xccheckout\nprofile\n*.moved-aside\nDerivedData\n*.hmap\n*.ipa\n\n# Bundler\n.bundle\n\nCarthage\n# We recommend against adding the Pods directory to your .gitignore. However\n# you should judge for yourself, the pros and cons are mentioned at:\n# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control\n# \n# Note: if you ignore the Pods directory, make sure to uncomment\n# `pod install` in .travis.yml\n#\n#Pods/\n#Example/Podfile.lock\n\n\n# SwiftPM\n.swiftpm/"
  },
  {
    "path": ".travis.yml",
    "content": "# references:\n# * http://www.objc.io/issue-6/travis-ci.html\n# * https://github.com/supermarin/xcpretty#usage\n\nosx_image: xcode10.1\nlanguage: objective-c\n# cache: cocoapods\n# podfile: Example/Podfile\n# before_install:\n# - gem install cocoapods # Since Travis is not always on latest version\n# - pod install --project-directory=Example\nscript:\n- set -o pipefail && xcodebuild test -workspace Example/APNumberPad.xcworkspace -scheme APNumberPad-Example -sdk iphonesimulator12.1 ONLY_ACTIVE_ARCH=NO | xcpretty\n- pod lib lint\n"
  },
  {
    "path": "APNumberPad/Sources/APNumberButton.h",
    "content": "//\n//  APNumberButton.h\n//\n//  Created by Andrew Podkovyrin on 16/05/14.\n//  Copyright (c) 2014 Podkovyrin. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface APNumberButton : UIButton\n\n+ (instancetype)buttonWithBackgroundColor:(UIColor *)backgroundColor highlightedColor:(UIColor *)highlightedColor;\n\n- (instancetype)initWithBackgroundColor:(UIColor *)backgroundColor highlightedColor:(UIColor *)highlightedColor;\n\n- (void)np_touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event;\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "APNumberPad/Sources/APNumberButton.m",
    "content": "//\n//  APNumberButton.m\n//\n//  Created by Andrew Podkovyrin on 16/05/14.\n//  Copyright (c) 2014 Podkovyrin. All rights reserved.\n//\n\n#import \"APNumberButton.h\"\n\n#pragma mark - UIImage additions\n\n@implementation UIImage (APNumberPad)\n\n+ (UIImage *)ap_imageWithColor:(UIColor *)color {\n    CGRect rect = CGRectMake(0.0, 0.0, 1.0, 1.0);\n    UIGraphicsBeginImageContext(rect.size);\n    CGContextRef context = UIGraphicsGetCurrentContext();\n\n    CGContextSetFillColorWithColor(context, [color CGColor]);\n    CGContextFillRect(context, rect);\n\n    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();\n    UIGraphicsEndImageContext();\n\n    return image;\n}\n\n@end\n\n#pragma mark - APNumberButton\n\n@implementation APNumberButton\n\n+ (instancetype)buttonWithBackgroundColor:(UIColor *)backgroundColor highlightedColor:(UIColor *)highlightedColor {\n    return [[self alloc] initWithBackgroundColor:backgroundColor highlightedColor:highlightedColor];\n}\n\n- (instancetype)initWithBackgroundColor:(UIColor *)backgroundColor highlightedColor:(UIColor *)highlightedColor {\n    self = [super initWithFrame:CGRectZero];\n    if (self) {\n        [self setBackgroundImage:[UIImage ap_imageWithColor:backgroundColor] forState:UIControlStateNormal];\n        [self setBackgroundImage:[UIImage ap_imageWithColor:highlightedColor] forState:UIControlStateHighlighted];\n    }\n    return self;\n}\n\n#pragma mark - UIResponder\n\n- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {\n    [super touchesBegan:touches withEvent:event];\n    [self.nextResponder touchesBegan:touches withEvent:event];\n}\n\n- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {\n    [super touchesMoved:touches withEvent:event];\n    [self.nextResponder touchesMoved:touches withEvent:event];\n}\n\n- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {\n    [super touchesEnded:touches withEvent:event];\n    [self.nextResponder touchesEnded:touches withEvent:event];\n}\n\n- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {\n    [super touchesCancelled:touches withEvent:event];\n    [self.nextResponder touchesCancelled:touches withEvent:event];\n}\n\n#pragma mark -\n\n- (void)np_touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {\n    [super touchesCancelled:touches withEvent:event];\n}\n\n@end\n"
  },
  {
    "path": "APNumberPad/Sources/APNumberPad.h",
    "content": "//\n//  APNumberPad.h\n//\n//  Created by Andrew Podkovyrin on 16/05/14.\n//  Copyright (c) 2014 Podkovyrin. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n#import \"APNumberPadDefaultStyle.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@protocol APNumberPadDelegate;\n\n///\n\n@interface APNumberPad : UIView <UIInputViewAudioFeedback>\n\n+ (instancetype)numberPadWithDelegate:(id<APNumberPadDelegate>)delegate;\n+ (instancetype)numberPadWithDelegate:(id<APNumberPadDelegate>)delegate numberPadStyleClass:(nullable Class)styleClass;\n\n/**\n *  Left function button for custom configuration\n */\n@property (strong, readonly, nonatomic) UIButton *leftFunctionButton;\n\n/**\n *  Right function button\n */\n@property (strong, readwrite, nonatomic) UIButton *clearButton;\n\n/**\n *  The class to use for styling the number pad\n */\n@property (strong, readonly, nonatomic) Class<APNumberPadStyle> styleClass;\n\n/**\n * These methods must be called after the UIResponder using this class as its input view becomes or resigns the first responder.\n * They will be called automatically if the UIResponder is an instance of UITextField or UITextView, but must be called manually\n * if it is any other class.\n */\n- (void)didBecomeActiveInputViewForResponder:(UIResponder<UIKeyInput> *)responder;\n- (void)didResignInputViewForResponder;\n\n@end\n\n///\n\n@protocol APNumberPadDelegate <NSObject>\n\n@optional\n\n- (void)numberPad:(APNumberPad *)numberPad functionButtonAction:(UIButton *)functionButton textInput:(UIResponder<UIKeyInput> *)textInput;\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "APNumberPad/Sources/APNumberPad.m",
    "content": "//\n//  APNumberPad.m\n//\n//  Created by Andrew Podkovyrin on 16/05/14.\n//  Copyright (c) 2014 Podkovyrin. All rights reserved.\n//\n\n#import \"APNumberButton.h\"\n\n#import \"APNumberPad.h\"\n\n@interface APNumberPad () {\n    BOOL _clearButtonLongPressGesture;\n\n    struct {\n        unsigned int textInputSupportsShouldChangeTextInRange : 1;\n        unsigned int delegateSupportsTextFieldShouldChangeCharactersInRange : 1;\n        unsigned int delegateSupportsTextViewShouldChangeTextInRange : 1;\n    } _delegateFlags;\n}\n\n/**\n * Plain UIView used to block out the safe area\n */\n@property (strong, readwrite, nonatomic) UIView *safeAreaCover;\n\n/**\n *  Array of APNumberButton\n */\n@property (copy, readwrite, nonatomic) NSArray *numberButtons;\n\n/**\n *  Left function button\n */\n@property (strong, readwrite, nonatomic) APNumberButton *leftButton;\n\n/**\n *  APNumberPad delegate\n */\n@property (weak, readwrite, nonatomic) id<APNumberPadDelegate> delegate;\n\n/**\n *  Auto-detected text input\n */\n@property (weak, readwrite, nonatomic) UIResponder<UIKeyInput> *textInput;\n\n/**\n *  Last touch on view. For support tap by tap entering text\n */\n@property (weak, readwrite, nonatomic) UITouch *lastTouch;\n\n/**\n *  The class to use for styling the number pad\n */\n@property (strong, readwrite, nonatomic) Class<APNumberPadStyle> styleClass;\n\n@end\n\n\n@implementation APNumberPad\n\n+ (instancetype)numberPadWithDelegate:(id<APNumberPadDelegate>)delegate {\n    return [self numberPadWithDelegate:delegate numberPadStyleClass:nil];\n}\n\n+ (instancetype)numberPadWithDelegate:(id<APNumberPadDelegate>)delegate numberPadStyleClass:(Class)styleClass {\n    return [[self alloc] initWithDelegate:delegate numberPadStyleClass:styleClass];\n}\n\n- (instancetype)initWithDelegate:(id<APNumberPadDelegate>)delegate numberPadStyleClass:(Class)styleClass {\n    self = [super initWithFrame:CGRectZero];\n    if (self) {\n        self.styleClass = styleClass;\n        self.frame = [self.styleClass numberPadFrame];\n        self.autoresizingMask = UIViewAutoresizingFlexibleHeight; // for support rotation\n        self.backgroundColor = [self.styleClass numberPadBackgroundColor];\n\n        [self addNotificationsObservers];\n\n        self.delegate = delegate;\n\n        // Number buttons (0-9)\n        //\n        NSMutableArray *numberButtons = [NSMutableArray array];\n        for (int i = 0; i < 11; i++) {\n            APNumberButton *numberButton = [self numberButton:i];\n            [self addSubview:numberButton];\n            [numberButtons addObject:numberButton];\n        }\n        self.numberButtons = numberButtons;\n\n        self.safeAreaCover = [[UIView alloc] initWithFrame:CGRectZero];\n        self.safeAreaCover.backgroundColor = [self.styleClass safeAreaSpaceColor];\n        [self addSubview:self.safeAreaCover];\n\n        // Function button\n        //\n        self.leftButton = [self functionButton];\n        self.leftButton.titleLabel.font = [self.styleClass functionButtonFont];\n        [self.leftButton setTitleColor:[self.styleClass functionButtonTextColor] forState:UIControlStateNormal];\n        [self.leftButton addTarget:self action:@selector(functionButtonAction:) forControlEvents:UIControlEventTouchUpInside];\n        [self addSubview:self.leftButton];\n\n        // Clear button\n        //\n        self.clearButton = [self functionButton];\n        [self.clearButton setImage:[self.styleClass clearFunctionButtonImage] forState:UIControlStateNormal];\n        [self.clearButton setImage:[self.styleClass clearFunctionButtonImageHighlighted] forState:UIControlStateHighlighted];\n        [self.clearButton addTarget:self action:@selector(clearButtonAction) forControlEvents:UIControlEventTouchUpInside];\n\n        UILongPressGestureRecognizer *longPressGestureRecognizer = [[UILongPressGestureRecognizer alloc]\n            initWithTarget:self\n                    action:@selector(longPressGestureRecognizerAction:)];\n        longPressGestureRecognizer.cancelsTouchesInView = NO;\n        [self.clearButton addGestureRecognizer:longPressGestureRecognizer];\n        [self addSubview:self.clearButton];\n    }\n    return self;\n}\n\n- (void)dealloc {\n    [[NSNotificationCenter defaultCenter] removeObserver:self];\n}\n\n- (void)layoutSubviews {\n    [super layoutSubviews];\n\n    CGFloat boundsWidth = CGRectGetWidth(self.bounds);\n    CGFloat boundsHeight = CGRectGetHeight(self.bounds);\n    CGFloat safeAreaHeight = 0;\n\n    if (@available(iOS 11.0, *)) {\n        safeAreaHeight = self.safeAreaInsets.bottom;\n    }\n\n    boundsHeight -= safeAreaHeight;\n\n    int rows = 4;\n    int sections = 3;\n\n    const UIUserInterfaceIdiom interfaceIdiom = UI_USER_INTERFACE_IDIOM();\n    const CGFloat maximumWidth = (interfaceIdiom == UIUserInterfaceIdiomPad) ? 400.0 : boundsWidth;\n    \n    CGFloat sep = [self.styleClass separator];\n    CGFloat left = (boundsWidth - maximumWidth) / 2;\n    CGFloat top = 0.f;\n    \n    CGFloat buttonHeight = trunc((boundsHeight - sep * (rows - 1)) / rows) + sep;\n\n    CGSize buttonSize = CGSizeMake((boundsWidth - sep * (sections - 1)) / sections, buttonHeight);\n    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {\n        buttonSize = CGSizeMake((maximumWidth - sep * (sections - 1)) / sections, buttonHeight);\n    }\n\n    // Number buttons (1-9)\n    //\n    for (int i = 1; i < self.numberButtons.count - 1; i++) {\n        APNumberButton *numberButton = self.numberButtons[i];\n        numberButton.frame = CGRectMake(left, top, buttonSize.width, buttonSize.height);\n\n        if (i % sections == 0) {\n            left = (boundsWidth - maximumWidth) / 2;\n            top += buttonSize.height + sep;\n        }\n        else {\n            left += buttonSize.width + sep;\n        }\n    }\n\n    // Function button\n    //\n    left = (boundsWidth - maximumWidth) / 2;\n    self.leftButton.frame = CGRectMake(left, top, buttonSize.width, buttonSize.height);\n\n    // Number buttons (0)\n    //\n    left += buttonSize.width + sep;\n    UIButton *zeroButton = self.numberButtons.firstObject;\n    zeroButton.frame = CGRectMake(left, top, buttonSize.width, buttonSize.height);\n\n    // Clear button\n    //\n    left += buttonSize.width + sep;\n    self.clearButton.frame = CGRectMake(left, top, buttonSize.width, buttonSize.height);\n\n    // Safe area cover\n    self.safeAreaCover.frame = CGRectMake(0, top + buttonSize.height + sep, boundsWidth, safeAreaHeight);\n}\n\n#pragma mark - Notifications\n\n- (void)addNotificationsObservers {\n    [[NSNotificationCenter defaultCenter] addObserver:self\n                                             selector:@selector(textDidBeginEditing:)\n                                                 name:UITextFieldTextDidBeginEditingNotification\n                                               object:nil];\n\n    [[NSNotificationCenter defaultCenter] addObserver:self\n                                             selector:@selector(textDidBeginEditing:)\n                                                 name:UITextViewTextDidBeginEditingNotification\n                                               object:nil];\n\n    [[NSNotificationCenter defaultCenter] addObserver:self\n                                             selector:@selector(textDidEndEditing:)\n                                                 name:UITextFieldTextDidEndEditingNotification\n                                               object:nil];\n\n    [[NSNotificationCenter defaultCenter] addObserver:self\n                                             selector:@selector(textDidEndEditing:)\n                                                 name:UITextViewTextDidEndEditingNotification\n                                               object:nil];\n}\n\n- (void)textDidBeginEditing:(NSNotification *)notification {\n    if (![notification.object conformsToProtocol:@protocol(UIKeyInput)]) {\n        return;\n    }\n\n    UIResponder<UIKeyInput> *textInput = notification.object;\n    [self didBecomeActiveInputViewForResponder:textInput];\n}\n\n- (void)textDidEndEditing:(NSNotification *)notification {\n    [self didResignInputViewForResponder];\n}\n\n- (void)didResignInputViewForResponder {\n    self.textInput = nil;\n}\n\n- (void)didBecomeActiveInputViewForResponder:(UIResponder<UIKeyInput> *)textInput {\n    if (textInput.inputView && self == textInput.inputView) {\n        self.textInput = textInput;\n\n        _delegateFlags.textInputSupportsShouldChangeTextInRange = NO;\n        _delegateFlags.delegateSupportsTextFieldShouldChangeCharactersInRange = NO;\n        _delegateFlags.delegateSupportsTextViewShouldChangeTextInRange = NO;\n\n        if ([self.textInput respondsToSelector:@selector(shouldChangeTextInRange:replacementText:)]) {\n            _delegateFlags.textInputSupportsShouldChangeTextInRange = YES;\n        }\n        else if ([self.textInput isKindOfClass:[UITextField class]]) {\n            id<UITextFieldDelegate> delegate = [(UITextField *)self.textInput delegate];\n            if ([delegate respondsToSelector:@selector(textField:shouldChangeCharactersInRange:replacementString:)]) {\n                _delegateFlags.delegateSupportsTextFieldShouldChangeCharactersInRange = YES;\n            }\n        }\n        else if ([self.textInput isKindOfClass:[UITextView class]]) {\n            id<UITextViewDelegate> delegate = [(UITextView *)self.textInput delegate];\n            if ([delegate respondsToSelector:@selector(textView:shouldChangeTextInRange:replacementText:)]) {\n                _delegateFlags.delegateSupportsTextViewShouldChangeTextInRange = YES;\n            }\n        }\n    }\n}\n\n#pragma mark - UIResponder\n\n- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {\n    [[UIDevice currentDevice] playInputClick];\n\n    // Perform number button action for previous `self.lastTouch`\n    //\n    if (self.lastTouch) {\n        [self performLastTouchAction];\n    }\n\n    // `touches` contains only one UITouch (self.multipleTouchEnabled == NO)\n    //\n    self.lastTouch = [touches anyObject];\n\n    // Update highlighted state for number buttons, cancel `touches` for everything but the catched\n    //\n    CGPoint location = [self.lastTouch locationInView:self];\n    for (APNumberButton *b in self.numberButtons) {\n        if (CGRectContainsPoint(b.frame, location)) {\n            b.highlighted = YES;\n        }\n        else {\n            b.highlighted = NO;\n            [b np_touchesCancelled:touches withEvent:event];\n        }\n    }\n}\n\n- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {\n    if (!self.lastTouch || ![touches containsObject:self.lastTouch]) {\n        return; // ignore old touches movings\n    }\n\n    CGPoint location = [self.lastTouch locationInView:self];\n\n    // Forget highlighted state for functional buttons after move\n    //\n    if (!CGRectContainsPoint(self.clearButton.frame, location)) {\n        APNumberButton *clearButton = (id)self.clearButton;\n        [clearButton np_touchesCancelled:touches withEvent:event];\n\n        // Disable long gesture action for clear button\n        //\n        _clearButtonLongPressGesture = NO;\n    }\n\n    if (!CGRectContainsPoint(self.leftButton.frame, location)) {\n        [self.leftButton np_touchesCancelled:touches withEvent:event];\n    }\n\n    // Update highlighted state for number buttons\n    //\n    for (APNumberButton *b in self.numberButtons) {\n        b.highlighted = CGRectContainsPoint(b.frame, location);\n    }\n}\n\n- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {\n    if (!self.lastTouch || ![touches containsObject:self.lastTouch]) {\n        return; // ignore old touches\n    }\n\n    [self performLastTouchAction];\n\n    self.lastTouch = nil;\n}\n\n- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {\n    // Reset hightlighted state for all buttons, forget `self.lastTouch`\n    //\n    self.leftButton.highlighted = NO;\n    self.clearButton.highlighted = NO;\n\n    for (APNumberButton *b in self.numberButtons) {\n        b.highlighted = NO;\n    }\n\n    self.lastTouch = nil;\n}\n\n- (void)performLastTouchAction {\n    // Reset highlighted state for all buttons, perform action for catched button\n    //\n    CGPoint location = [self.lastTouch locationInView:self];\n    for (APNumberButton *b in self.numberButtons) {\n        b.highlighted = NO;\n        if (CGRectContainsPoint(b.frame, location)) {\n            [self numberButtonAction:b];\n        }\n    }\n}\n\n#pragma mark - Custom accessors\n\n- (void)setStyleClass:(Class)styleClass {\n    if (styleClass) {\n        _styleClass = styleClass;\n    }\n    else {\n        _styleClass = [APNumberPadDefaultStyle class];\n    }\n}\n\n#pragma mark - Left function button\n\n- (UIButton *)leftFunctionButton {\n    return self.leftButton;\n}\n\n#pragma mark - Actions\n\n- (void)numberButtonAction:(UIButton *)sender {\n    if (!self.textInput) {\n        return;\n    }\n\n    NSString *text = sender.currentTitle;\n\n    if (_delegateFlags.textInputSupportsShouldChangeTextInRange) {\n        UIResponder<UITextInput> *input = (UIResponder<UITextInput> *)self.textInput;\n        if ([input shouldChangeTextInRange:input.selectedTextRange replacementText:text]) {\n            [self.textInput insertText:text];\n        }\n    }\n    else if (_delegateFlags.delegateSupportsTextFieldShouldChangeCharactersInRange) {\n        UITextField *textField = (UITextField *)self.textInput;\n        NSRange selectedRange = [[self class] selectedRange:textField];\n        if ([textField.delegate textField:textField shouldChangeCharactersInRange:selectedRange replacementString:text]) {\n            [self.textInput insertText:text];\n        }\n    }\n    else if (_delegateFlags.delegateSupportsTextViewShouldChangeTextInRange) {\n        UITextView *textView = (UITextView *)self.textInput;\n        NSRange selectedRange = [[self class] selectedRange:textView];\n        if ([textView.delegate textView:textView shouldChangeTextInRange:selectedRange replacementText:text]) {\n            [self.textInput insertText:text];\n        }\n    }\n    else {\n        [self.textInput insertText:text];\n    }\n}\n\n- (void)clearButtonAction {\n    if (!self.textInput) {\n        return;\n    }\n\n    if (_delegateFlags.textInputSupportsShouldChangeTextInRange) {\n        UIResponder<UITextInput> *input = (UIResponder<UITextInput> *)self.textInput;\n        UITextRange *textRange = input.selectedTextRange;\n        if ([textRange.start isEqual:textRange.end]) {\n            UITextPosition *newStart = [input positionFromPosition:textRange.start inDirection:UITextLayoutDirectionLeft offset:1];\n            textRange = [input textRangeFromPosition:newStart toPosition:textRange.end];\n        }\n        if ([input shouldChangeTextInRange:textRange replacementText:@\"\"]) {\n            [input deleteBackward];\n        }\n    }\n    else if (_delegateFlags.delegateSupportsTextFieldShouldChangeCharactersInRange) {\n        UITextField *textField = (UITextField *)self.textInput;\n\n        NSRange selectedRange = [[self class] selectedRange:textField];\n        if (selectedRange.length == 0 && selectedRange.location > 0) {\n            selectedRange.location--;\n            selectedRange.length = 1;\n        }\n\n        if ([textField.delegate textField:textField shouldChangeCharactersInRange:selectedRange replacementString:@\"\"]) {\n            [self.textInput deleteBackward];\n        }\n    }\n    else if (_delegateFlags.delegateSupportsTextViewShouldChangeTextInRange) {\n        UITextView *textView = (UITextView *)self.textInput;\n\n        NSRange selectedRange = [[self class] selectedRange:textView];\n        if (selectedRange.length == 0 && selectedRange.location > 0) {\n            selectedRange.location--;\n            selectedRange.length = 1;\n        }\n\n        if ([textView.delegate textView:textView shouldChangeTextInRange:selectedRange replacementText:@\"\"]) {\n            [self.textInput deleteBackward];\n        }\n    }\n    else {\n        [self.textInput deleteBackward];\n    }\n}\n\n- (void)functionButtonAction:(id)sender {\n    if (!self.textInput) {\n        return;\n    }\n\n    if ([self.delegate respondsToSelector:@selector(numberPad:functionButtonAction:textInput:)]) {\n        [self.delegate numberPad:self functionButtonAction:sender textInput:self.textInput];\n    }\n}\n\n#pragma mark - Clear button long press\n\n- (void)longPressGestureRecognizerAction:(UILongPressGestureRecognizer *)gestureRecognizer {\n    if (gestureRecognizer.state == UIGestureRecognizerStateBegan) {\n        _clearButtonLongPressGesture = YES;\n        [self clearButtonActionLongPress];\n    }\n    else if (gestureRecognizer.state == UIGestureRecognizerStateEnded) {\n        _clearButtonLongPressGesture = NO;\n    }\n}\n\n- (void)clearButtonActionLongPress {\n    if (_clearButtonLongPressGesture) {\n        if ([self.textInput hasText]) {\n            [[UIDevice currentDevice] playInputClick];\n\n            [self clearButtonAction];\n            [self performSelector:@selector(clearButtonActionLongPress) withObject:nil afterDelay:0.1]; // delay like in iOS keyboard\n        }\n        else {\n            _clearButtonLongPressGesture = NO;\n        }\n    }\n}\n\n#pragma mark - UIInputViewAudioFeedback\n\n- (BOOL)enableInputClicksWhenVisible {\n    return YES;\n}\n\n#pragma mark - Additions\n\n+ (NSRange)selectedRange:(id<UITextInput>)textInput {\n    UITextRange *textRange = [textInput selectedTextRange];\n\n    NSInteger startOffset = [textInput offsetFromPosition:textInput.beginningOfDocument toPosition:textRange.start];\n    NSInteger endOffset = [textInput offsetFromPosition:textInput.beginningOfDocument toPosition:textRange.end];\n\n    return NSMakeRange(startOffset, endOffset - startOffset);\n}\n\n#pragma mark - Button fabric\n- (APNumberButton *)numberButton:(int)number {\n    APNumberButton *b = [APNumberButton buttonWithBackgroundColor:[self.styleClass numberButtonBackgroundColor]\n                                                 highlightedColor:[self.styleClass numberButtonHighlightedColor]];\n    [b setTitleColor:[self.styleClass numberButtonTextColor] forState:UIControlStateNormal];\n    b.titleLabel.font = [self.styleClass numberButtonFont];\n    [b setTitle:[NSString stringWithFormat:@\"%d\", number] forState:UIControlStateNormal];\n    return b;\n}\n\n- (APNumberButton *)functionButton {\n    APNumberButton *b = [APNumberButton buttonWithBackgroundColor:[self.styleClass functionButtonBackgroundColor]\n                                                 highlightedColor:[self.styleClass functionButtonHighlightedColor]];\n    b.exclusiveTouch = YES;\n    return b;\n}\n\n@end\n"
  },
  {
    "path": "APNumberPad/Sources/APNumberPadDefaultStyle.h",
    "content": "//\n//  APNumberPadDefaultStyle.h\n//  APNumberPad\n//\n//  Created by Andrew Podkovyrin on 16/05/14.\n//  Copyright (c) 2014 Podkovyrin. All rights reserved.\n//\n\n#import \"APNumberPadStyle.h\"\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface APNumberPadDefaultStyle : NSObject <APNumberPadStyle>\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "APNumberPad/Sources/APNumberPadDefaultStyle.m",
    "content": "//\n//  APNumberPadDefaultStyle.m\n//  APNumberPad\n//\n//  Created by Andrew Podkovyrin on 16/05/14.\n//  Copyright (c) 2014 Podkovyrin. All rights reserved.\n//\n\n#import \"APNumberPadDefaultStyle.h\"\n#import \"NSBundle+APNumberPad.h\"\n\nstatic inline UIColor *APNP_RGBa(int r, int g, int b, CGFloat alpha) {\n    return [UIColor colorWithRed:r / 255.0\n                           green:g / 255.0\n                            blue:b / 255.0\n                           alpha:alpha];\n}\n\n@implementation APNumberPadDefaultStyle\n\n#pragma mark - Pad\n\n+ (CGRect)numberPadFrame {\n    return CGRectMake(0.0, 0.0, 320.0, 216.0);\n}\n\n+ (CGFloat)separator {\n    return [UIScreen mainScreen].scale == 2.0 ? 0.5 : 1.0;\n}\n\n+ (UIColor *)numberPadBackgroundColor {\n    return APNP_RGBa(183, 186, 191, 1.0);\n}\n\n+ (UIColor *)safeAreaSpaceColor {\n    return [UIColor clearColor];\n}\n\n#pragma mark - Number button\n\n+ (UIFont *)numberButtonFont {\n    if (@available(iOS 8.2, *)) {\n        return [UIFont systemFontOfSize:28.0 weight:UIFontWeightLight];\n    } else {\n        return [UIFont systemFontOfSize:28.0];\n    }\n}\n\n+ (UIColor *)numberButtonTextColor {\n    return [UIColor blackColor];\n}\n\n+ (UIColor *)numberButtonBackgroundColor {\n    return APNP_RGBa(252, 252, 252, 1.0);\n}\n\n+ (UIColor *)numberButtonHighlightedColor {\n    return APNP_RGBa(188, 192, 198, 1.0);\n}\n\n#pragma mark - Function button\n\n+ (UIFont *)functionButtonFont {\n    if (@available(iOS 8.2, *)) {\n        return [UIFont systemFontOfSize:28.0 weight:UIFontWeightLight];\n    } else {\n        return [UIFont systemFontOfSize:28.0];\n    }\n}\n\n+ (UIColor *)functionButtonTextColor {\n    return [UIColor blackColor];\n}\n\n+ (UIColor *)functionButtonBackgroundColor {\n    return APNP_RGBa(188, 192, 198, 1.0);\n}\n\n+ (UIColor *)functionButtonHighlightedColor {\n    return APNP_RGBa(252, 252, 252, 1.0);\n}\n\n+ (UIImage *)clearFunctionButtonImage {\n    return [UIImage imageNamed:@\"apnumberpad_backspace_icon.png\" inBundle:[NSBundle ap_numberPadResourceBundle] compatibleWithTraitCollection:nil];\n}\n\n+ (UIImage *)clearFunctionButtonImageHighlighted {\n    return [UIImage imageNamed:@\"apnumberpad_backspace_icon.png\" inBundle:[NSBundle ap_numberPadResourceBundle] compatibleWithTraitCollection:nil];\n}\n\n@end\n"
  },
  {
    "path": "APNumberPad/Sources/APNumberPadStyle.h",
    "content": "//\n//  APNumberPadStyle.h\n//\n//  Created by Andrew Podkovyrin on 21/07/14.\n//  Copyright (c) 2014 Andrew Podkovyrin. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\n@protocol APNumberPadStyle <NSObject>\n\n+ (CGRect)numberPadFrame;\n+ (CGFloat)separator;\n+ (UIColor *)numberPadBackgroundColor;\n+ (UIColor *)safeAreaSpaceColor;\n\n+ (UIFont *)numberButtonFont;\n+ (UIColor *)numberButtonBackgroundColor;\n+ (UIColor *)numberButtonHighlightedColor;\n+ (UIColor *)numberButtonTextColor;\n\n+ (UIFont *)functionButtonFont;\n+ (UIColor *)functionButtonBackgroundColor;\n+ (UIColor *)functionButtonHighlightedColor;\n+ (UIColor *)functionButtonTextColor;\n+ (UIImage *)clearFunctionButtonImage;\n+ (UIImage *)clearFunctionButtonImageHighlighted;\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "APNumberPad/Sources/NSBundle+APNumberPad.h",
    "content": "//\n//  NSBundle+APNumberPad.h\n//  APNumberPad\n//\n//  Created by Kian Lim on 8/9/16.\n//  Copyright © 2016 Andrew Podkovyrin. All rights reserved.\n//\n\n#import <Foundation/Foundation.h>\n\nNS_ASSUME_NONNULL_BEGIN\n\n@interface NSBundle (APNumberPad)\n\n+ (instancetype)ap_numberPadResourceBundle;\n\n@end\n\nNS_ASSUME_NONNULL_END\n"
  },
  {
    "path": "APNumberPad/Sources/NSBundle+APNumberPad.m",
    "content": "//\n//  NSBundle+APNumberPad.m\n//  APNumberPad\n//\n//  Created by Kian Lim on 8/9/16.\n//  Copyright © 2016 Andrew Podkovyrin. All rights reserved.\n//\n//  Category credits to Chris Dzombak https://github.com/NYTimes/NYTPhotoViewer\n\n#import \"NSBundle+APNumberPad.h\"\n#import \"APNumberPad.h\"\n\n@implementation NSBundle (APNumberPad)\n\n+ (instancetype)ap_numberPadResourceBundle {\n#if SWIFT_PACKAGE\n    return SWIFTPM_MODULE_BUNDLE;\n#else\n    static NSBundle *resourceBundle = nil;\n    static dispatch_once_t onceToken;\n    dispatch_once(&onceToken, ^{\n        resourceBundle = [NSBundle bundleForClass:[APNumberPad class]];\n    });\n\n    return resourceBundle;\n#endif\n}\n\n@end\n"
  },
  {
    "path": "APNumberPad.podspec",
    "content": "Pod::Spec.new do |s|\n  s.name             = 'APNumberPad'\n  s.version          = '1.3.4'\n  s.summary          = 'Full clone of iOS number keyboard with customizable function button'\n\n  s.description      = <<-DESC\nCustom keyboard for iOS allows you to create a keyboard inputView\nthat looks and feels just like the iPhone keyboard\nwith UIKeyboardTypeNumberPad as keyboardType.\nAlso APNumberPad provides customizable left-function button.\n                       DESC\n\n  s.homepage         = 'https://github.com/podkovyrin/APNumberPad'\n  s.license          = { :type => 'MIT', :file => 'LICENSE' }\n  s.author           = { 'Andrew Podkovyrin' => 'podkovyrin@gmail.com' }\n  s.source           = { :git => 'https://github.com/podkovyrin/APNumberPad.git', :tag => s.version.to_s }\n  s.social_media_url = 'https://twitter.com/podkovyr'\n\n  # s.ios.deployment_target = '9.0'\n  s.ios.deployment_target = '15.0'\n\n  s.source_files = 'APNumberPad/**/*.{h,m}'\n  s.public_header_files = 'APNumberPad/*.h'\n  s.resources = 'APNumberPad/Assets/*.png'\n\n  s.frameworks = 'UIKit'\nend\n"
  },
  {
    "path": "Example/APNumberPad/APAppDelegate.h",
    "content": "//\n//  APAppDelegate.h\n//  APNumberPad\n//\n//  Created by Andrew Podkovyrin on 01/06/2017.\n//  Copyright (c) 2017 Andrew Podkovyrin. All rights reserved.\n//\n\n@import UIKit;\n\n@interface APAppDelegate : UIResponder <UIApplicationDelegate>\n\n@property (strong, nonatomic) UIWindow *window;\n\n@end\n"
  },
  {
    "path": "Example/APNumberPad/APAppDelegate.m",
    "content": "//\n//  APAppDelegate.m\n//  APNumberPad\n//\n//  Created by Andrew Podkovyrin on 01/06/2017.\n//  Copyright (c) 2017 Andrew Podkovyrin. All rights reserved.\n//\n\n#import \"APNumberPadExampleViewController.h\"\n\n#import \"APAppDelegate.h\"\n\n@implementation APAppDelegate\n\n- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {\n    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];\n    self.window.rootViewController = [[APNumberPadExampleViewController alloc] init];\n    self.window.backgroundColor = [UIColor whiteColor];\n    [self.window makeKeyAndVisible];\n\n    return YES;\n}\n\n- (void)applicationWillResignActive:(UIApplication *)application {\n    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.\n    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.\n}\n\n- (void)applicationDidEnterBackground:(UIApplication *)application {\n    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.\n    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.\n}\n\n- (void)applicationWillEnterForeground:(UIApplication *)application {\n    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.\n}\n\n- (void)applicationDidBecomeActive:(UIApplication *)application {\n    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.\n}\n\n- (void)applicationWillTerminate:(UIApplication *)application {\n    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.\n}\n\n@end\n"
  },
  {
    "path": "Example/APNumberPad/APNumberPad-Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleDisplayName</key>\n\t<string>${PRODUCT_NAME}</string>\n\t<key>CFBundleExecutable</key>\n\t<string>${EXECUTABLE_NAME}</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>${PRODUCT_NAME}</string>\n\t<key>CFBundlePackageType</key>\n\t<string>APPL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1.0</string>\n\t<key>LSRequiresIPhoneOS</key>\n\t<true/>\n\t<key>UILaunchStoryboardName</key>\n\t<string>Launch Screen</string>\n\t<key>UIRequiredDeviceCapabilities</key>\n\t<array>\n\t\t<string>armv7</string>\n\t</array>\n\t<key>UISupportedInterfaceOrientations</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n\t<key>UISupportedInterfaceOrientations~ipad</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationPortraitUpsideDown</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/APNumberPad/APNumberPad-Prefix.pch",
    "content": "//\n//  Prefix header\n//\n//  The contents of this file are implicitly included at the beginning of every source file.\n//\n\n#import <Availability.h>\n\n#ifndef __IPHONE_5_0\n#warning \"This project uses features only available in iOS SDK 5.0 and later.\"\n#endif\n\n#ifdef __OBJC__\n    @import UIKit;\n    @import Foundation;\n#endif\n"
  },
  {
    "path": "Example/APNumberPad/APNumberPadExampleViewController.h",
    "content": "//\n//  APNumberPadExampleViewController.h\n//\n//  Created by Andrew Podkovyrin on 16/05/14.\n//  Copyright (c) 2014 Andrew Podkovyrin. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@interface APNumberPadExampleViewController : UIViewController\n\n@end\n"
  },
  {
    "path": "Example/APNumberPad/APNumberPadExampleViewController.m",
    "content": "//\n//  APNumberPadExampleViewController.m\n//\n//  Created by Andrew Podkovyrin on 16/05/14.\n//  Copyright (c) 2014 Andrew Podkovyrin. All rights reserved.\n//\n\n#import <APNumberPad/APNumberPad.h>\n\n#import \"APBluePadStyle.h\"\n#import \"APDarkPadStyle.h\"\n\n#import \"APNumberPadExampleViewController.h\"\n\n@interface APNumberPadExampleViewController () <APNumberPadDelegate>\n\n@property (strong, readwrite, nonatomic) UITextField *textField;\n@property (strong, readwrite, nonatomic) UITextField *styledTextField;\n\n@end\n\n@implementation APNumberPadExampleViewController\n\n- (void)loadView {\n    [super loadView];\n\n    [self.view addSubview:self.textField];\n    [self.view addSubview:self.styledTextField];\n}\n\n- (void)viewWillLayoutSubviews {\n    [super viewWillLayoutSubviews];\n\n    self.textField.frame = CGRectMake(10.0, 50.0, CGRectGetWidth(self.view.bounds) - 10.0 * 2, 30.0);\n    self.styledTextField.frame = CGRectOffset(self.textField.frame, 0, 52.0);\n}\n\n- (UITextField *)textField {\n    if (!_textField) {\n        _textField = [[UITextField alloc] initWithFrame:CGRectZero];\n        _textField.borderStyle = UITextBorderStyleRoundedRect;\n        _textField.inputView = ({\n            APNumberPad *numberPad = [APNumberPad numberPadWithDelegate:self];\n\n            [numberPad.leftFunctionButton setTitle:@\"B\" forState:UIControlStateNormal];\n            numberPad.leftFunctionButton.titleLabel.adjustsFontSizeToFitWidth = YES;\n            numberPad;\n        });\n    }\n    return _textField;\n}\n\n- (UITextField *)styledTextField {\n\n    if (!_styledTextField) {\n        _styledTextField = [[UITextField alloc] initWithFrame:CGRectZero];\n        _styledTextField.borderStyle = UITextBorderStyleRoundedRect;\n        _styledTextField.inputView = ({\n            APNumberPad *numberPad = [APNumberPad numberPadWithDelegate:self numberPadStyleClass:[APDarkPadStyle class]];\n\n            [numberPad.leftFunctionButton setTitle:@\"Change Style\" forState:UIControlStateNormal];\n            numberPad.leftFunctionButton.titleLabel.adjustsFontSizeToFitWidth = YES;\n            numberPad;\n        });\n    }\n\n    return _styledTextField;\n}\n\n\n#pragma mark - APNumberPadDelegate\n\n- (void)numberPad:(APNumberPad *)numberPad functionButtonAction:(UIButton *)functionButton textInput:(UIResponder<UITextInput> *)textInput {\n    if ([textInput isEqual:self.textField]) {\n        [functionButton setTitle:[functionButton.currentTitle stringByAppendingString:@\"z\"] forState:UIControlStateNormal];\n        [textInput insertText:@\"#\"];\n    }\n    else {\n        Class currentSyle = [numberPad styleClass];\n\n        Class nextStyle = currentSyle == [APDarkPadStyle class] ? [APBluePadStyle class] : [APDarkPadStyle class];\n        self.styledTextField.inputView = ({\n            APNumberPad *numberPad = [APNumberPad numberPadWithDelegate:self numberPadStyleClass:nextStyle];\n\n            [numberPad.leftFunctionButton setTitle:@\"Change Style\" forState:UIControlStateNormal];\n            numberPad.leftFunctionButton.titleLabel.adjustsFontSizeToFitWidth = YES;\n            numberPad;\n        });\n\n        // Trick for update the inputview\n        //\n        [self.styledTextField resignFirstResponder];\n        [self.styledTextField becomeFirstResponder];\n    }\n}\n\n@end\n"
  },
  {
    "path": "Example/APNumberPad/DemoStyles/APBluePadStyle.h",
    "content": "//\n//  APBluePadStyle.h\n//  APNumberPad\n//\n//  Created by VANGELI ONTIVEROS on 15/07/14.\n//  Copyright (c) 2014 Andrew Podkovyrin. All rights reserved.\n//\n\n#import <APNumberPad/APNumberPadDefaultStyle.h>\n\n@interface APBluePadStyle : APNumberPadDefaultStyle\n\n@end\n"
  },
  {
    "path": "Example/APNumberPad/DemoStyles/APBluePadStyle.m",
    "content": "//\n//  APBluePadStyle.m\n//  APNumberPad\n//\n//  Created by VANGELI ONTIVEROS on 15/07/14.\n//  Copyright (c) 2014 Andrew Podkovyrin. All rights reserved.\n//\n\n#import \"APBluePadStyle.h\"\n\n@implementation APBluePadStyle\n\n#pragma mark - Pad\n\n+ (UIColor *)numberPadBackgroundColor {\n    return [UIColor colorWithRed:0.124 green:0.551 blue:0.796 alpha:1.0];\n}\n\n#pragma mark - Number button\n\n+ (UIFont *)numberButtonFont {\n    return [UIFont fontWithName:@\"STHeitiTC-Light\" size:28.0];\n}\n\n+ (UIColor *)numberButtonTextColor {\n    return [UIColor whiteColor];\n}\n\n+ (UIColor *)numberButtonBackgroundColor {\n    return [UIColor colorWithRed:38 / 255.0 green:169 / 255.0 blue:242 / 255.0 alpha:0.8];\n}\n\n+ (UIColor *)numberButtonHighlightedColor {\n    return [UIColor colorWithRed:0.686 green:0.832 blue:0.994 alpha:1.0];\n}\n\n#pragma mark - Function button\n\n+ (UIFont *)functionButtonFont {\n    return [UIFont fontWithName:@\"STHeitiTC-Light\" size:28.0];\n}\n\n+ (UIColor *)functionButtonTextColor {\n    return [UIColor blackColor];\n}\n\n+ (UIColor *)functionButtonBackgroundColor {\n    return [UIColor colorWithRed:153 / 255.0 green:218 / 255.0 blue:255 / 255.0 alpha:0.8];\n}\n\n+ (UIColor *)functionButtonHighlightedColor {\n    return [UIColor colorWithRed:221 / 255.0 green:241 / 255.0 blue:254 / 255.0 alpha:1.0];\n}\n\n@end\n"
  },
  {
    "path": "Example/APNumberPad/DemoStyles/APDarkPadStyle.h",
    "content": "//\n//  APDarkPadStyle.h\n//  APNumberPad\n//\n//  Created by VANGELI ONTIVEROS on 14/07/14.\n//  Copyright (c) 2014 Andrew Podkovyrin. All rights reserved.\n//\n\n#import <APNumberPad/APNumberPadDefaultStyle.h>\n\n@interface APDarkPadStyle : APNumberPadDefaultStyle\n\n@end\n"
  },
  {
    "path": "Example/APNumberPad/DemoStyles/APDarkPadStyle.m",
    "content": "//\n//  APDarkPadStyle.m\n//  APNumberPad\n//\n//  Created by VANGELI ONTIVEROS on 14/07/14.\n//  Copyright (c) 2014 Andrew Podkovyrin. All rights reserved.\n//\n\n#import \"APDarkPadStyle.h\"\n\n@implementation APDarkPadStyle\n\n#pragma mark - Number button\n\n+ (UIFont *)numberButtonFont {\n    return [UIFont fontWithName:@\"STHeitiTC-Light\" size:28.0];\n}\n\n+ (UIColor *)numberButtonTextColor {\n    return [[UIColor whiteColor] colorWithAlphaComponent:0.8];\n}\n\n+ (UIColor *)numberButtonBackgroundColor {\n    return [UIColor colorWithRed:108 / 255.0 green:122 / 255.0 blue:137 / 255.0 alpha:0.4];\n}\n\n+ (UIColor *)numberButtonHighlightedColor {\n    return [UIColor colorWithRed:189 / 255.0 green:195 / 255.0 blue:199 / 255.0 alpha:1.0];\n}\n\n#pragma mark - Function button\n\n+ (UIFont *)functionButtonFont {\n    return [UIFont fontWithName:@\"STHeitiTC-Light\" size:28.0];\n}\n\n+ (UIColor *)functionButtonTextColor {\n    return [UIColor blackColor];\n}\n\n+ (UIColor *)functionButtonBackgroundColor {\n    return [UIColor colorWithRed:218 / 255.0 green:223 / 255.0 blue:225 / 255.0 alpha:0.8];\n}\n\n+ (UIColor *)functionButtonHighlightedColor {\n    return [UIColor colorWithRed:238 / 255.0 green:238 / 255.0 blue:238 / 255.0 alpha:1.0];\n}\n\n@end\n"
  },
  {
    "path": "Example/APNumberPad/Images.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"76x76\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"76x76\",\n      \"scale\" : \"2x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}\n"
  },
  {
    "path": "Example/APNumberPad/Images.xcassets/LaunchImage.launchimage/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"orientation\" : \"portrait\",\n      \"idiom\" : \"iphone\",\n      \"extent\" : \"full-screen\",\n      \"minimum-system-version\" : \"7.0\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"orientation\" : \"portrait\",\n      \"idiom\" : \"iphone\",\n      \"subtype\" : \"retina4\",\n      \"extent\" : \"full-screen\",\n      \"minimum-system-version\" : \"7.0\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"orientation\" : \"portrait\",\n      \"idiom\" : \"ipad\",\n      \"extent\" : \"full-screen\",\n      \"minimum-system-version\" : \"7.0\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"orientation\" : \"landscape\",\n      \"idiom\" : \"ipad\",\n      \"extent\" : \"full-screen\",\n      \"minimum-system-version\" : \"7.0\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"orientation\" : \"portrait\",\n      \"idiom\" : \"ipad\",\n      \"extent\" : \"full-screen\",\n      \"minimum-system-version\" : \"7.0\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"orientation\" : \"landscape\",\n      \"idiom\" : \"ipad\",\n      \"extent\" : \"full-screen\",\n      \"minimum-system-version\" : \"7.0\",\n      \"scale\" : \"2x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}\n"
  },
  {
    "path": "Example/APNumberPad/Launch Screen.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"13142\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\" useSafeAreas=\"YES\" colorMatched=\"YES\" initialViewController=\"01J-lp-oVM\">\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"12042\"/>\n        <capability name=\"Constraints with non-1.0 multipliers\" minToolsVersion=\"5.1\"/>\n        <capability name=\"Safe area layout guides\" minToolsVersion=\"9.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--View Controller-->\n        <scene sceneID=\"EHf-IW-A2E\">\n            <objects>\n                <viewController id=\"01J-lp-oVM\" sceneMemberID=\"viewController\">\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"Ze5-6b-2t3\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"667\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Copyright © 2018 Andrew Podkovyrin. All rights reserved.\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"9\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"obG-Y5-kRd\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"626.5\" width=\"375\" height=\"20.5\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <nil key=\"highlightedColor\"/>\n                            </label>\n                            <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"APNumberPad_Example\" textAlignment=\"center\" lineBreakMode=\"middleTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"18\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"GJd-Yh-RWb\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"202\" width=\"375\" height=\"43\"/>\n                                <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"36\"/>\n                                <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <nil key=\"highlightedColor\"/>\n                            </label>\n                        </subviews>\n                        <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                        <constraints>\n                            <constraint firstItem=\"Bcu-3y-fUS\" firstAttribute=\"centerX\" secondItem=\"obG-Y5-kRd\" secondAttribute=\"centerX\" id=\"5cz-MP-9tL\"/>\n                            <constraint firstItem=\"Bcu-3y-fUS\" firstAttribute=\"centerX\" secondItem=\"GJd-Yh-RWb\" secondAttribute=\"centerX\" id=\"Q3B-4B-g5h\"/>\n                            <constraint firstItem=\"obG-Y5-kRd\" firstAttribute=\"leading\" secondItem=\"Bcu-3y-fUS\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"SfN-ll-jLj\"/>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"obG-Y5-kRd\" secondAttribute=\"bottom\" constant=\"20\" id=\"Y44-ml-fuU\"/>\n                            <constraint firstItem=\"GJd-Yh-RWb\" firstAttribute=\"centerY\" secondItem=\"Ze5-6b-2t3\" secondAttribute=\"bottom\" multiplier=\"1/3\" constant=\"1\" id=\"moa-c2-u7t\"/>\n                            <constraint firstItem=\"GJd-Yh-RWb\" firstAttribute=\"leading\" secondItem=\"Bcu-3y-fUS\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"x7j-FC-K8j\"/>\n                        </constraints>\n                        <viewLayoutGuide key=\"safeArea\" id=\"Bcu-3y-fUS\"/>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"iYj-Kq-Ea1\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"53\" y=\"375\"/>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "Example/APNumberPad/en.lproj/InfoPlist.strings",
    "content": "/* Localized versions of Info.plist keys */\n\n"
  },
  {
    "path": "Example/APNumberPad/main.m",
    "content": "//\n//  main.m\n//  APNumberPad\n//\n//  Created by Andrew Podkovyrin on 01/06/2017.\n//  Copyright (c) 2017 Andrew Podkovyrin. All rights reserved.\n//\n\n@import UIKit;\n#import \"APAppDelegate.h\"\n\nint main(int argc, char * argv[])\n{\n    @autoreleasepool {\n        return UIApplicationMain(argc, argv, nil, NSStringFromClass([APAppDelegate class]));\n    }\n}\n"
  },
  {
    "path": "Example/APNumberPad.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t2A46C27D20AA32F4007037FA /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2A46C27C20AA32F4007037FA /* Launch Screen.storyboard */; };\n\t\t2AD73C361E1F96BD00BBEAD9 /* APNumberPadExampleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AD73C351E1F96BD00BBEAD9 /* APNumberPadExampleViewController.m */; };\n\t\t2AD73C3C1E1F974C00BBEAD9 /* APBluePadStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AD73C391E1F974C00BBEAD9 /* APBluePadStyle.m */; };\n\t\t2AD73C3D1E1F974C00BBEAD9 /* APDarkPadStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AD73C3B1E1F974C00BBEAD9 /* APDarkPadStyle.m */; };\n\t\t6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };\n\t\t6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; };\n\t\t6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };\n\t\t6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; };\n\t\t6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; };\n\t\t6003F59E195388D20070C39A /* APAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* APAppDelegate.m */; };\n\t\t6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; };\n\t\t6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; };\n\t\t6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };\n\t\t6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };\n\t\t6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; };\n\t\t6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; };\n\t\t65DA352750BE5C4B221CB3B2 /* Pods_APNumberPad_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E873BB31BEC97A8D0CDE12A5 /* Pods_APNumberPad_Example.framework */; };\n\t\tF4FC8B7716FC3A479C7D9ACB /* Pods_APNumberPad_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 204AD2D36D919FF4B97CDC6E /* Pods_APNumberPad_Tests.framework */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 6003F582195388D10070C39A /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 6003F589195388D20070C39A;\n\t\t\tremoteInfo = APNumberPad;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t204AD2D36D919FF4B97CDC6E /* Pods_APNumberPad_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_APNumberPad_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t27155A07BD982FDD725F0A4A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = \"<group>\"; };\n\t\t2A46C27C20AA32F4007037FA /* Launch Screen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = \"Launch Screen.storyboard\"; sourceTree = \"<group>\"; };\n\t\t2AD73C341E1F96BD00BBEAD9 /* APNumberPadExampleViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APNumberPadExampleViewController.h; sourceTree = \"<group>\"; };\n\t\t2AD73C351E1F96BD00BBEAD9 /* APNumberPadExampleViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APNumberPadExampleViewController.m; sourceTree = \"<group>\"; };\n\t\t2AD73C381E1F974C00BBEAD9 /* APBluePadStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APBluePadStyle.h; sourceTree = \"<group>\"; };\n\t\t2AD73C391E1F974C00BBEAD9 /* APBluePadStyle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APBluePadStyle.m; sourceTree = \"<group>\"; };\n\t\t2AD73C3A1E1F974C00BBEAD9 /* APDarkPadStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APDarkPadStyle.h; sourceTree = \"<group>\"; };\n\t\t2AD73C3B1E1F974C00BBEAD9 /* APDarkPadStyle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APDarkPadStyle.m; sourceTree = \"<group>\"; };\n\t\t4C71A3E3B3C793921720E32F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = \"<group>\"; };\n\t\t6003F58A195388D20070C39A /* APNumberPad_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = APNumberPad_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };\n\t\t6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };\n\t\t6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };\n\t\t6003F595195388D20070C39A /* APNumberPad-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = \"APNumberPad-Info.plist\"; sourceTree = \"<group>\"; };\n\t\t6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = \"<group>\"; };\n\t\t6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = \"<group>\"; };\n\t\t6003F59B195388D20070C39A /* APNumberPad-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = \"APNumberPad-Prefix.pch\"; sourceTree = \"<group>\"; };\n\t\t6003F59C195388D20070C39A /* APAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = APAppDelegate.h; sourceTree = \"<group>\"; };\n\t\t6003F59D195388D20070C39A /* APAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = APAppDelegate.m; sourceTree = \"<group>\"; };\n\t\t6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = \"<group>\"; };\n\t\t6003F5AE195388D20070C39A /* APNumberPad_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = APNumberPad_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };\n\t\t6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = \"Tests-Info.plist\"; sourceTree = \"<group>\"; };\n\t\t6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = \"<group>\"; };\n\t\t6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = \"<group>\"; };\n\t\t606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = \"Tests-Prefix.pch\"; sourceTree = \"<group>\"; };\n\t\t6F7563D5EFFF0E99478BC91D /* Pods-APNumberPad_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-APNumberPad_Example.debug.xcconfig\"; path = \"Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tAB503A1836438ED3460FBD4A /* Pods-APNumberPad_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-APNumberPad_Tests.release.xcconfig\"; path = \"Target Support Files/Pods-APNumberPad_Tests/Pods-APNumberPad_Tests.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tBFDDCF438CC16F408EB28021 /* Pods-APNumberPad_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-APNumberPad_Tests.debug.xcconfig\"; path = \"Target Support Files/Pods-APNumberPad_Tests/Pods-APNumberPad_Tests.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tD69960327226B50CFABECECE /* APNumberPad.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = APNumberPad.podspec; path = ../APNumberPad.podspec; sourceTree = \"<group>\"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };\n\t\tDB22A9AF2A86EE473B0D355D /* Pods-APNumberPad_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = \"Pods-APNumberPad_Example.release.xcconfig\"; path = \"Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tE873BB31BEC97A8D0CDE12A5 /* Pods_APNumberPad_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_APNumberPad_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t6003F587195388D20070C39A /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */,\n\t\t\t\t6003F592195388D20070C39A /* UIKit.framework in Frameworks */,\n\t\t\t\t6003F58E195388D20070C39A /* Foundation.framework in Frameworks */,\n\t\t\t\t65DA352750BE5C4B221CB3B2 /* Pods_APNumberPad_Example.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t6003F5AB195388D20070C39A /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */,\n\t\t\t\t6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */,\n\t\t\t\t6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */,\n\t\t\t\tF4FC8B7716FC3A479C7D9ACB /* Pods_APNumberPad_Tests.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t2AD73C371E1F974C00BBEAD9 /* DemoStyles */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t2AD73C381E1F974C00BBEAD9 /* APBluePadStyle.h */,\n\t\t\t\t2AD73C391E1F974C00BBEAD9 /* APBluePadStyle.m */,\n\t\t\t\t2AD73C3A1E1F974C00BBEAD9 /* APDarkPadStyle.h */,\n\t\t\t\t2AD73C3B1E1F974C00BBEAD9 /* APDarkPadStyle.m */,\n\t\t\t);\n\t\t\tpath = DemoStyles;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t6003F581195388D10070C39A = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t60FF7A9C1954A5C5007DD14C /* Podspec Metadata */,\n\t\t\t\t6003F593195388D20070C39A /* Example for APNumberPad */,\n\t\t\t\t6003F5B5195388D20070C39A /* Tests */,\n\t\t\t\t6003F58C195388D20070C39A /* Frameworks */,\n\t\t\t\t6003F58B195388D20070C39A /* Products */,\n\t\t\t\tF66183C90AEB3468EB551D69 /* Pods */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t6003F58B195388D20070C39A /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t6003F58A195388D20070C39A /* APNumberPad_Example.app */,\n\t\t\t\t6003F5AE195388D20070C39A /* APNumberPad_Tests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t6003F58C195388D20070C39A /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t6003F58D195388D20070C39A /* Foundation.framework */,\n\t\t\t\t6003F58F195388D20070C39A /* CoreGraphics.framework */,\n\t\t\t\t6003F591195388D20070C39A /* UIKit.framework */,\n\t\t\t\t6003F5AF195388D20070C39A /* XCTest.framework */,\n\t\t\t\tE873BB31BEC97A8D0CDE12A5 /* Pods_APNumberPad_Example.framework */,\n\t\t\t\t204AD2D36D919FF4B97CDC6E /* Pods_APNumberPad_Tests.framework */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t6003F593195388D20070C39A /* Example for APNumberPad */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t2AD73C371E1F974C00BBEAD9 /* DemoStyles */,\n\t\t\t\t2AD73C341E1F96BD00BBEAD9 /* APNumberPadExampleViewController.h */,\n\t\t\t\t2AD73C351E1F96BD00BBEAD9 /* APNumberPadExampleViewController.m */,\n\t\t\t\t6003F59C195388D20070C39A /* APAppDelegate.h */,\n\t\t\t\t6003F59D195388D20070C39A /* APAppDelegate.m */,\n\t\t\t\t6003F5A8195388D20070C39A /* Images.xcassets */,\n\t\t\t\t6003F594195388D20070C39A /* Supporting Files */,\n\t\t\t);\n\t\t\tname = \"Example for APNumberPad\";\n\t\t\tpath = APNumberPad;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t6003F594195388D20070C39A /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t6003F595195388D20070C39A /* APNumberPad-Info.plist */,\n\t\t\t\t6003F596195388D20070C39A /* InfoPlist.strings */,\n\t\t\t\t6003F599195388D20070C39A /* main.m */,\n\t\t\t\t6003F59B195388D20070C39A /* APNumberPad-Prefix.pch */,\n\t\t\t\t2A46C27C20AA32F4007037FA /* Launch Screen.storyboard */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t6003F5B5195388D20070C39A /* Tests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t6003F5BB195388D20070C39A /* Tests.m */,\n\t\t\t\t6003F5B6195388D20070C39A /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = Tests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t6003F5B6195388D20070C39A /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t6003F5B7195388D20070C39A /* Tests-Info.plist */,\n\t\t\t\t6003F5B8195388D20070C39A /* InfoPlist.strings */,\n\t\t\t\t606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tD69960327226B50CFABECECE /* APNumberPad.podspec */,\n\t\t\t\t27155A07BD982FDD725F0A4A /* README.md */,\n\t\t\t\t4C71A3E3B3C793921720E32F /* LICENSE */,\n\t\t\t);\n\t\t\tname = \"Podspec Metadata\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tF66183C90AEB3468EB551D69 /* Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t6F7563D5EFFF0E99478BC91D /* Pods-APNumberPad_Example.debug.xcconfig */,\n\t\t\t\tDB22A9AF2A86EE473B0D355D /* Pods-APNumberPad_Example.release.xcconfig */,\n\t\t\t\tBFDDCF438CC16F408EB28021 /* Pods-APNumberPad_Tests.debug.xcconfig */,\n\t\t\t\tAB503A1836438ED3460FBD4A /* Pods-APNumberPad_Tests.release.xcconfig */,\n\t\t\t);\n\t\t\tpath = Pods;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\t6003F589195388D20070C39A /* APNumberPad_Example */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget \"APNumberPad_Example\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tAD7B03B25990D878F6FDF6BA /* [CP] Check Pods Manifest.lock */,\n\t\t\t\t6003F586195388D20070C39A /* Sources */,\n\t\t\t\t6003F587195388D20070C39A /* Frameworks */,\n\t\t\t\t6003F588195388D20070C39A /* Resources */,\n\t\t\t\t43B098149FBE121524ACAADD /* [CP] Embed Pods Frameworks */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = APNumberPad_Example;\n\t\t\tproductName = APNumberPad;\n\t\t\tproductReference = 6003F58A195388D20070C39A /* APNumberPad_Example.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n\t\t6003F5AD195388D20070C39A /* APNumberPad_Tests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget \"APNumberPad_Tests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tB24CF841FE8E672348C85BAD /* [CP] Check Pods Manifest.lock */,\n\t\t\t\t6003F5AA195388D20070C39A /* Sources */,\n\t\t\t\t6003F5AB195388D20070C39A /* Frameworks */,\n\t\t\t\t6003F5AC195388D20070C39A /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t6003F5B4195388D20070C39A /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = APNumberPad_Tests;\n\t\t\tproductName = APNumberPadTests;\n\t\t\tproductReference = 6003F5AE195388D20070C39A /* APNumberPad_Tests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\t6003F582195388D10070C39A /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tCLASSPREFIX = AP;\n\t\t\t\tLastUpgradeCheck = 1200;\n\t\t\t\tORGANIZATIONNAME = \"Andrew Podkovyrin\";\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t6003F5AD195388D20070C39A = {\n\t\t\t\t\t\tTestTargetID = 6003F589195388D20070C39A;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject \"APNumberPad\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = en;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = 6003F581195388D10070C39A;\n\t\t\tproductRefGroup = 6003F58B195388D20070C39A /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t6003F589195388D20070C39A /* APNumberPad_Example */,\n\t\t\t\t6003F5AD195388D20070C39A /* APNumberPad_Tests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t6003F588195388D20070C39A /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t2A46C27D20AA32F4007037FA /* Launch Screen.storyboard in Resources */,\n\t\t\t\t6003F5A9195388D20070C39A /* Images.xcassets in Resources */,\n\t\t\t\t6003F598195388D20070C39A /* InfoPlist.strings in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t6003F5AC195388D20070C39A /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXShellScriptBuildPhase section */\n\t\t43B098149FBE121524ACAADD /* [CP] Embed Pods Frameworks */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t\"${PODS_ROOT}/Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example-frameworks.sh\",\n\t\t\t\t\"${BUILT_PRODUCTS_DIR}/APNumberPad/APNumberPad.framework\",\n\t\t\t);\n\t\t\tname = \"[CP] Embed Pods Frameworks\";\n\t\t\toutputPaths = (\n\t\t\t\t\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/APNumberPad.framework\",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"\\\"${PODS_ROOT}/Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example-frameworks.sh\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\tAD7B03B25990D878F6FDF6BA /* [CP] Check Pods Manifest.lock */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputFileListPaths = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t\"${PODS_PODFILE_DIR_PATH}/Podfile.lock\",\n\t\t\t\t\"${PODS_ROOT}/Manifest.lock\",\n\t\t\t);\n\t\t\tname = \"[CP] Check Pods Manifest.lock\";\n\t\t\toutputFileListPaths = (\n\t\t\t);\n\t\t\toutputPaths = (\n\t\t\t\t\"$(DERIVED_FILE_DIR)/Pods-APNumberPad_Example-checkManifestLockResult.txt\",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"diff \\\"${PODS_PODFILE_DIR_PATH}/Podfile.lock\\\" \\\"${PODS_ROOT}/Manifest.lock\\\" > /dev/null\\nif [ $? != 0 ] ; then\\n    # print error to STDERR\\n    echo \\\"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\\\" >&2\\n    exit 1\\nfi\\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\\necho \\\"SUCCESS\\\" > \\\"${SCRIPT_OUTPUT_FILE_0}\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n\t\tB24CF841FE8E672348C85BAD /* [CP] Check Pods Manifest.lock */ = {\n\t\t\tisa = PBXShellScriptBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\tinputFileListPaths = (\n\t\t\t);\n\t\t\tinputPaths = (\n\t\t\t\t\"${PODS_PODFILE_DIR_PATH}/Podfile.lock\",\n\t\t\t\t\"${PODS_ROOT}/Manifest.lock\",\n\t\t\t);\n\t\t\tname = \"[CP] Check Pods Manifest.lock\";\n\t\t\toutputFileListPaths = (\n\t\t\t);\n\t\t\toutputPaths = (\n\t\t\t\t\"$(DERIVED_FILE_DIR)/Pods-APNumberPad_Tests-checkManifestLockResult.txt\",\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t\tshellPath = /bin/sh;\n\t\t\tshellScript = \"diff \\\"${PODS_PODFILE_DIR_PATH}/Podfile.lock\\\" \\\"${PODS_ROOT}/Manifest.lock\\\" > /dev/null\\nif [ $? != 0 ] ; then\\n    # print error to STDERR\\n    echo \\\"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\\\" >&2\\n    exit 1\\nfi\\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\\necho \\\"SUCCESS\\\" > \\\"${SCRIPT_OUTPUT_FILE_0}\\\"\\n\";\n\t\t\tshowEnvVarsInLog = 0;\n\t\t};\n/* End PBXShellScriptBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t6003F586195388D20070C39A /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t2AD73C3D1E1F974C00BBEAD9 /* APDarkPadStyle.m in Sources */,\n\t\t\t\t6003F59E195388D20070C39A /* APAppDelegate.m in Sources */,\n\t\t\t\t6003F59A195388D20070C39A /* main.m in Sources */,\n\t\t\t\t2AD73C3C1E1F974C00BBEAD9 /* APBluePadStyle.m in Sources */,\n\t\t\t\t2AD73C361E1F96BD00BBEAD9 /* APNumberPadExampleViewController.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t6003F5AA195388D20070C39A /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t6003F5BC195388D20070C39A /* Tests.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\t6003F5B4195388D20070C39A /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 6003F589195388D20070C39A /* APNumberPad_Example */;\n\t\t\ttargetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\t6003F596195388D20070C39A /* InfoPlist.strings */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t6003F597195388D20070C39A /* en */,\n\t\t\t);\n\t\t\tname = InfoPlist.strings;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t6003F5B8195388D20070C39A /* InfoPlist.strings */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t6003F5B9195388D20070C39A /* en */,\n\t\t\t);\n\t\t\tname = InfoPlist.strings;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\t6003F5BD195388D20070C39A /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_SYMBOLS_PRIVATE_EXTERN = NO;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t6003F5BE195388D20070C39A /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = YES;\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t6003F5C0195388D20070C39A /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 6F7563D5EFFF0E99478BC91D /* Pods-APNumberPad_Example.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tGCC_PRECOMPILE_PREFIX_HEADER = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"APNumberPad/APNumberPad-Prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"APNumberPad/APNumberPad-Info.plist\";\n\t\t\t\tMODULE_NAME = ExampleApp;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tWRAPPER_EXTENSION = app;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t6003F5C1195388D20070C39A /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = DB22A9AF2A86EE473B0D355D /* Pods-APNumberPad_Example.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tGCC_PRECOMPILE_PREFIX_HEADER = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"APNumberPad/APNumberPad-Prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"APNumberPad/APNumberPad-Info.plist\";\n\t\t\t\tMODULE_NAME = ExampleApp;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tWRAPPER_EXTENSION = app;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t6003F5C3195388D20070C39A /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = BFDDCF438CC16F408EB28021 /* Pods-APNumberPad_Tests.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(SDKROOT)/Developer/Library/Frameworks\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"$(DEVELOPER_FRAMEWORKS_DIR)\",\n\t\t\t\t);\n\t\t\t\tGCC_PRECOMPILE_PREFIX_HEADER = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Tests/Tests-Prefix.pch\";\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = \"Tests/Tests-Info.plist\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/APNumberPad_Example.app/APNumberPad_Example\";\n\t\t\t\tWRAPPER_EXTENSION = xctest;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t6003F5C4195388D20070C39A /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = AB503A1836438ED3460FBD4A /* Pods-APNumberPad_Tests.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(SDKROOT)/Developer/Library/Frameworks\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"$(DEVELOPER_FRAMEWORKS_DIR)\",\n\t\t\t\t);\n\t\t\t\tGCC_PRECOMPILE_PREFIX_HEADER = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"Tests/Tests-Prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Tests/Tests-Info.plist\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/APNumberPad_Example.app/APNumberPad_Example\";\n\t\t\t\tWRAPPER_EXTENSION = xctest;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t6003F585195388D10070C39A /* Build configuration list for PBXProject \"APNumberPad\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t6003F5BD195388D20070C39A /* Debug */,\n\t\t\t\t6003F5BE195388D20070C39A /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget \"APNumberPad_Example\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t6003F5C0195388D20070C39A /* Debug */,\n\t\t\t\t6003F5C1195388D20070C39A /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget \"APNumberPad_Tests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t6003F5C3195388D20070C39A /* Debug */,\n\t\t\t\t6003F5C4195388D20070C39A /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = 6003F582195388D10070C39A /* Project object */;\n}\n"
  },
  {
    "path": "Example/APNumberPad.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:APNumberPad.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "Example/APNumberPad.xcodeproj/xcshareddata/xcschemes/APNumberPad-Example.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"1200\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"6003F589195388D20070C39A\"\n               BuildableName = \"APNumberPad_Example.app\"\n               BlueprintName = \"APNumberPad_Example\"\n               ReferencedContainer = \"container:APNumberPad.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"6003F589195388D20070C39A\"\n            BuildableName = \"APNumberPad_Example.app\"\n            BlueprintName = \"APNumberPad_Example\"\n            ReferencedContainer = \"container:APNumberPad.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <Testables>\n         <TestableReference\n            skipped = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"6003F5AD195388D20070C39A\"\n               BuildableName = \"APNumberPad_Tests.xctest\"\n               BlueprintName = \"APNumberPad_Tests\"\n               ReferencedContainer = \"container:APNumberPad.xcodeproj\">\n            </BuildableReference>\n         </TestableReference>\n      </Testables>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"6003F589195388D20070C39A\"\n            BuildableName = \"APNumberPad_Example.app\"\n            BlueprintName = \"APNumberPad_Example\"\n            ReferencedContainer = \"container:APNumberPad.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"6003F589195388D20070C39A\"\n            BuildableName = \"APNumberPad_Example.app\"\n            BlueprintName = \"APNumberPad_Example\"\n            ReferencedContainer = \"container:APNumberPad.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Example/APNumberPad.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"group:APNumberPad.xcodeproj\">\n   </FileRef>\n   <FileRef\n      location = \"group:Pods/Pods.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "Example/APNumberPad.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>IDEDidComputeMac32BitWarning</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Podfile",
    "content": "source 'https://github.com/CocoaPods/Specs.git'\n\nplatform :ios, '9.0'\n\nuse_frameworks!\n\ntarget 'APNumberPad_Example' do\n  pod 'APNumberPad', :path => '../'\n\n  target 'APNumberPad_Tests' do\n    inherit! :search_paths\n  end\nend\n"
  },
  {
    "path": "Example/Pods/Local Podspecs/APNumberPad.podspec.json",
    "content": "{\n  \"name\": \"APNumberPad\",\n  \"version\": \"1.3.3\",\n  \"summary\": \"Full clone of iOS number keyboard with customizable function button\",\n  \"description\": \"Custom keyboard for iOS allows you to create a keyboard inputView\\nthat looks and feels just like the iPhone keyboard\\nwith UIKeyboardTypeNumberPad as keyboardType.\\nAlso APNumberPad provides customizable left-function button.\",\n  \"homepage\": \"https://github.com/podkovyrin/APNumberPad\",\n  \"license\": {\n    \"type\": \"MIT\",\n    \"file\": \"LICENSE\"\n  },\n  \"authors\": {\n    \"Andrew Podkovyrin\": \"podkovyrin@gmail.com\"\n  },\n  \"source\": {\n    \"git\": \"https://github.com/podkovyrin/APNumberPad.git\",\n    \"tag\": \"1.3.3\"\n  },\n  \"social_media_url\": \"https://twitter.com/podkovyr\",\n  \"platforms\": {\n    \"ios\": \"9.0\"\n  },\n  \"source_files\": \"APNumberPad/Sources/*.{h,m}\",\n  \"public_header_files\": \"APNumberPad/Sources/*.h\",\n  \"resource_bundles\": {\n    \"APNumberPad\": [\n      \"APNumberPad/Assets/*.png\"\n    ]\n  },\n  \"frameworks\": \"UIKit\"\n}\n"
  },
  {
    "path": "Example/Pods/Pods.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t0CEED3BDC20A5D6A392D1C94186C9172 /* APNumberPad-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A1FF59A9D32B6538E4AA19BF83945C27 /* APNumberPad-dummy.m */; };\n\t\t1A3AD57443C0B97A8FA2D237AD8FAAD3 /* APNumberPad.h in Headers */ = {isa = PBXBuildFile; fileRef = 890D2F3101606BF6DF9E93AEA08DB365 /* APNumberPad.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t1CE2B1884705717E6B7D30F9B33E4E8C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EAB6F611E86A4758835A715E4B4184F6 /* Foundation.framework */; };\n\t\t21B01F488204FE27CC49A21D3C693641 /* Pods-APNumberPad_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BB1128A067BA918614B46CAE56F44A99 /* Pods-APNumberPad_Tests-dummy.m */; };\n\t\t239CF13EB08398AD8282307AC709FA41 /* Pods-APNumberPad_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FC6D84BCA176E102F981743A3A624E7 /* Pods-APNumberPad_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t317A3DBFE6C4FC40B3ED5A3B441DBFDA /* APNumberPadDefaultStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E9327533EF789B67BBE0FD8A2586F6C /* APNumberPadDefaultStyle.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t4A15D480D5BAB347F81602A940047F88 /* APNumberPad.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 8942155D9259260A8F3086896D7BF505 /* APNumberPad.bundle */; };\n\t\t5BD567ABBA37D72E9B391017860E5739 /* APNumberButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F8639A1D49B3E5B02D08756D7853B76 /* APNumberButton.m */; };\n\t\t639429D3D3FD96EC7295F7BA90F68C82 /* APNumberPad-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D1ABBA2B2EF4847662DDF7F739DD8D6 /* APNumberPad-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t6B71ADA674F05541F11DCF42556604F1 /* apnumberpad_backspace_icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 740CCB891AC9D68477052D7A673C5520 /* apnumberpad_backspace_icon.png */; };\n\t\t7C3B4128F8C39608462FDE8EA32FF5FA /* APNumberButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 301DEC85F681903055A7046E897C981D /* APNumberButton.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t8C4658DB887026B41FBB76ADF2521475 /* Pods-APNumberPad_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1863229C719940FBE34413E0214B9ECA /* Pods-APNumberPad_Example-dummy.m */; };\n\t\t9BE2405997DD516DE8AF3DFFC1349C43 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EAB6F611E86A4758835A715E4B4184F6 /* Foundation.framework */; };\n\t\tA887B0DBA8F00320030C598CFBEDB5E8 /* APNumberPad.m in Sources */ = {isa = PBXBuildFile; fileRef = B796A90B7914CBD6B9D704424E127E1A /* APNumberPad.m */; };\n\t\tAAE60156429E9FBBF74B4DC5707116EE /* APNumberPadDefaultStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 58497101BD1081290273FC27ACF596AC /* APNumberPadDefaultStyle.m */; };\n\t\tCBEF5689C2BFE8499D401980E5DF195E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D245E0514AAC1A2B9A6D5EA2F383E90F /* UIKit.framework */; };\n\t\tCCE79EAC7024ECA0B998CCEDD0694E37 /* apnumberpad_backspace_icon@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = FB5618F19FDAF3FB21F0710933001967 /* apnumberpad_backspace_icon@3x.png */; };\n\t\tE6F356297E36AF22C37D9A5A3A4D2A2B /* apnumberpad_backspace_icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8F5E91F21119F3EBD6806B41C75BA9F0 /* apnumberpad_backspace_icon@2x.png */; };\n\t\tF0EBC1466923C2FE60E4709E1B2CAAD9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EAB6F611E86A4758835A715E4B4184F6 /* Foundation.framework */; };\n\t\tF33070EC9F721DD7247B12A0D7C46DAB /* APNumberPadStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A60144ADD1E0F673B5F880BB2EDC2D3 /* APNumberPadStyle.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tF415B61EE48619AC23D72EE2351FE02E /* NSBundle+APNumberPad.m in Sources */ = {isa = PBXBuildFile; fileRef = F2C43D981CB4BF19D45134A7C62D7374 /* NSBundle+APNumberPad.m */; };\n\t\tF41C79083B58DE91B2ACD182C0AC5CF1 /* Pods-APNumberPad_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E3CB2EA5BF8631014010CDD22255141 /* Pods-APNumberPad_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tFE017E676D4000CB8E45A861007D0C40 /* NSBundle+APNumberPad.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F278905B128CE17BD2BC7801DF95FEE /* NSBundle+APNumberPad.h */; settings = {ATTRIBUTES = (Public, ); }; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t4FDC3F6463F8B92547A7E753FA28E68F /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = B4A8343EF43F22A4948A42C0632F0D89;\n\t\t\tremoteInfo = \"Pods-APNumberPad_Example\";\n\t\t};\n\t\t7B1EF546E0C7E434E3D8A803A837F671 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 0315D731DDEDEDC66417054CE919FCB0;\n\t\t\tremoteInfo = APNumberPad;\n\t\t};\n\t\tB8C8404C061F7AD1C0371EBA49435D00 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 613112B675091A5BCA27E00EF544823E;\n\t\t\tremoteInfo = \"APNumberPad-APNumberPad\";\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t0A60144ADD1E0F673B5F880BB2EDC2D3 /* APNumberPadStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APNumberPadStyle.h; path = APNumberPad/Sources/APNumberPadStyle.h; sourceTree = \"<group>\"; };\n\t\t0DC629E6B032C493FC7B5B174969D5CD /* Pods-APNumberPad_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-APNumberPad_Tests.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t10895FA5B50B0D852CE1E8E5335A9EED /* ResourceBundle-APNumberPad-APNumberPad-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"ResourceBundle-APNumberPad-APNumberPad-Info.plist\"; sourceTree = \"<group>\"; };\n\t\t1531A8B34BAC65F47F6BB5CB31200B75 /* APNumberPad.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = APNumberPad.modulemap; sourceTree = \"<group>\"; };\n\t\t1658199046C7A5C1781F2E06BCF1C48E /* Pods-APNumberPad_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-APNumberPad_Tests.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\t1863229C719940FBE34413E0214B9ECA /* Pods-APNumberPad_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Pods-APNumberPad_Example-dummy.m\"; sourceTree = \"<group>\"; };\n\t\t1D5E565DC74334DB9A405D482464730F /* Pods_APNumberPad_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_APNumberPad_Tests.framework; path = \"Pods-APNumberPad_Tests.framework\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t2F8639A1D49B3E5B02D08756D7853B76 /* APNumberButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APNumberButton.m; path = APNumberPad/Sources/APNumberButton.m; sourceTree = \"<group>\"; };\n\t\t2F965888FDBA63ED55A2F45323E4DEE7 /* Pods-APNumberPad_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-APNumberPad_Tests-Info.plist\"; sourceTree = \"<group>\"; };\n\t\t301DEC85F681903055A7046E897C981D /* APNumberButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APNumberButton.h; path = APNumberPad/Sources/APNumberButton.h; sourceTree = \"<group>\"; };\n\t\t3530234B4D808B9A06B7D0A06C43C8B2 /* Pods-APNumberPad_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = \"Pods-APNumberPad_Example-frameworks.sh\"; sourceTree = \"<group>\"; };\n\t\t58497101BD1081290273FC27ACF596AC /* APNumberPadDefaultStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APNumberPadDefaultStyle.m; path = APNumberPad/Sources/APNumberPadDefaultStyle.m; sourceTree = \"<group>\"; };\n\t\t5D1ABBA2B2EF4847662DDF7F739DD8D6 /* APNumberPad-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"APNumberPad-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\t5E3CB2EA5BF8631014010CDD22255141 /* Pods-APNumberPad_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Pods-APNumberPad_Example-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\t6AF2EAC6E457B589D646E5402E5DCFD1 /* APNumberPad-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"APNumberPad-Info.plist\"; sourceTree = \"<group>\"; };\n\t\t6E9327533EF789B67BBE0FD8A2586F6C /* APNumberPadDefaultStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APNumberPadDefaultStyle.h; path = APNumberPad/Sources/APNumberPadDefaultStyle.h; sourceTree = \"<group>\"; };\n\t\t6F278905B128CE17BD2BC7801DF95FEE /* NSBundle+APNumberPad.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = \"NSBundle+APNumberPad.h\"; path = \"APNumberPad/Sources/NSBundle+APNumberPad.h\"; sourceTree = \"<group>\"; };\n\t\t6FC6D84BCA176E102F981743A3A624E7 /* Pods-APNumberPad_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"Pods-APNumberPad_Tests-umbrella.h\"; sourceTree = \"<group>\"; };\n\t\t729F3E75D67D80FE25A0E9643FCBAF3A /* APNumberPad.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = APNumberPad.debug.xcconfig; sourceTree = \"<group>\"; };\n\t\t73882447D56D52B7905896D6E56A5E34 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = \"<group>\"; };\n\t\t740CCB891AC9D68477052D7A673C5520 /* apnumberpad_backspace_icon.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = apnumberpad_backspace_icon.png; path = APNumberPad/Assets/apnumberpad_backspace_icon.png; sourceTree = \"<group>\"; };\n\t\t87452D8A7B32891186F9A25EA65D07E6 /* APNumberPad-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = \"APNumberPad-prefix.pch\"; sourceTree = \"<group>\"; };\n\t\t886C71E4B802CC74A941C816ADC6D34D /* APNumberPad.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = APNumberPad.release.xcconfig; sourceTree = \"<group>\"; };\n\t\t890D2F3101606BF6DF9E93AEA08DB365 /* APNumberPad.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = APNumberPad.h; path = APNumberPad/Sources/APNumberPad.h; sourceTree = \"<group>\"; };\n\t\t8942155D9259260A8F3086896D7BF505 /* APNumberPad.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = APNumberPad.bundle; path = \"APNumberPad-APNumberPad.bundle\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t8AFFB5FF0AA578275F609CF04954DD8C /* Pods-APNumberPad_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = \"Pods-APNumberPad_Tests-acknowledgements.markdown\"; sourceTree = \"<group>\"; };\n\t\t8F5E91F21119F3EBD6806B41C75BA9F0 /* apnumberpad_backspace_icon@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = \"apnumberpad_backspace_icon@2x.png\"; path = \"APNumberPad/Assets/apnumberpad_backspace_icon@2x.png\"; sourceTree = \"<group>\"; };\n\t\t8F8790432D81CBD8C1F9A61A6523931C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = \"<group>\"; };\n\t\t9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };\n\t\tA1FF59A9D32B6538E4AA19BF83945C27 /* APNumberPad-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"APNumberPad-dummy.m\"; sourceTree = \"<group>\"; };\n\t\tB796A90B7914CBD6B9D704424E127E1A /* APNumberPad.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = APNumberPad.m; path = APNumberPad/Sources/APNumberPad.m; sourceTree = \"<group>\"; };\n\t\tBB1128A067BA918614B46CAE56F44A99 /* Pods-APNumberPad_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = \"Pods-APNumberPad_Tests-dummy.m\"; sourceTree = \"<group>\"; };\n\t\tBEDD984F08B0C2C262F66D2B38ABF917 /* Pods-APNumberPad_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = \"Pods-APNumberPad_Example.modulemap\"; sourceTree = \"<group>\"; };\n\t\tC8B4172C1D4F719653E26B7071FC0B5F /* Pods-APNumberPad_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = \"Pods-APNumberPad_Example-acknowledgements.markdown\"; sourceTree = \"<group>\"; };\n\t\tCFDD37CCA9631F2839A018729ECE5542 /* Pods-APNumberPad_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-APNumberPad_Example.release.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tD1481587DE7F986B9E71A6E71A5117DD /* Pods-APNumberPad_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = \"Pods-APNumberPad_Example.debug.xcconfig\"; sourceTree = \"<group>\"; };\n\t\tD1ED7BA5DE8C4C2A0EF22A2D05E8A1D1 /* Pods_APNumberPad_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_APNumberPad_Example.framework; path = \"Pods-APNumberPad_Example.framework\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tD245E0514AAC1A2B9A6D5EA2F383E90F /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };\n\t\tDDF6A84024D374847E4F2146E3AB82DD /* Pods-APNumberPad_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = \"Pods-APNumberPad_Tests.modulemap\"; sourceTree = \"<group>\"; };\n\t\tE5E77BB382AE2DA743E17AF911434DC9 /* Pods-APNumberPad_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-APNumberPad_Tests-acknowledgements.plist\"; sourceTree = \"<group>\"; };\n\t\tE9C312226239E7A153515ABEE0453341 /* APNumberPad.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = APNumberPad.podspec; sourceTree = \"<group>\"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };\n\t\tEAB6F611E86A4758835A715E4B4184F6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };\n\t\tEB3010956E41A7E570E0322286935F17 /* Pods-APNumberPad_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-APNumberPad_Example-acknowledgements.plist\"; sourceTree = \"<group>\"; };\n\t\tEEC01F5E181F9C6685980D3FF09AEF80 /* Pods-APNumberPad_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = \"Pods-APNumberPad_Example-Info.plist\"; sourceTree = \"<group>\"; };\n\t\tF2C43D981CB4BF19D45134A7C62D7374 /* NSBundle+APNumberPad.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = \"NSBundle+APNumberPad.m\"; path = \"APNumberPad/Sources/NSBundle+APNumberPad.m\"; sourceTree = \"<group>\"; };\n\t\tF78C619869EFCF16EF14CF28CD9B86C7 /* APNumberPad.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = APNumberPad.framework; path = APNumberPad.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tFB5618F19FDAF3FB21F0710933001967 /* apnumberpad_backspace_icon@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = \"apnumberpad_backspace_icon@3x.png\"; path = \"APNumberPad/Assets/apnumberpad_backspace_icon@3x.png\"; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t810622289796AF48B2D8DB2B287C94E5 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t1CE2B1884705717E6B7D30F9B33E4E8C /* Foundation.framework in Frameworks */,\n\t\t\t\tCBEF5689C2BFE8499D401980E5DF195E /* UIKit.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t8725AEF3F052C6761F949B2CA9F98B4D /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tF0EBC1466923C2FE60E4709E1B2CAAD9 /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tD180E1732023D575B37C7E7F6C89D284 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tDC06F5AC9F5E1BFA61539168A50E2404 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t9BE2405997DD516DE8AF3DFFC1349C43 /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t15761F377E08D498D2FACB8A0E41DEC5 /* Pods-APNumberPad_Example */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tBEDD984F08B0C2C262F66D2B38ABF917 /* Pods-APNumberPad_Example.modulemap */,\n\t\t\t\tC8B4172C1D4F719653E26B7071FC0B5F /* Pods-APNumberPad_Example-acknowledgements.markdown */,\n\t\t\t\tEB3010956E41A7E570E0322286935F17 /* Pods-APNumberPad_Example-acknowledgements.plist */,\n\t\t\t\t1863229C719940FBE34413E0214B9ECA /* Pods-APNumberPad_Example-dummy.m */,\n\t\t\t\t3530234B4D808B9A06B7D0A06C43C8B2 /* Pods-APNumberPad_Example-frameworks.sh */,\n\t\t\t\tEEC01F5E181F9C6685980D3FF09AEF80 /* Pods-APNumberPad_Example-Info.plist */,\n\t\t\t\t5E3CB2EA5BF8631014010CDD22255141 /* Pods-APNumberPad_Example-umbrella.h */,\n\t\t\t\tD1481587DE7F986B9E71A6E71A5117DD /* Pods-APNumberPad_Example.debug.xcconfig */,\n\t\t\t\tCFDD37CCA9631F2839A018729ECE5542 /* Pods-APNumberPad_Example.release.xcconfig */,\n\t\t\t);\n\t\t\tname = \"Pods-APNumberPad_Example\";\n\t\t\tpath = \"Target Support Files/Pods-APNumberPad_Example\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t59DA5C1F72E1D5BABC43EACBA672C3BA /* iOS */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t3E78CAF922C3DE1DFC179394EE53FC85 /* Development Pods */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tBD65875385C0B73E3332AEAECCBF3883 /* APNumberPad */,\n\t\t\t);\n\t\t\tname = \"Development Pods\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t59DA5C1F72E1D5BABC43EACBA672C3BA /* iOS */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tEAB6F611E86A4758835A715E4B4184F6 /* Foundation.framework */,\n\t\t\t\tD245E0514AAC1A2B9A6D5EA2F383E90F /* UIKit.framework */,\n\t\t\t);\n\t\t\tname = iOS;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t6225991CDDF9EE64E1376EA35337AC3B /* Pods-APNumberPad_Tests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tDDF6A84024D374847E4F2146E3AB82DD /* Pods-APNumberPad_Tests.modulemap */,\n\t\t\t\t8AFFB5FF0AA578275F609CF04954DD8C /* Pods-APNumberPad_Tests-acknowledgements.markdown */,\n\t\t\t\tE5E77BB382AE2DA743E17AF911434DC9 /* Pods-APNumberPad_Tests-acknowledgements.plist */,\n\t\t\t\tBB1128A067BA918614B46CAE56F44A99 /* Pods-APNumberPad_Tests-dummy.m */,\n\t\t\t\t2F965888FDBA63ED55A2F45323E4DEE7 /* Pods-APNumberPad_Tests-Info.plist */,\n\t\t\t\t6FC6D84BCA176E102F981743A3A624E7 /* Pods-APNumberPad_Tests-umbrella.h */,\n\t\t\t\t0DC629E6B032C493FC7B5B174969D5CD /* Pods-APNumberPad_Tests.debug.xcconfig */,\n\t\t\t\t1658199046C7A5C1781F2E06BCF1C48E /* Pods-APNumberPad_Tests.release.xcconfig */,\n\t\t\t);\n\t\t\tname = \"Pods-APNumberPad_Tests\";\n\t\t\tpath = \"Target Support Files/Pods-APNumberPad_Tests\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t65805369375ADBF08BD9DE5813DF1D6B /* Pod */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tE9C312226239E7A153515ABEE0453341 /* APNumberPad.podspec */,\n\t\t\t\t73882447D56D52B7905896D6E56A5E34 /* LICENSE */,\n\t\t\t\t8F8790432D81CBD8C1F9A61A6523931C /* README.md */,\n\t\t\t);\n\t\t\tname = Pod;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t814203E00E1022231647186FCEFAFCDC /* Targets Support Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t15761F377E08D498D2FACB8A0E41DEC5 /* Pods-APNumberPad_Example */,\n\t\t\t\t6225991CDDF9EE64E1376EA35337AC3B /* Pods-APNumberPad_Tests */,\n\t\t\t);\n\t\t\tname = \"Targets Support Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t974CCF3F8909B525C1A1477C95CB33CA /* Support Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t1531A8B34BAC65F47F6BB5CB31200B75 /* APNumberPad.modulemap */,\n\t\t\t\tA1FF59A9D32B6538E4AA19BF83945C27 /* APNumberPad-dummy.m */,\n\t\t\t\t6AF2EAC6E457B589D646E5402E5DCFD1 /* APNumberPad-Info.plist */,\n\t\t\t\t87452D8A7B32891186F9A25EA65D07E6 /* APNumberPad-prefix.pch */,\n\t\t\t\t5D1ABBA2B2EF4847662DDF7F739DD8D6 /* APNumberPad-umbrella.h */,\n\t\t\t\t729F3E75D67D80FE25A0E9643FCBAF3A /* APNumberPad.debug.xcconfig */,\n\t\t\t\t886C71E4B802CC74A941C816ADC6D34D /* APNumberPad.release.xcconfig */,\n\t\t\t\t10895FA5B50B0D852CE1E8E5335A9EED /* ResourceBundle-APNumberPad-APNumberPad-Info.plist */,\n\t\t\t);\n\t\t\tname = \"Support Files\";\n\t\t\tpath = \"Example/Pods/Target Support Files/APNumberPad\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tA222162BCB4983F4C25CB2FD64B53DCF /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t8942155D9259260A8F3086896D7BF505 /* APNumberPad.bundle */,\n\t\t\t\tF78C619869EFCF16EF14CF28CD9B86C7 /* APNumberPad.framework */,\n\t\t\t\tD1ED7BA5DE8C4C2A0EF22A2D05E8A1D1 /* Pods_APNumberPad_Example.framework */,\n\t\t\t\t1D5E565DC74334DB9A405D482464730F /* Pods_APNumberPad_Tests.framework */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tBD65875385C0B73E3332AEAECCBF3883 /* APNumberPad */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t301DEC85F681903055A7046E897C981D /* APNumberButton.h */,\n\t\t\t\t2F8639A1D49B3E5B02D08756D7853B76 /* APNumberButton.m */,\n\t\t\t\t890D2F3101606BF6DF9E93AEA08DB365 /* APNumberPad.h */,\n\t\t\t\tB796A90B7914CBD6B9D704424E127E1A /* APNumberPad.m */,\n\t\t\t\t740CCB891AC9D68477052D7A673C5520 /* apnumberpad_backspace_icon.png */,\n\t\t\t\t8F5E91F21119F3EBD6806B41C75BA9F0 /* apnumberpad_backspace_icon@2x.png */,\n\t\t\t\tFB5618F19FDAF3FB21F0710933001967 /* apnumberpad_backspace_icon@3x.png */,\n\t\t\t\t6E9327533EF789B67BBE0FD8A2586F6C /* APNumberPadDefaultStyle.h */,\n\t\t\t\t58497101BD1081290273FC27ACF596AC /* APNumberPadDefaultStyle.m */,\n\t\t\t\t0A60144ADD1E0F673B5F880BB2EDC2D3 /* APNumberPadStyle.h */,\n\t\t\t\t6F278905B128CE17BD2BC7801DF95FEE /* NSBundle+APNumberPad.h */,\n\t\t\t\tF2C43D981CB4BF19D45134A7C62D7374 /* NSBundle+APNumberPad.m */,\n\t\t\t\t65805369375ADBF08BD9DE5813DF1D6B /* Pod */,\n\t\t\t\t974CCF3F8909B525C1A1477C95CB33CA /* Support Files */,\n\t\t\t);\n\t\t\tname = APNumberPad;\n\t\t\tpath = ../..;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tCF1408CF629C7361332E53B88F7BD30C = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,\n\t\t\t\t3E78CAF922C3DE1DFC179394EE53FC85 /* Development Pods */,\n\t\t\t\t1628BF05B4CAFDCC3549A101F5A10A17 /* Frameworks */,\n\t\t\t\tA222162BCB4983F4C25CB2FD64B53DCF /* Products */,\n\t\t\t\t814203E00E1022231647186FCEFAFCDC /* Targets Support Files */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXHeadersBuildPhase section */\n\t\t04C27848D39C6AA4FB47327CB2386EF1 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tF41C79083B58DE91B2ACD182C0AC5CF1 /* Pods-APNumberPad_Example-umbrella.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t4BE475C3FDEB4D6301628E6D47DB0578 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t7C3B4128F8C39608462FDE8EA32FF5FA /* APNumberButton.h in Headers */,\n\t\t\t\t639429D3D3FD96EC7295F7BA90F68C82 /* APNumberPad-umbrella.h in Headers */,\n\t\t\t\t1A3AD57443C0B97A8FA2D237AD8FAAD3 /* APNumberPad.h in Headers */,\n\t\t\t\t317A3DBFE6C4FC40B3ED5A3B441DBFDA /* APNumberPadDefaultStyle.h in Headers */,\n\t\t\t\tF33070EC9F721DD7247B12A0D7C46DAB /* APNumberPadStyle.h in Headers */,\n\t\t\t\tFE017E676D4000CB8E45A861007D0C40 /* NSBundle+APNumberPad.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t694A1152C637D052B7054D63250CABBF /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t239CF13EB08398AD8282307AC709FA41 /* Pods-APNumberPad_Tests-umbrella.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXHeadersBuildPhase section */\n\n/* Begin PBXNativeTarget section */\n\t\t0315D731DDEDEDC66417054CE919FCB0 /* APNumberPad */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 58BF34AB314070DE281CBA92FBF34F48 /* Build configuration list for PBXNativeTarget \"APNumberPad\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t4BE475C3FDEB4D6301628E6D47DB0578 /* Headers */,\n\t\t\t\t0606E3E9182345C95C42D24B22CD3FB8 /* Sources */,\n\t\t\t\t810622289796AF48B2D8DB2B287C94E5 /* Frameworks */,\n\t\t\t\tD5E4ED1CDB10AF468D708BEF1FE2DA00 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t42B3B6C57891DCF44E2D541AE279C52F /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = APNumberPad;\n\t\t\tproductName = APNumberPad;\n\t\t\tproductReference = F78C619869EFCF16EF14CF28CD9B86C7 /* APNumberPad.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t613112B675091A5BCA27E00EF544823E /* APNumberPad-APNumberPad */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 4211A0FF4979CE7C5C38FC3A78A9ED26 /* Build configuration list for PBXNativeTarget \"APNumberPad-APNumberPad\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t77E49C560FB3404D216E4E346CB242BD /* Sources */,\n\t\t\t\tD180E1732023D575B37C7E7F6C89D284 /* Frameworks */,\n\t\t\t\t6216DB8AD9667B244B4DE1101BD7D99E /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = \"APNumberPad-APNumberPad\";\n\t\t\tproductName = \"APNumberPad-APNumberPad\";\n\t\t\tproductReference = 8942155D9259260A8F3086896D7BF505 /* APNumberPad.bundle */;\n\t\t\tproductType = \"com.apple.product-type.bundle\";\n\t\t};\n\t\tB4A8343EF43F22A4948A42C0632F0D89 /* Pods-APNumberPad_Example */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 3A03BF3580820D32911CE6C15FDC1ADF /* Build configuration list for PBXNativeTarget \"Pods-APNumberPad_Example\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t04C27848D39C6AA4FB47327CB2386EF1 /* Headers */,\n\t\t\t\t7FDE5348A7E125C466300B4086DA9063 /* Sources */,\n\t\t\t\tDC06F5AC9F5E1BFA61539168A50E2404 /* Frameworks */,\n\t\t\t\tAF3DE1331548A86858EA4EBA6DC21936 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\tBCB42016EEC27B6A377926357D60AB66 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"Pods-APNumberPad_Example\";\n\t\t\tproductName = \"Pods-APNumberPad_Example\";\n\t\t\tproductReference = D1ED7BA5DE8C4C2A0EF22A2D05E8A1D1 /* Pods_APNumberPad_Example.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\tDC4C6E99A1FFC96958403B7EE6BAAB09 /* Pods-APNumberPad_Tests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = A84CD02A91AAB9507234ACEDA447A302 /* Build configuration list for PBXNativeTarget \"Pods-APNumberPad_Tests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t694A1152C637D052B7054D63250CABBF /* Headers */,\n\t\t\t\t9DB46CCDB3524C5C2C315C4B0CABBC91 /* Sources */,\n\t\t\t\t8725AEF3F052C6761F949B2CA9F98B4D /* Frameworks */,\n\t\t\t\t6A24A117E1698057EA7114A04D5C44AB /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t69EBBF0BF72A3F9BC11A7D5431478E57 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"Pods-APNumberPad_Tests\";\n\t\t\tproductName = \"Pods-APNumberPad_Tests\";\n\t\t\tproductReference = 1D5E565DC74334DB9A405D482464730F /* Pods_APNumberPad_Tests.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\tBFDFE7DC352907FC980B868725387E98 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastSwiftUpdateCheck = 1100;\n\t\t\t\tLastUpgradeCheck = 1100;\n\t\t\t};\n\t\t\tbuildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject \"Pods\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = en;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = CF1408CF629C7361332E53B88F7BD30C;\n\t\t\tproductRefGroup = A222162BCB4983F4C25CB2FD64B53DCF /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t0315D731DDEDEDC66417054CE919FCB0 /* APNumberPad */,\n\t\t\t\t613112B675091A5BCA27E00EF544823E /* APNumberPad-APNumberPad */,\n\t\t\t\tB4A8343EF43F22A4948A42C0632F0D89 /* Pods-APNumberPad_Example */,\n\t\t\t\tDC4C6E99A1FFC96958403B7EE6BAAB09 /* Pods-APNumberPad_Tests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t6216DB8AD9667B244B4DE1101BD7D99E /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t6B71ADA674F05541F11DCF42556604F1 /* apnumberpad_backspace_icon.png in Resources */,\n\t\t\t\tE6F356297E36AF22C37D9A5A3A4D2A2B /* apnumberpad_backspace_icon@2x.png in Resources */,\n\t\t\t\tCCE79EAC7024ECA0B998CCEDD0694E37 /* apnumberpad_backspace_icon@3x.png in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t6A24A117E1698057EA7114A04D5C44AB /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAF3DE1331548A86858EA4EBA6DC21936 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tD5E4ED1CDB10AF468D708BEF1FE2DA00 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t4A15D480D5BAB347F81602A940047F88 /* APNumberPad.bundle in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t0606E3E9182345C95C42D24B22CD3FB8 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t5BD567ABBA37D72E9B391017860E5739 /* APNumberButton.m in Sources */,\n\t\t\t\t0CEED3BDC20A5D6A392D1C94186C9172 /* APNumberPad-dummy.m in Sources */,\n\t\t\t\tA887B0DBA8F00320030C598CFBEDB5E8 /* APNumberPad.m in Sources */,\n\t\t\t\tAAE60156429E9FBBF74B4DC5707116EE /* APNumberPadDefaultStyle.m in Sources */,\n\t\t\t\tF415B61EE48619AC23D72EE2351FE02E /* NSBundle+APNumberPad.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t77E49C560FB3404D216E4E346CB242BD /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t7FDE5348A7E125C466300B4086DA9063 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t8C4658DB887026B41FBB76ADF2521475 /* Pods-APNumberPad_Example-dummy.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t9DB46CCDB3524C5C2C315C4B0CABBC91 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t21B01F488204FE27CC49A21D3C693641 /* Pods-APNumberPad_Tests-dummy.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\t42B3B6C57891DCF44E2D541AE279C52F /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = \"APNumberPad-APNumberPad\";\n\t\t\ttarget = 613112B675091A5BCA27E00EF544823E /* APNumberPad-APNumberPad */;\n\t\t\ttargetProxy = B8C8404C061F7AD1C0371EBA49435D00 /* PBXContainerItemProxy */;\n\t\t};\n\t\t69EBBF0BF72A3F9BC11A7D5431478E57 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = \"Pods-APNumberPad_Example\";\n\t\t\ttarget = B4A8343EF43F22A4948A42C0632F0D89 /* Pods-APNumberPad_Example */;\n\t\t\ttargetProxy = 4FDC3F6463F8B92547A7E753FA28E68F /* PBXContainerItemProxy */;\n\t\t};\n\t\tBCB42016EEC27B6A377926357D60AB66 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\tname = APNumberPad;\n\t\t\ttarget = 0315D731DDEDEDC66417054CE919FCB0 /* APNumberPad */;\n\t\t\ttargetProxy = 7B1EF546E0C7E434E3D8A803A837F671 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin XCBuildConfiguration section */\n\t\t21489FBCE999E397D80BA803786E0999 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 886C71E4B802CC74A941C816ADC6D34D /* APNumberPad.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/APNumberPad/APNumberPad-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/APNumberPad/APNumberPad-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/APNumberPad/APNumberPad.modulemap\";\n\t\t\t\tPRODUCT_MODULE_NAME = APNumberPad;\n\t\t\t\tPRODUCT_NAME = APNumberPad;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = \"$(inherited) \";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t2191FF3BC6973C891EBB538C2C90C8CF /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 729F3E75D67D80FE25A0E9643FCBAF3A /* APNumberPad.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tGCC_PREFIX_HEADER = \"Target Support Files/APNumberPad/APNumberPad-prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/APNumberPad/APNumberPad-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/APNumberPad/APNumberPad.modulemap\";\n\t\t\t\tPRODUCT_MODULE_NAME = APNumberPad;\n\t\t\t\tPRODUCT_NAME = APNumberPad;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = \"$(inherited) \";\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t25AD9454612BF454A1E3DC4CD4FA8C6D /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"POD_CONFIGURATION_DEBUG=1\",\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;\n\t\t\t\tMTL_FAST_MATH = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSTRIP_INSTALLED_PRODUCT = NO;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tSYMROOT = \"${SRCROOT}/../build\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t29BAA148A8FFEB438716E64974D837D3 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = CFDD37CCA9631F2839A018729ECE5542 /* Pods-APNumberPad_Example.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example.modulemap\";\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME:c99extidentifier)\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t4AD4F09DEF097C005B061B1B80DF8A60 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 1658199046C7A5C1781F2E06BCF1C48E /* Pods-APNumberPad_Tests.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-APNumberPad_Tests/Pods-APNumberPad_Tests-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-APNumberPad_Tests/Pods-APNumberPad_Tests.modulemap\";\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME:c99extidentifier)\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t7B73F933CA6D7FA412888DAF890DA497 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 886C71E4B802CC74A941C816ADC6D34D /* APNumberPad.release.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tCONFIGURATION_BUILD_DIR = \"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/APNumberPad\";\n\t\t\t\tIBSC_MODULE = APNumberPad;\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/APNumberPad/ResourceBundle-APNumberPad-APNumberPad-Info.plist\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tPRODUCT_NAME = APNumberPad;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tWRAPPER_EXTENSION = bundle;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t933960B220DFAECDF804CA7CC36189A5 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 729F3E75D67D80FE25A0E9643FCBAF3A /* APNumberPad.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tCONFIGURATION_BUILD_DIR = \"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/APNumberPad\";\n\t\t\t\tIBSC_MODULE = APNumberPad;\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/APNumberPad/ResourceBundle-APNumberPad-APNumberPad-Info.plist\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tPRODUCT_NAME = APNumberPad;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tWRAPPER_EXTENSION = bundle;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tA3AC212A792EE54FC8B25318B8196F0F /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = D1481587DE7F986B9E71A6E71A5117DD /* Pods-APNumberPad_Example.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example.modulemap\";\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME:c99extidentifier)\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tCA547D2C7E9A8A153DC2B27FBE00B112 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"POD_CONFIGURATION_RELEASE=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tMTL_FAST_MATH = YES;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSTRIP_INSTALLED_PRODUCT = NO;\n\t\t\t\tSWIFT_COMPILATION_MODE = wholemodule;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-O\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tSYMROOT = \"${SRCROOT}/../build\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tE2A9BC24A3BBE11460E00ADF4F4B7493 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbaseConfigurationReference = 0DC629E6B032C493FC7B5B174969D5CD /* Pods-APNumberPad_Tests.debug.xcconfig */;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=appletvos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=watchos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tINFOPLIST_FILE = \"Target Support Files/Pods-APNumberPad_Tests/Pods-APNumberPad_Tests-Info.plist\";\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tMACH_O_TYPE = staticlib;\n\t\t\t\tMODULEMAP_FILE = \"Target Support Files/Pods-APNumberPad_Tests/Pods-APNumberPad_Tests.modulemap\";\n\t\t\t\tOTHER_LDFLAGS = \"\";\n\t\t\t\tOTHER_LIBTOOLFLAGS = \"\";\n\t\t\t\tPODS_ROOT = \"$(SRCROOT)\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME:c99extidentifier)\";\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t3A03BF3580820D32911CE6C15FDC1ADF /* Build configuration list for PBXNativeTarget \"Pods-APNumberPad_Example\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tA3AC212A792EE54FC8B25318B8196F0F /* Debug */,\n\t\t\t\t29BAA148A8FFEB438716E64974D837D3 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t4211A0FF4979CE7C5C38FC3A78A9ED26 /* Build configuration list for PBXNativeTarget \"APNumberPad-APNumberPad\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t933960B220DFAECDF804CA7CC36189A5 /* Debug */,\n\t\t\t\t7B73F933CA6D7FA412888DAF890DA497 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject \"Pods\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t25AD9454612BF454A1E3DC4CD4FA8C6D /* Debug */,\n\t\t\t\tCA547D2C7E9A8A153DC2B27FBE00B112 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t58BF34AB314070DE281CBA92FBF34F48 /* Build configuration list for PBXNativeTarget \"APNumberPad\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t2191FF3BC6973C891EBB538C2C90C8CF /* Debug */,\n\t\t\t\t21489FBCE999E397D80BA803786E0999 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tA84CD02A91AAB9507234ACEDA447A302 /* Build configuration list for PBXNativeTarget \"Pods-APNumberPad_Tests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tE2A9BC24A3BBE11460E00ADF4F4B7493 /* Debug */,\n\t\t\t\t4AD4F09DEF097C005B061B1B80DF8A60 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/APNumberPad/APNumberPad-Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.3.3</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/APNumberPad/APNumberPad-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_APNumberPad : NSObject\n@end\n@implementation PodsDummy_APNumberPad\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/APNumberPad/APNumberPad-prefix.pch",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/APNumberPad/APNumberPad-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n#import \"APNumberButton.h\"\n#import \"APNumberPad.h\"\n#import \"APNumberPadDefaultStyle.h\"\n#import \"APNumberPadStyle.h\"\n#import \"NSBundle+APNumberPad.h\"\n\nFOUNDATION_EXPORT double APNumberPadVersionNumber;\nFOUNDATION_EXPORT const unsigned char APNumberPadVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/APNumberPad/APNumberPad.debug.xcconfig",
    "content": "CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO\nCONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/APNumberPad\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nOTHER_LDFLAGS = $(inherited) -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}\nPODS_TARGET_SRCROOT = ${PODS_ROOT}/../..\nPODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates\nPRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\nSKIP_INSTALL = YES\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "Example/Pods/Target Support Files/APNumberPad/APNumberPad.modulemap",
    "content": "framework module APNumberPad {\n  umbrella header \"APNumberPad-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/APNumberPad/APNumberPad.release.xcconfig",
    "content": "CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO\nCONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/APNumberPad\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nOTHER_LDFLAGS = $(inherited) -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_ROOT = ${SRCROOT}\nPODS_TARGET_SRCROOT = ${PODS_ROOT}/../..\nPODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates\nPRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}\nSKIP_INSTALL = YES\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "Example/Pods/Target Support Files/APNumberPad/ResourceBundle-APNumberPad-APNumberPad-Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>BNDL</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.3.3</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>1</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example-Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.0.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example-acknowledgements.markdown",
    "content": "# Acknowledgements\nThis application makes use of the following third party libraries:\n\n## APNumberPad\n\nCopyright (c) 2017 Andrew Podkovyrin <podkovyrin@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\nGenerated by CocoaPods - https://cocoapods.org\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example-acknowledgements.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>PreferenceSpecifiers</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>This application makes use of the following third party libraries:</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Acknowledgements</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Copyright (c) 2017 Andrew Podkovyrin &lt;podkovyrin@gmail.com&gt;\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n</string>\n\t\t\t<key>License</key>\n\t\t\t<string>MIT</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>APNumberPad</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Generated by CocoaPods - https://cocoapods.org</string>\n\t\t\t<key>Title</key>\n\t\t\t<string></string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t</array>\n\t<key>StringsTable</key>\n\t<string>Acknowledgements</string>\n\t<key>Title</key>\n\t<string>Acknowledgements</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_APNumberPad_Example : NSObject\n@end\n@implementation PodsDummy_Pods_APNumberPad_Example\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example-frameworks.sh",
    "content": "#!/bin/sh\nset -e\nset -u\nset -o pipefail\n\nfunction on_error {\n  echo \"$(realpath -mq \"${0}\"):$1: error: Unexpected failure\"\n}\ntrap 'on_error $LINENO' ERR\n\nif [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then\n  # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy\n  # frameworks to, so exit 0 (signalling the script phase was successful).\n  exit 0\nfi\n\necho \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\nmkdir -p \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\nCOCOAPODS_PARALLEL_CODE_SIGN=\"${COCOAPODS_PARALLEL_CODE_SIGN:-false}\"\nSWIFT_STDLIB_PATH=\"${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}\"\nBCSYMBOLMAP_DIR=\"BCSymbolMaps\"\n\n\n# This protects against multiple targets copying the same framework dependency at the same time. The solution\n# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html\nRSYNC_PROTECT_TMP_FILES=(--filter \"P .*.??????\")\n\n# Copies and strips a vendored framework\ninstall_framework()\n{\n  if [ -r \"${BUILT_PRODUCTS_DIR}/$1\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$1\"\n  elif [ -r \"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\" ]; then\n    local source=\"${BUILT_PRODUCTS_DIR}/$(basename \"$1\")\"\n  elif [ -r \"$1\" ]; then\n    local source=\"$1\"\n  fi\n\n  local destination=\"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\n\n  if [ -L \"${source}\" ]; then\n    echo \"Symlinked...\"\n    source=\"$(readlink \"${source}\")\"\n  fi\n\n  if [ -d \"${source}/${BCSYMBOLMAP_DIR}\" ]; then\n    # Locate and install any .bcsymbolmaps if present, and remove them from the .framework before the framework is copied\n    find \"${source}/${BCSYMBOLMAP_DIR}\" -name \"*.bcsymbolmap\"|while read f; do\n      echo \"Installing $f\"\n      install_bcsymbolmap \"$f\" \"$destination\"\n      rm \"$f\"\n    done\n    rmdir \"${source}/${BCSYMBOLMAP_DIR}\"\n  fi\n\n  # Use filter instead of exclude so missing patterns don't throw errors.\n  echo \"rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --links --filter \\\"- CVS/\\\" --filter \\\"- .svn/\\\" --filter \\\"- .git/\\\" --filter \\\"- .hg/\\\" --filter \\\"- Headers\\\" --filter \\\"- PrivateHeaders\\\" --filter \\\"- Modules\\\" \\\"${source}\\\" \\\"${destination}\\\"\"\n  rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"\n\n  local basename\n  basename=\"$(basename -s .framework \"$1\")\"\n  binary=\"${destination}/${basename}.framework/${basename}\"\n\n  if ! [ -r \"$binary\" ]; then\n    binary=\"${destination}/${basename}\"\n  elif [ -L \"${binary}\" ]; then\n    echo \"Destination binary is symlinked...\"\n    dirname=\"$(dirname \"${binary}\")\"\n    binary=\"${dirname}/$(readlink \"${binary}\")\"\n  fi\n\n  # Strip invalid architectures so \"fat\" simulator / device frameworks work on device\n  if [[ \"$(file \"$binary\")\" == *\"dynamically linked shared library\"* ]]; then\n    strip_invalid_archs \"$binary\"\n  fi\n\n  # Resign the code if required by the build settings to avoid unstable apps\n  code_sign_if_enabled \"${destination}/$(basename \"$1\")\"\n\n  # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.\n  if [ \"${XCODE_VERSION_MAJOR}\" -lt 7 ]; then\n    local swift_runtime_libs\n    swift_runtime_libs=$(xcrun otool -LX \"$binary\" | grep --color=never @rpath/libswift | sed -E s/@rpath\\\\/\\(.+dylib\\).*/\\\\1/g | uniq -u)\n    for lib in $swift_runtime_libs; do\n      echo \"rsync -auv \\\"${SWIFT_STDLIB_PATH}/${lib}\\\" \\\"${destination}\\\"\"\n      rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"\n      code_sign_if_enabled \"${destination}/${lib}\"\n    done\n  fi\n}\n# Copies and strips a vendored dSYM\ninstall_dsym() {\n  local source=\"$1\"\n  warn_missing_arch=${2:-true}\n  if [ -r \"$source\" ]; then\n    # Copy the dSYM into the targets temp dir.\n    echo \"rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --filter \\\"- CVS/\\\" --filter \\\"- .svn/\\\" --filter \\\"- .git/\\\" --filter \\\"- .hg/\\\" --filter \\\"- Headers\\\" --filter \\\"- PrivateHeaders\\\" --filter \\\"- Modules\\\" \\\"${source}\\\" \\\"${DERIVED_FILES_DIR}\\\"\"\n    rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"\n\n    local basename\n    basename=\"$(basename -s .dSYM \"$source\")\"\n    binary_name=\"$(ls \"$source/Contents/Resources/DWARF\")\"\n    binary=\"${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}\"\n\n    # Strip invalid architectures from the dSYM.\n    if [[ \"$(file \"$binary\")\" == *\"Mach-O \"*\"dSYM companion\"* ]]; then\n      strip_invalid_archs \"$binary\" \"$warn_missing_arch\"\n    fi\n    if [[ $STRIP_BINARY_RETVAL == 0 ]]; then\n      # Move the stripped file into its final destination.\n      echo \"rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --links --filter \\\"- CVS/\\\" --filter \\\"- .svn/\\\" --filter \\\"- .git/\\\" --filter \\\"- .hg/\\\" --filter \\\"- Headers\\\" --filter \\\"- PrivateHeaders\\\" --filter \\\"- Modules\\\" \\\"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\\\" \\\"${DWARF_DSYM_FOLDER_PATH}\\\"\"\n      rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"\n    else\n      # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing.\n      touch \"${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM\"\n    fi\n  fi\n}\n\n# Used as a return value for each invocation of `strip_invalid_archs` function.\nSTRIP_BINARY_RETVAL=0\n\n# Strip invalid architectures\nstrip_invalid_archs() {\n  binary=\"$1\"\n  warn_missing_arch=${2:-true}\n  # Get architectures for current target binary\n  binary_archs=\"$(lipo -info \"$binary\" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)\"\n  # Intersect them with the architectures we are building for\n  intersected_archs=\"$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\\n' | sort | uniq -d)\"\n  # If there are no archs supported by this binary then warn the user\n  if [[ -z \"$intersected_archs\" ]]; then\n    if [[ \"$warn_missing_arch\" == \"true\" ]]; then\n      echo \"warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS).\"\n    fi\n    STRIP_BINARY_RETVAL=1\n    return\n  fi\n  stripped=\"\"\n  for arch in $binary_archs; do\n    if ! [[ \"${ARCHS}\" == *\"$arch\"* ]]; then\n      # Strip non-valid architectures in-place\n      lipo -remove \"$arch\" -output \"$binary\" \"$binary\"\n      stripped=\"$stripped $arch\"\n    fi\n  done\n  if [[ \"$stripped\" ]]; then\n    echo \"Stripped $binary of architectures:$stripped\"\n  fi\n  STRIP_BINARY_RETVAL=0\n}\n\n# Copies the bcsymbolmap files of a vendored framework\ninstall_bcsymbolmap() {\n    local bcsymbolmap_path=\"$1\"\n    local destination=\"${BUILT_PRODUCTS_DIR}\"\n    echo \"rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${bcsymbolmap_path}\" \"${destination}\"\"\n    rsync --delete -av \"${RSYNC_PROTECT_TMP_FILES[@]}\" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${bcsymbolmap_path}\" \"${destination}\"\n}\n\n# Signs a framework with the provided identity\ncode_sign_if_enabled() {\n  if [ -n \"${EXPANDED_CODE_SIGN_IDENTITY:-}\" -a \"${CODE_SIGNING_REQUIRED:-}\" != \"NO\" -a \"${CODE_SIGNING_ALLOWED}\" != \"NO\" ]; then\n    # Use the current code_sign_identity\n    echo \"Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}\"\n    local code_sign_cmd=\"/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'\"\n\n    if [ \"${COCOAPODS_PARALLEL_CODE_SIGN}\" == \"true\" ]; then\n      code_sign_cmd=\"$code_sign_cmd &\"\n    fi\n    echo \"$code_sign_cmd\"\n    eval \"$code_sign_cmd\"\n  fi\n}\n\nif [[ \"$CONFIGURATION\" == \"Debug\" ]]; then\n  install_framework \"${BUILT_PRODUCTS_DIR}/APNumberPad/APNumberPad.framework\"\nfi\nif [[ \"$CONFIGURATION\" == \"Release\" ]]; then\n  install_framework \"${BUILT_PRODUCTS_DIR}/APNumberPad/APNumberPad.framework\"\nfi\nif [ \"${COCOAPODS_PARALLEL_CODE_SIGN}\" == \"true\" ]; then\n  wait\nfi\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n\nFOUNDATION_EXPORT double Pods_APNumberPad_ExampleVersionNumber;\nFOUNDATION_EXPORT const unsigned char Pods_APNumberPad_ExampleVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example.debug.xcconfig",
    "content": "CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/APNumberPad\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/APNumberPad/APNumberPad.framework/Headers\"\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_LDFLAGS = $(inherited) -framework \"APNumberPad\" -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_PODFILE_DIR_PATH = ${SRCROOT}/.\nPODS_ROOT = ${SRCROOT}/Pods\nPODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example.modulemap",
    "content": "framework module Pods_APNumberPad_Example {\n  umbrella header \"Pods-APNumberPad_Example-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Example/Pods-APNumberPad_Example.release.xcconfig",
    "content": "CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/APNumberPad\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/APNumberPad/APNumberPad.framework/Headers\"\nLD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'\nOTHER_LDFLAGS = $(inherited) -framework \"APNumberPad\" -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_PODFILE_DIR_PATH = ${SRCROOT}/.\nPODS_ROOT = ${SRCROOT}/Pods\nPODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Tests/Pods-APNumberPad_Tests-Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n  <key>CFBundleDevelopmentRegion</key>\n  <string>en</string>\n  <key>CFBundleExecutable</key>\n  <string>${EXECUTABLE_NAME}</string>\n  <key>CFBundleIdentifier</key>\n  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>\n  <key>CFBundleInfoDictionaryVersion</key>\n  <string>6.0</string>\n  <key>CFBundleName</key>\n  <string>${PRODUCT_NAME}</string>\n  <key>CFBundlePackageType</key>\n  <string>FMWK</string>\n  <key>CFBundleShortVersionString</key>\n  <string>1.0.0</string>\n  <key>CFBundleSignature</key>\n  <string>????</string>\n  <key>CFBundleVersion</key>\n  <string>${CURRENT_PROJECT_VERSION}</string>\n  <key>NSPrincipalClass</key>\n  <string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Tests/Pods-APNumberPad_Tests-acknowledgements.markdown",
    "content": "# Acknowledgements\nThis application makes use of the following third party libraries:\nGenerated by CocoaPods - https://cocoapods.org\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Tests/Pods-APNumberPad_Tests-acknowledgements.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>PreferenceSpecifiers</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>This application makes use of the following third party libraries:</string>\n\t\t\t<key>Title</key>\n\t\t\t<string>Acknowledgements</string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>FooterText</key>\n\t\t\t<string>Generated by CocoaPods - https://cocoapods.org</string>\n\t\t\t<key>Title</key>\n\t\t\t<string></string>\n\t\t\t<key>Type</key>\n\t\t\t<string>PSGroupSpecifier</string>\n\t\t</dict>\n\t</array>\n\t<key>StringsTable</key>\n\t<string>Acknowledgements</string>\n\t<key>Title</key>\n\t<string>Acknowledgements</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Tests/Pods-APNumberPad_Tests-dummy.m",
    "content": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_APNumberPad_Tests : NSObject\n@end\n@implementation PodsDummy_Pods_APNumberPad_Tests\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Tests/Pods-APNumberPad_Tests-umbrella.h",
    "content": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#else\n#ifndef FOUNDATION_EXPORT\n#if defined(__cplusplus)\n#define FOUNDATION_EXPORT extern \"C\"\n#else\n#define FOUNDATION_EXPORT extern\n#endif\n#endif\n#endif\n\n\nFOUNDATION_EXPORT double Pods_APNumberPad_TestsVersionNumber;\nFOUNDATION_EXPORT const unsigned char Pods_APNumberPad_TestsVersionString[];\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Tests/Pods-APNumberPad_Tests.debug.xcconfig",
    "content": "CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/APNumberPad\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/APNumberPad/APNumberPad.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"APNumberPad\" -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_PODFILE_DIR_PATH = ${SRCROOT}/.\nPODS_ROOT = ${SRCROOT}/Pods\nPODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Tests/Pods-APNumberPad_Tests.modulemap",
    "content": "framework module Pods_APNumberPad_Tests {\n  umbrella header \"Pods-APNumberPad_Tests-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-APNumberPad_Tests/Pods-APNumberPad_Tests.release.xcconfig",
    "content": "CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO\nFRAMEWORK_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/APNumberPad\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1\nHEADER_SEARCH_PATHS = $(inherited) \"${PODS_CONFIGURATION_BUILD_DIR}/APNumberPad/APNumberPad.framework/Headers\"\nOTHER_LDFLAGS = $(inherited) -framework \"APNumberPad\" -framework \"UIKit\"\nPODS_BUILD_DIR = ${BUILD_DIR}\nPODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\nPODS_PODFILE_DIR_PATH = ${SRCROOT}/.\nPODS_ROOT = ${SRCROOT}/Pods\nPODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates\nUSE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES\n"
  },
  {
    "path": "Example/Tests/Tests-Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>${EXECUTABLE_NAME}</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundlePackageType</key>\n\t<string>BNDL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Example/Tests/Tests-Prefix.pch",
    "content": "//  The contents of this file are implicitly included at the beginning of every test case source file.\n\n#ifdef __OBJC__\n\n  \n\n#endif\n"
  },
  {
    "path": "Example/Tests/Tests.m",
    "content": "//\n//  APNumberPadTests.m\n//  APNumberPadTests\n//\n//  Created by Andrew Podkovyrin on 01/06/2017.\n//  Copyright (c) 2017 Andrew Podkovyrin. All rights reserved.\n//\n\n@import XCTest;\n\n@interface Tests : XCTestCase\n\n@end\n\n@implementation Tests\n\n- (void)setUp\n{\n    [super setUp];\n    // Put setup code here. This method is called before the invocation of each test method in the class.\n}\n\n- (void)tearDown\n{\n    // Put teardown code here. This method is called after the invocation of each test method in the class.\n    [super tearDown];\n}\n\n- (void)testExample\n{\n    XCTFail(@\"No implementation for \\\"%s\\\"\", __PRETTY_FUNCTION__);\n}\n\n@end\n\n"
  },
  {
    "path": "Example/Tests/en.lproj/InfoPlist.strings",
    "content": "/* Localized versions of Info.plist keys */\n\n"
  },
  {
    "path": "LICENSE",
    "content": "Copyright (c) 2017 Andrew Podkovyrin <podkovyrin@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "Package.swift",
    "content": "// swift-tools-version:5.3\n\nimport PackageDescription\n\nlet package = Package(\n    name: \"APNumberPad\",\n    platforms: [\n        .iOS(.v9),\n    ],\n    products: [\n        .library(\n            name: \"APNumberPad\",\n            targets: [\"APNumberPad\"]\n        ),\n    ],\n    targets: [\n        .target(\n            name: \"APNumberPad\",\n            path: \"APNumberPad\",\n            resources: [.process(\"Assets\")],\n            publicHeadersPath: \"\"\n        ),\n        .testTarget(\n          name: \"APNumberPadTests\",\n          dependencies: [\"APNumberPad\"]\n        ),\n    ]\n)\n"
  },
  {
    "path": "README.md",
    "content": "# APNumberPad\n\n[![CI Status](http://img.shields.io/travis/podkovyrin/APNumberPad.svg?style=flat)](https://travis-ci.org/podkovyrin/APNumberPad)\n[![Version](https://img.shields.io/cocoapods/v/APNumberPad.svg?style=flat)](http://cocoapods.org/pods/APNumberPad)\n[![License](https://img.shields.io/cocoapods/l/APNumberPad.svg?style=flat)](http://cocoapods.org/pods/APNumberPad)\n[![Platform](https://img.shields.io/cocoapods/p/APNumberPad.svg?style=flat)](http://cocoapods.org/pods/APNumberPad)\n\nAPNumberPad is a custom keyboard for iOS allows you to create a keyboard `inputView` that looks and feels just like the iPhone keyboard with `UIKeyboardTypeNumberPad` as `keyboardType`. Also APNumberPad provides customizable left-function button.\n\n<img src=\"https://raw.github.com/podkovyrin/APNumberPad/master/apnumberpad_demo.gif\" alt=\"APNumberPad\" title=\"APNumberPad demo\" style=\"display:block; margin: 10px auto 30px auto; align:center\"/>\n\n## Features\n - FULLY repeats default iOS keyboard look'n'feel (input with \"tap by tap\", pan over keyboard and release finger on button, holding clear button, ...)\n - Device rotation\n - Customizable left function button\n - Customizable keyboard appearence (see `APNumberPadStyle.h`)\n - `UITextField` and `UITextView` support (or any other `UIResponder` object that responds to `UITextInput` protocol)\n - Input clicks\n - iPhone X (safe area) support\n\n## Example\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\n```obj-c\n// in .h:\n#import <APNumberPad/APNumberPad.h>\n\n@interface ExampleViewController : UIViewController <APNumberPadDelegate>\n\n// in .m:\n\nUITextField *textField = [[UITextField alloc] initWithFrame:CGRectZero];\ntextField.inputView = ({\n    APNumberPad *numberPad = [APNumberPad numberPadWithDelegate:self];\n    // configure function button\n    //\n    [numberPad.leftFunctionButton setTitle:@\"Func\" forState:UIControlStateNormal];\n    numberPad.leftFunctionButton.titleLabel.adjustsFontSizeToFitWidth = YES;\n    numberPad;\n});\n\n#pragma mark - APNumberPadDelegate\n\n- (void)numberPad:(APNumberPad *)numberPad functionButtonAction:(UIButton *)functionButton textInput:(UIResponder<UITextInput> *)textInput {\n    [textInput insertText:@\"#\"];\n}\n```\n\n## Requirements\niOS 8.0 or later.\n\n## Notes\nInspired by https://github.com/kulpreetchilana/Custom-iOS-Keyboards and http://stackoverflow.com/questions/13205160/how-do-i-retrieve-keystrokes-from-a-custom-keyboard-on-an-ios-app/13205494#13205494\n\nAPNumberPad very gratefully makes use of backspace icon from Typicons set by Stephen Hutchings (http://typicons.com/), under Creative Commons (Attribution-Share Alike 3.0 Unported) license.\n\n## Installation via CocoaPods\n\nAPNumberPad is available through [CocoaPods](http://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod \"APNumberPad\"\n```\n\n## Installation via Carthage\n\n[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that automates the process of adding frameworks to your Cocoa application.\n\nYou can install Carthage with [Homebrew](http://brew.sh/) using the following command:\n\n```bash\n$ brew update\n$ brew install carthage\n```\n\nTo integrate APNumberPad into your Xcode project using Carthage, specify it in your `Cartfile`:\n\n```ogdl\ngithub \"podkovyrin/APNumberPad\"\n```\n\n## Author\n\nAndrew Podkovyrin, podkovyrin@gmail.com\n\n## License\n\nAPNumberPad is available under the MIT license. See the LICENSE file for more info.\n"
  },
  {
    "path": "Tests/APNumberPadTests/APNumberPadMainTests.swift",
    "content": "//\n//  File.swift\n//  \n//\n//  Created by Andrew Podkovyrin on 28.09.2020.\n//\n\nimport XCTest\n\nimport APNumberPad\n\nclass Test1: XCTestCase, APNumberPadDelegate {\n    func testInit() {\n        let np = APNumberPad(delegate: self)\n        XCTAssertNotNil(np)\n    }\n    \n    func testResources() {\n        XCTAssertNotNil(APNumberPadDefaultStyle.clearFunctionButtonImage())\n        XCTAssertNotNil(APNumberPadDefaultStyle.clearFunctionButtonImageHighlighted())\n    }\n}\n"
  }
]