├── .DS_Store ├── LICENSE.md ├── LazyPDFKit.framework ├── Default-568h@2x.png ├── Default-667h@2x.png ├── Default-736h@3x.png ├── Headers │ ├── ARCMacros.h │ ├── Annotation.h │ ├── CGPDFDocument.h │ ├── File.h │ ├── LazyPDFColorBarPicker.h │ ├── LazyPDFColorIndicatorView.h │ ├── LazyPDFColorPicker.h │ ├── LazyPDFColorPickerController.h │ ├── LazyPDFColorPickerNavigationController.h │ ├── LazyPDFColorSquarePicker.h │ ├── LazyPDFConstants.h │ ├── LazyPDFContentPage.h │ ├── LazyPDFContentTile.h │ ├── LazyPDFContentView.h │ ├── LazyPDFDocument.h │ ├── LazyPDFDocumentOutline.h │ ├── LazyPDFDrawToolbar.h │ ├── LazyPDFDrawingTools.h │ ├── LazyPDFDrawingView.h │ ├── LazyPDFHSBSupport.h │ ├── LazyPDFKit.h │ ├── LazyPDFMainPagebar.h │ ├── LazyPDFMainToolbar.h │ ├── LazyPDFPopoverController.h │ ├── LazyPDFPopoverView.h │ ├── LazyPDFPropertyController.h │ ├── LazyPDFSourceColorView.h │ ├── LazyPDFThumbCache.h │ ├── LazyPDFThumbFetch.h │ ├── LazyPDFThumbQueue.h │ ├── LazyPDFThumbRender.h │ ├── LazyPDFThumbRequest.h │ ├── LazyPDFThumbView.h │ ├── LazyPDFThumbsView.h │ ├── LazyPDFTouchView.h │ ├── LazyPDFViewController.h │ ├── ThumbsMainToolbar.h │ ├── ThumbsViewController.h │ └── UIXToolbarView.h ├── Info.plist ├── LazyPDF-Button-H.png ├── LazyPDF-Button-H@2x.png ├── LazyPDF-Button-N.png ├── LazyPDF-Button-N@2x.png ├── LazyPDF-Email.png ├── LazyPDF-Email@2x.png ├── LazyPDF-Export.png ├── LazyPDF-Export@2x.png ├── LazyPDF-Mark-N.png ├── LazyPDF-Mark-N@2x.png ├── LazyPDF-Mark-Y.png ├── LazyPDF-Mark-Y@2x.png ├── LazyPDF-Print.png ├── LazyPDF-Print@2x.png ├── LazyPDF-Thumbs.png ├── LazyPDF-Thumbs@2x.png ├── LazyPDFColorPickerView.nib ├── LazyPDFKit ├── LazyPDFModel.momd │ ├── LazyPDFModel.mom │ └── VersionInfo.plist ├── Modules │ └── module.modulemap ├── Pen-Button-Y.png ├── Pen-Button-Y@2x.png ├── Pen-Button.png ├── Pen-Button@2x.png ├── VERSION ├── _CodeSignature │ └── CodeResources ├── circle-but.png ├── circle-but@2x.png ├── circlefill-but.png ├── circlefill-but@2x.png ├── clear-but.png ├── clear-but@2x.png ├── done-but.png ├── done-but@2x.png ├── eraser-but.png ├── eraser-but@2x.png ├── line-but.png ├── line-but@2x.png ├── pen-but.png ├── pen-but@2x.png ├── redo-but.png ├── redo-but@2x.png ├── square-but.png ├── square-but@2x.png ├── squarefill-but.png ├── squarefill-but@2x.png ├── text-but.png ├── text-but@2x.png ├── undo-but.png └── undo-but@2x.png ├── LazyPDFKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── LazyPDFKit.xccheckout │ └── xcuserdata │ │ └── ctepv1.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── ctepv1.xcuserdatad │ └── xcschemes │ ├── LazyPDFKit.xcscheme │ ├── LazyPDFKitFramework.xcscheme │ └── xcschememanagement.plist ├── LazyPDFKit.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── LazyPDFKit.xccheckout └── xcuserdata │ └── ctepv1.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── LazyPDFKit ├── .DS_Store ├── ARCMacros.h ├── Annotation.h ├── Annotation.m ├── CGPDFDocument.h ├── CGPDFDocument.m ├── Default-568h@2x.png ├── Default-667h@2x.png ├── Default-736h@3x.png ├── File.h ├── File.m ├── Info.plist ├── LazyPDF-Button-H.png ├── LazyPDF-Button-H@2x.png ├── LazyPDF-Button-N.png ├── LazyPDF-Button-N@2x.png ├── LazyPDF-Email.png ├── LazyPDF-Email@2x.png ├── LazyPDF-Export.png ├── LazyPDF-Export@2x.png ├── LazyPDF-Mark-N.png ├── LazyPDF-Mark-N@2x.png ├── LazyPDF-Mark-Y.png ├── LazyPDF-Mark-Y@2x.png ├── LazyPDF-Print.png ├── LazyPDF-Print@2x.png ├── LazyPDF-Thumbs.png ├── LazyPDF-Thumbs@2x.png ├── LazyPDFColorBarPicker.h ├── LazyPDFColorBarPicker.m ├── LazyPDFColorIndicatorView.h ├── LazyPDFColorIndicatorView.m ├── LazyPDFColorPicker.h ├── LazyPDFColorPickerController.h ├── LazyPDFColorPickerController.m ├── LazyPDFColorPickerNavigationController.h ├── LazyPDFColorPickerNavigationController.m ├── LazyPDFColorPickerView.xib ├── LazyPDFColorSquarePicker.h ├── LazyPDFColorSquarePicker.m ├── LazyPDFConstants.h ├── LazyPDFConstants.m ├── LazyPDFContentPage.h ├── LazyPDFContentPage.m ├── LazyPDFContentTile.h ├── LazyPDFContentTile.m ├── LazyPDFContentView.h ├── LazyPDFContentView.m ├── LazyPDFDataManager.h ├── LazyPDFDataManager.m ├── LazyPDFDocument.h ├── LazyPDFDocument.m ├── LazyPDFDocumentOutline.h ├── LazyPDFDocumentOutline.m ├── LazyPDFDrawToolbar.h ├── LazyPDFDrawToolbar.m ├── LazyPDFDrawingTools.h ├── LazyPDFDrawingTools.m ├── LazyPDFDrawingView.h ├── LazyPDFDrawingView.m ├── LazyPDFHSBSupport.h ├── LazyPDFHSBSupport.m ├── LazyPDFKit.h ├── LazyPDFMainPagebar.h ├── LazyPDFMainPagebar.m ├── LazyPDFMainToolbar.h ├── LazyPDFMainToolbar.m ├── LazyPDFModel.xcdatamodeld │ └── LazyPDFModel.xcdatamodel │ │ └── contents ├── LazyPDFPopoverController.h ├── LazyPDFPopoverController.m ├── LazyPDFPopoverView.h ├── LazyPDFPopoverView.m ├── LazyPDFPropertyController.h ├── LazyPDFPropertyController.m ├── LazyPDFSourceColorView.h ├── LazyPDFSourceColorView.m ├── LazyPDFThumbCache.h ├── LazyPDFThumbCache.m ├── LazyPDFThumbFetch.h ├── LazyPDFThumbFetch.m ├── LazyPDFThumbQueue.h ├── LazyPDFThumbQueue.m ├── LazyPDFThumbRender.h ├── LazyPDFThumbRender.m ├── LazyPDFThumbRequest.h ├── LazyPDFThumbRequest.m ├── LazyPDFThumbView.h ├── LazyPDFThumbView.m ├── LazyPDFThumbsView.h ├── LazyPDFThumbsView.m ├── LazyPDFTouchView.h ├── LazyPDFTouchView.m ├── LazyPDFViewController.h ├── LazyPDFViewController.m ├── Pen-Button-Y.png ├── Pen-Button-Y@2x.png ├── Pen-Button.png ├── Pen-Button@2x.png ├── ThumbsMainToolbar.h ├── ThumbsMainToolbar.m ├── ThumbsViewController.h ├── ThumbsViewController.m ├── UIXToolbarView.h ├── UIXToolbarView.m ├── VERSION ├── circle-but.png ├── circle-but@2x.png ├── circlefill-but.png ├── circlefill-but@2x.png ├── clear-but.png ├── clear-but@2x.png ├── done-but.png ├── done-but@2x.png ├── eraser-but.png ├── eraser-but@2x.png ├── line-but.png ├── line-but@2x.png ├── pen-but.png ├── pen-but@2x.png ├── redo-but.png ├── redo-but@2x.png ├── square-but.png ├── square-but@2x.png ├── squarefill-but.png ├── squarefill-but@2x.png ├── text-but.png ├── text-but@2x.png ├── undo-but.png └── undo-but@2x.png ├── LazyPDFKitDemo ├── LazyPDFKitDemo.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── ctepv1.xcuserdatad │ │ └── xcschemes │ │ ├── LazyPDFKitDemo.xcscheme │ │ └── xcschememanagement.plist ├── LazyPDFKitDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Document.pdf │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── LazyPDFKitDemoTests │ ├── Info.plist │ └── LazyPDFKitDemoTests.m ├── LazyPDFKitTests ├── Info.plist └── LazyPDFKitTests.m ├── README.md ├── Screenshots └── Screenshot1.png └── build ├── .DS_Store └── LazyPDFKit.build ├── .DS_Store ├── Debug-iphoneos └── LazyPDFKit.build │ ├── DerivedSources │ └── LazyPDFKit_vers.c │ ├── LazyPDFColorPickerView-PartialInfo.plist │ ├── LazyPDFKit-all-non-framework-target-headers.hmap │ ├── LazyPDFKit-all-target-headers.hmap │ ├── LazyPDFKit-generated-files.hmap │ ├── LazyPDFKit-own-target-headers.hmap │ ├── LazyPDFKit-project-headers.hmap │ ├── LazyPDFKit.hmap │ ├── Objects-normal │ ├── arm64 │ │ ├── Annotation.d │ │ ├── Annotation.dia │ │ ├── Annotation.o │ │ ├── CGPDFDocument.d │ │ ├── CGPDFDocument.dia │ │ ├── CGPDFDocument.o │ │ ├── File.d │ │ ├── File.dia │ │ ├── File.o │ │ ├── LazyPDFColorBarPicker.d │ │ ├── LazyPDFColorBarPicker.dia │ │ ├── LazyPDFColorBarPicker.o │ │ ├── LazyPDFColorIndicatorView.d │ │ ├── LazyPDFColorIndicatorView.dia │ │ ├── LazyPDFColorIndicatorView.o │ │ ├── LazyPDFColorPickerController.d │ │ ├── LazyPDFColorPickerController.dia │ │ ├── LazyPDFColorPickerController.o │ │ ├── LazyPDFColorPickerNavigationController.d │ │ ├── LazyPDFColorPickerNavigationController.dia │ │ ├── LazyPDFColorPickerNavigationController.o │ │ ├── LazyPDFColorSquarePicker.d │ │ ├── LazyPDFColorSquarePicker.dia │ │ ├── LazyPDFColorSquarePicker.o │ │ ├── LazyPDFConstants.d │ │ ├── LazyPDFConstants.dia │ │ ├── LazyPDFConstants.o │ │ ├── LazyPDFContentPage.d │ │ ├── LazyPDFContentPage.dia │ │ ├── LazyPDFContentPage.o │ │ ├── LazyPDFContentTile.d │ │ ├── LazyPDFContentTile.dia │ │ ├── LazyPDFContentTile.o │ │ ├── LazyPDFContentView.d │ │ ├── LazyPDFContentView.dia │ │ ├── LazyPDFContentView.o │ │ ├── LazyPDFDataManager.d │ │ ├── LazyPDFDataManager.dia │ │ ├── LazyPDFDataManager.o │ │ ├── LazyPDFDocument.d │ │ ├── LazyPDFDocument.dia │ │ ├── LazyPDFDocument.o │ │ ├── LazyPDFDocumentOutline.d │ │ ├── LazyPDFDocumentOutline.dia │ │ ├── LazyPDFDocumentOutline.o │ │ ├── LazyPDFDrawToolbar.d │ │ ├── LazyPDFDrawToolbar.dia │ │ ├── LazyPDFDrawToolbar.o │ │ ├── LazyPDFDrawingTools.d │ │ ├── LazyPDFDrawingTools.dia │ │ ├── LazyPDFDrawingTools.o │ │ ├── LazyPDFDrawingView.d │ │ ├── LazyPDFDrawingView.dia │ │ ├── LazyPDFDrawingView.o │ │ ├── LazyPDFHSBSupport.d │ │ ├── LazyPDFHSBSupport.dia │ │ ├── LazyPDFHSBSupport.o │ │ ├── LazyPDFKit │ │ ├── LazyPDFKit.LinkFileList │ │ ├── LazyPDFKit_dependency_info.dat │ │ ├── LazyPDFKit_vers.d │ │ ├── LazyPDFKit_vers.dia │ │ ├── LazyPDFKit_vers.o │ │ ├── LazyPDFMainPagebar.d │ │ ├── LazyPDFMainPagebar.dia │ │ ├── LazyPDFMainPagebar.o │ │ ├── LazyPDFMainToolbar.d │ │ ├── LazyPDFMainToolbar.dia │ │ ├── LazyPDFMainToolbar.o │ │ ├── LazyPDFPopoverController.d │ │ ├── LazyPDFPopoverController.dia │ │ ├── LazyPDFPopoverController.o │ │ ├── LazyPDFPopoverView.d │ │ ├── LazyPDFPopoverView.dia │ │ ├── LazyPDFPopoverView.o │ │ ├── LazyPDFPropertyController.d │ │ ├── LazyPDFPropertyController.dia │ │ ├── LazyPDFPropertyController.o │ │ ├── LazyPDFSourceColorView.d │ │ ├── LazyPDFSourceColorView.dia │ │ ├── LazyPDFSourceColorView.o │ │ ├── LazyPDFThumbCache.d │ │ ├── LazyPDFThumbCache.dia │ │ ├── LazyPDFThumbCache.o │ │ ├── LazyPDFThumbFetch.d │ │ ├── LazyPDFThumbFetch.dia │ │ ├── LazyPDFThumbFetch.o │ │ ├── LazyPDFThumbQueue.d │ │ ├── LazyPDFThumbQueue.dia │ │ ├── LazyPDFThumbQueue.o │ │ ├── LazyPDFThumbRender.d │ │ ├── LazyPDFThumbRender.dia │ │ ├── LazyPDFThumbRender.o │ │ ├── LazyPDFThumbRequest.d │ │ ├── LazyPDFThumbRequest.dia │ │ ├── LazyPDFThumbRequest.o │ │ ├── LazyPDFThumbView.d │ │ ├── LazyPDFThumbView.dia │ │ ├── LazyPDFThumbView.o │ │ ├── LazyPDFThumbsView.d │ │ ├── LazyPDFThumbsView.dia │ │ ├── LazyPDFThumbsView.o │ │ ├── LazyPDFTouchView.d │ │ ├── LazyPDFTouchView.dia │ │ ├── LazyPDFTouchView.o │ │ ├── LazyPDFViewController.d │ │ ├── LazyPDFViewController.dia │ │ ├── LazyPDFViewController.o │ │ ├── ThumbsMainToolbar.d │ │ ├── ThumbsMainToolbar.dia │ │ ├── ThumbsMainToolbar.o │ │ ├── ThumbsViewController.d │ │ ├── ThumbsViewController.dia │ │ ├── ThumbsViewController.o │ │ ├── UIXToolbarView.d │ │ ├── UIXToolbarView.dia │ │ └── UIXToolbarView.o │ └── armv7 │ │ ├── Annotation.d │ │ ├── Annotation.dia │ │ ├── Annotation.o │ │ ├── CGPDFDocument.d │ │ ├── CGPDFDocument.dia │ │ ├── CGPDFDocument.o │ │ ├── File.d │ │ ├── File.dia │ │ ├── File.o │ │ ├── LazyPDFColorBarPicker.d │ │ ├── LazyPDFColorBarPicker.dia │ │ ├── LazyPDFColorBarPicker.o │ │ ├── LazyPDFColorIndicatorView.d │ │ ├── LazyPDFColorIndicatorView.dia │ │ ├── LazyPDFColorIndicatorView.o │ │ ├── LazyPDFColorPickerController.d │ │ ├── LazyPDFColorPickerController.dia │ │ ├── LazyPDFColorPickerController.o │ │ ├── LazyPDFColorPickerNavigationController.d │ │ ├── LazyPDFColorPickerNavigationController.dia │ │ ├── LazyPDFColorPickerNavigationController.o │ │ ├── LazyPDFColorSquarePicker.d │ │ ├── LazyPDFColorSquarePicker.dia │ │ ├── LazyPDFColorSquarePicker.o │ │ ├── LazyPDFConstants.d │ │ ├── LazyPDFConstants.dia │ │ ├── LazyPDFConstants.o │ │ ├── LazyPDFContentPage.d │ │ ├── LazyPDFContentPage.dia │ │ ├── LazyPDFContentPage.o │ │ ├── LazyPDFContentTile.d │ │ ├── LazyPDFContentTile.dia │ │ ├── LazyPDFContentTile.o │ │ ├── LazyPDFContentView.d │ │ ├── LazyPDFContentView.dia │ │ ├── LazyPDFContentView.o │ │ ├── LazyPDFDataManager.d │ │ ├── LazyPDFDataManager.dia │ │ ├── LazyPDFDataManager.o │ │ ├── LazyPDFDocument.d │ │ ├── LazyPDFDocument.dia │ │ ├── LazyPDFDocument.o │ │ ├── LazyPDFDocumentOutline.d │ │ ├── LazyPDFDocumentOutline.dia │ │ ├── LazyPDFDocumentOutline.o │ │ ├── LazyPDFDrawToolbar.d │ │ ├── LazyPDFDrawToolbar.dia │ │ ├── LazyPDFDrawToolbar.o │ │ ├── LazyPDFDrawingTools.d │ │ ├── LazyPDFDrawingTools.dia │ │ ├── LazyPDFDrawingTools.o │ │ ├── LazyPDFDrawingView.d │ │ ├── LazyPDFDrawingView.dia │ │ ├── LazyPDFDrawingView.o │ │ ├── LazyPDFHSBSupport.d │ │ ├── LazyPDFHSBSupport.dia │ │ ├── LazyPDFHSBSupport.o │ │ ├── LazyPDFKit │ │ ├── LazyPDFKit.LinkFileList │ │ ├── LazyPDFKit_dependency_info.dat │ │ ├── LazyPDFKit_vers.d │ │ ├── LazyPDFKit_vers.dia │ │ ├── LazyPDFKit_vers.o │ │ ├── LazyPDFMainPagebar.d │ │ ├── LazyPDFMainPagebar.dia │ │ ├── LazyPDFMainPagebar.o │ │ ├── LazyPDFMainToolbar.d │ │ ├── LazyPDFMainToolbar.dia │ │ ├── LazyPDFMainToolbar.o │ │ ├── LazyPDFPopoverController.d │ │ ├── LazyPDFPopoverController.dia │ │ ├── LazyPDFPopoverController.o │ │ ├── LazyPDFPopoverView.d │ │ ├── LazyPDFPopoverView.dia │ │ ├── LazyPDFPopoverView.o │ │ ├── LazyPDFPropertyController.d │ │ ├── LazyPDFPropertyController.dia │ │ ├── LazyPDFPropertyController.o │ │ ├── LazyPDFSourceColorView.d │ │ ├── LazyPDFSourceColorView.dia │ │ ├── LazyPDFSourceColorView.o │ │ ├── LazyPDFThumbCache.d │ │ ├── LazyPDFThumbCache.dia │ │ ├── LazyPDFThumbCache.o │ │ ├── LazyPDFThumbFetch.d │ │ ├── LazyPDFThumbFetch.dia │ │ ├── LazyPDFThumbFetch.o │ │ ├── LazyPDFThumbQueue.d │ │ ├── LazyPDFThumbQueue.dia │ │ ├── LazyPDFThumbQueue.o │ │ ├── LazyPDFThumbRender.d │ │ ├── LazyPDFThumbRender.dia │ │ ├── LazyPDFThumbRender.o │ │ ├── LazyPDFThumbRequest.d │ │ ├── LazyPDFThumbRequest.dia │ │ ├── LazyPDFThumbRequest.o │ │ ├── LazyPDFThumbView.d │ │ ├── LazyPDFThumbView.dia │ │ ├── LazyPDFThumbView.o │ │ ├── LazyPDFThumbsView.d │ │ ├── LazyPDFThumbsView.dia │ │ ├── LazyPDFThumbsView.o │ │ ├── LazyPDFTouchView.d │ │ ├── LazyPDFTouchView.dia │ │ ├── LazyPDFTouchView.o │ │ ├── LazyPDFViewController.d │ │ ├── LazyPDFViewController.dia │ │ ├── LazyPDFViewController.o │ │ ├── ThumbsMainToolbar.d │ │ ├── ThumbsMainToolbar.dia │ │ ├── ThumbsMainToolbar.o │ │ ├── ThumbsViewController.d │ │ ├── ThumbsViewController.dia │ │ ├── ThumbsViewController.o │ │ ├── UIXToolbarView.d │ │ ├── UIXToolbarView.dia │ │ └── UIXToolbarView.o │ └── dgph ├── Debug-iphonesimulator └── LazyPDFKit.build │ ├── DerivedSources │ └── LazyPDFKit_vers.c │ ├── LazyPDFColorPickerView-PartialInfo.plist │ ├── LazyPDFKit-all-non-framework-target-headers.hmap │ ├── LazyPDFKit-all-target-headers.hmap │ ├── LazyPDFKit-generated-files.hmap │ ├── LazyPDFKit-own-target-headers.hmap │ ├── LazyPDFKit-project-headers.hmap │ ├── LazyPDFKit.hmap │ ├── Objects-normal │ ├── i386 │ │ ├── Annotation.d │ │ ├── Annotation.dia │ │ ├── Annotation.o │ │ ├── CGPDFDocument.d │ │ ├── CGPDFDocument.dia │ │ ├── CGPDFDocument.o │ │ ├── File.d │ │ ├── File.dia │ │ ├── File.o │ │ ├── LazyPDFColorBarPicker.d │ │ ├── LazyPDFColorBarPicker.dia │ │ ├── LazyPDFColorBarPicker.o │ │ ├── LazyPDFColorIndicatorView.d │ │ ├── LazyPDFColorIndicatorView.dia │ │ ├── LazyPDFColorIndicatorView.o │ │ ├── LazyPDFColorPickerController.d │ │ ├── LazyPDFColorPickerController.dia │ │ ├── LazyPDFColorPickerController.o │ │ ├── LazyPDFColorPickerNavigationController.d │ │ ├── LazyPDFColorPickerNavigationController.dia │ │ ├── LazyPDFColorPickerNavigationController.o │ │ ├── LazyPDFColorSquarePicker.d │ │ ├── LazyPDFColorSquarePicker.dia │ │ ├── LazyPDFColorSquarePicker.o │ │ ├── LazyPDFConstants.d │ │ ├── LazyPDFConstants.dia │ │ ├── LazyPDFConstants.o │ │ ├── LazyPDFContentPage.d │ │ ├── LazyPDFContentPage.dia │ │ ├── LazyPDFContentPage.o │ │ ├── LazyPDFContentTile.d │ │ ├── LazyPDFContentTile.dia │ │ ├── LazyPDFContentTile.o │ │ ├── LazyPDFContentView.d │ │ ├── LazyPDFContentView.dia │ │ ├── LazyPDFContentView.o │ │ ├── LazyPDFDataManager.d │ │ ├── LazyPDFDataManager.dia │ │ ├── LazyPDFDataManager.o │ │ ├── LazyPDFDocument.d │ │ ├── LazyPDFDocument.dia │ │ ├── LazyPDFDocument.o │ │ ├── LazyPDFDocumentOutline.d │ │ ├── LazyPDFDocumentOutline.dia │ │ ├── LazyPDFDocumentOutline.o │ │ ├── LazyPDFDrawToolbar.d │ │ ├── LazyPDFDrawToolbar.dia │ │ ├── LazyPDFDrawToolbar.o │ │ ├── LazyPDFDrawingTools.d │ │ ├── LazyPDFDrawingTools.dia │ │ ├── LazyPDFDrawingTools.o │ │ ├── LazyPDFDrawingView.d │ │ ├── LazyPDFDrawingView.dia │ │ ├── LazyPDFDrawingView.o │ │ ├── LazyPDFHSBSupport.d │ │ ├── LazyPDFHSBSupport.dia │ │ ├── LazyPDFHSBSupport.o │ │ ├── LazyPDFKit │ │ ├── LazyPDFKit.LinkFileList │ │ ├── LazyPDFKit_dependency_info.dat │ │ ├── LazyPDFKit_vers.d │ │ ├── LazyPDFKit_vers.dia │ │ ├── LazyPDFKit_vers.o │ │ ├── LazyPDFMainPagebar.d │ │ ├── LazyPDFMainPagebar.dia │ │ ├── LazyPDFMainPagebar.o │ │ ├── LazyPDFMainToolbar.d │ │ ├── LazyPDFMainToolbar.dia │ │ ├── LazyPDFMainToolbar.o │ │ ├── LazyPDFPopoverController.d │ │ ├── LazyPDFPopoverController.dia │ │ ├── LazyPDFPopoverController.o │ │ ├── LazyPDFPopoverView.d │ │ ├── LazyPDFPopoverView.dia │ │ ├── LazyPDFPopoverView.o │ │ ├── LazyPDFPropertyController.d │ │ ├── LazyPDFPropertyController.dia │ │ ├── LazyPDFPropertyController.o │ │ ├── LazyPDFSourceColorView.d │ │ ├── LazyPDFSourceColorView.dia │ │ ├── LazyPDFSourceColorView.o │ │ ├── LazyPDFThumbCache.d │ │ ├── LazyPDFThumbCache.dia │ │ ├── LazyPDFThumbCache.o │ │ ├── LazyPDFThumbFetch.d │ │ ├── LazyPDFThumbFetch.dia │ │ ├── LazyPDFThumbFetch.o │ │ ├── LazyPDFThumbQueue.d │ │ ├── LazyPDFThumbQueue.dia │ │ ├── LazyPDFThumbQueue.o │ │ ├── LazyPDFThumbRender.d │ │ ├── LazyPDFThumbRender.dia │ │ ├── LazyPDFThumbRender.o │ │ ├── LazyPDFThumbRequest.d │ │ ├── LazyPDFThumbRequest.dia │ │ ├── LazyPDFThumbRequest.o │ │ ├── LazyPDFThumbView.d │ │ ├── LazyPDFThumbView.dia │ │ ├── LazyPDFThumbView.o │ │ ├── LazyPDFThumbsView.d │ │ ├── LazyPDFThumbsView.dia │ │ ├── LazyPDFThumbsView.o │ │ ├── LazyPDFTouchView.d │ │ ├── LazyPDFTouchView.dia │ │ ├── LazyPDFTouchView.o │ │ ├── LazyPDFViewController.d │ │ ├── LazyPDFViewController.dia │ │ ├── LazyPDFViewController.o │ │ ├── ThumbsMainToolbar.d │ │ ├── ThumbsMainToolbar.dia │ │ ├── ThumbsMainToolbar.o │ │ ├── ThumbsViewController.d │ │ ├── ThumbsViewController.dia │ │ ├── ThumbsViewController.o │ │ ├── UIXToolbarView.d │ │ ├── UIXToolbarView.dia │ │ └── UIXToolbarView.o │ └── x86_64 │ │ ├── Annotation.d │ │ ├── Annotation.dia │ │ ├── Annotation.o │ │ ├── CGPDFDocument.d │ │ ├── CGPDFDocument.dia │ │ ├── CGPDFDocument.o │ │ ├── File.d │ │ ├── File.dia │ │ ├── File.o │ │ ├── LazyPDFColorBarPicker.d │ │ ├── LazyPDFColorBarPicker.dia │ │ ├── LazyPDFColorBarPicker.o │ │ ├── LazyPDFColorIndicatorView.d │ │ ├── LazyPDFColorIndicatorView.dia │ │ ├── LazyPDFColorIndicatorView.o │ │ ├── LazyPDFColorPickerController.d │ │ ├── LazyPDFColorPickerController.dia │ │ ├── LazyPDFColorPickerController.o │ │ ├── LazyPDFColorPickerNavigationController.d │ │ ├── LazyPDFColorPickerNavigationController.dia │ │ ├── LazyPDFColorPickerNavigationController.o │ │ ├── LazyPDFColorSquarePicker.d │ │ ├── LazyPDFColorSquarePicker.dia │ │ ├── LazyPDFColorSquarePicker.o │ │ ├── LazyPDFConstants.d │ │ ├── LazyPDFConstants.dia │ │ ├── LazyPDFConstants.o │ │ ├── LazyPDFContentPage.d │ │ ├── LazyPDFContentPage.dia │ │ ├── LazyPDFContentPage.o │ │ ├── LazyPDFContentTile.d │ │ ├── LazyPDFContentTile.dia │ │ ├── LazyPDFContentTile.o │ │ ├── LazyPDFContentView.d │ │ ├── LazyPDFContentView.dia │ │ ├── LazyPDFContentView.o │ │ ├── LazyPDFDataManager.d │ │ ├── LazyPDFDataManager.dia │ │ ├── LazyPDFDataManager.o │ │ ├── LazyPDFDocument.d │ │ ├── LazyPDFDocument.dia │ │ ├── LazyPDFDocument.o │ │ ├── LazyPDFDocumentOutline.d │ │ ├── LazyPDFDocumentOutline.dia │ │ ├── LazyPDFDocumentOutline.o │ │ ├── LazyPDFDrawToolbar.d │ │ ├── LazyPDFDrawToolbar.dia │ │ ├── LazyPDFDrawToolbar.o │ │ ├── LazyPDFDrawingTools.d │ │ ├── LazyPDFDrawingTools.dia │ │ ├── LazyPDFDrawingTools.o │ │ ├── LazyPDFDrawingView.d │ │ ├── LazyPDFDrawingView.dia │ │ ├── LazyPDFDrawingView.o │ │ ├── LazyPDFHSBSupport.d │ │ ├── LazyPDFHSBSupport.dia │ │ ├── LazyPDFHSBSupport.o │ │ ├── LazyPDFKit │ │ ├── LazyPDFKit.LinkFileList │ │ ├── LazyPDFKit_dependency_info.dat │ │ ├── LazyPDFKit_vers.d │ │ ├── LazyPDFKit_vers.dia │ │ ├── LazyPDFKit_vers.o │ │ ├── LazyPDFMainPagebar.d │ │ ├── LazyPDFMainPagebar.dia │ │ ├── LazyPDFMainPagebar.o │ │ ├── LazyPDFMainToolbar.d │ │ ├── LazyPDFMainToolbar.dia │ │ ├── LazyPDFMainToolbar.o │ │ ├── LazyPDFPopoverController.d │ │ ├── LazyPDFPopoverController.dia │ │ ├── LazyPDFPopoverController.o │ │ ├── LazyPDFPopoverView.d │ │ ├── LazyPDFPopoverView.dia │ │ ├── LazyPDFPopoverView.o │ │ ├── LazyPDFPropertyController.d │ │ ├── LazyPDFPropertyController.dia │ │ ├── LazyPDFPropertyController.o │ │ ├── LazyPDFSourceColorView.d │ │ ├── LazyPDFSourceColorView.dia │ │ ├── LazyPDFSourceColorView.o │ │ ├── LazyPDFThumbCache.d │ │ ├── LazyPDFThumbCache.dia │ │ ├── LazyPDFThumbCache.o │ │ ├── LazyPDFThumbFetch.d │ │ ├── LazyPDFThumbFetch.dia │ │ ├── LazyPDFThumbFetch.o │ │ ├── LazyPDFThumbQueue.d │ │ ├── LazyPDFThumbQueue.dia │ │ ├── LazyPDFThumbQueue.o │ │ ├── LazyPDFThumbRender.d │ │ ├── LazyPDFThumbRender.dia │ │ ├── LazyPDFThumbRender.o │ │ ├── LazyPDFThumbRequest.d │ │ ├── LazyPDFThumbRequest.dia │ │ ├── LazyPDFThumbRequest.o │ │ ├── LazyPDFThumbView.d │ │ ├── LazyPDFThumbView.dia │ │ ├── LazyPDFThumbView.o │ │ ├── LazyPDFThumbsView.d │ │ ├── LazyPDFThumbsView.dia │ │ ├── LazyPDFThumbsView.o │ │ ├── LazyPDFTouchView.d │ │ ├── LazyPDFTouchView.dia │ │ ├── LazyPDFTouchView.o │ │ ├── LazyPDFViewController.d │ │ ├── LazyPDFViewController.dia │ │ ├── LazyPDFViewController.o │ │ ├── ThumbsMainToolbar.d │ │ ├── ThumbsMainToolbar.dia │ │ ├── ThumbsMainToolbar.o │ │ ├── ThumbsViewController.d │ │ ├── ThumbsViewController.dia │ │ ├── ThumbsViewController.o │ │ ├── UIXToolbarView.d │ │ ├── UIXToolbarView.dia │ │ └── UIXToolbarView.o │ └── dgph └── all-product-headers.yaml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/.DS_Store -------------------------------------------------------------------------------- /LazyPDFKit.framework/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/Default-568h@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/Default-667h@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/Default-736h@3x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/Info.plist -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Button-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Button-H.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Button-H@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Button-H@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Button-N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Button-N.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Button-N@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Button-N@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Email.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Email@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Email@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Export.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Export@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Export@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Mark-N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Mark-N.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Mark-N@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Mark-N@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Mark-Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Mark-Y.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Mark-Y@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Mark-Y@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Print.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Print@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Print@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Thumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Thumbs.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDF-Thumbs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDF-Thumbs@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDFColorPickerView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDFColorPickerView.nib -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDFKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDFKit -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDFModel.momd/LazyPDFModel.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDFModel.momd/LazyPDFModel.mom -------------------------------------------------------------------------------- /LazyPDFKit.framework/LazyPDFModel.momd/VersionInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/LazyPDFModel.momd/VersionInfo.plist -------------------------------------------------------------------------------- /LazyPDFKit.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module LazyPDFKit { 2 | umbrella header "LazyPDFKit.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /LazyPDFKit.framework/Pen-Button-Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/Pen-Button-Y.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/Pen-Button-Y@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/Pen-Button-Y@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/Pen-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/Pen-Button.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/Pen-Button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/Pen-Button@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/VERSION: -------------------------------------------------------------------------------- 1 | LazyPDFKit 1.1 -------------------------------------------------------------------------------- /LazyPDFKit.framework/circle-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/circle-but.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/circle-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/circle-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/circlefill-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/circlefill-but.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/circlefill-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/circlefill-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/clear-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/clear-but.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/clear-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/clear-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/done-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/done-but.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/done-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/done-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/eraser-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/eraser-but.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/eraser-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/eraser-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/line-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/line-but.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/line-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/line-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/pen-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/pen-but.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/pen-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/pen-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/redo-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/redo-but.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/redo-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/redo-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/square-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/square-but.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/square-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/square-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/squarefill-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/squarefill-but.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/squarefill-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/squarefill-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/text-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/text-but.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/text-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/text-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/undo-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/undo-but.png -------------------------------------------------------------------------------- /LazyPDFKit.framework/undo-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.framework/undo-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LazyPDFKit.xcodeproj/project.xcworkspace/xcuserdata/ctepv1.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.xcodeproj/project.xcworkspace/xcuserdata/ctepv1.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LazyPDFKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /LazyPDFKit.xcworkspace/xcuserdata/ctepv1.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit.xcworkspace/xcuserdata/ctepv1.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LazyPDFKit/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/.DS_Store -------------------------------------------------------------------------------- /LazyPDFKit/Annotation.m: -------------------------------------------------------------------------------- 1 | // 2 | // Annotation.m 3 | // LazyPDFKitDemo 4 | // 5 | // Created by Palanisamy Easwaramoorthy on 3/3/15. 6 | // Copyright (c) 2015 Lazyprogram. All rights reserved. 7 | // 8 | 9 | #import "Annotation.h" 10 | #import "File.h" 11 | 12 | 13 | @implementation Annotation 14 | 15 | @dynamic image; 16 | @dynamic page; 17 | @dynamic file; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /LazyPDFKit/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/Default-568h@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/Default-667h@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/Default-736h@3x.png -------------------------------------------------------------------------------- /LazyPDFKit/File.m: -------------------------------------------------------------------------------- 1 | // 2 | // File.m 3 | // LazyPDFKitDemo 4 | // 5 | // Created by Palanisamy Easwaramoorthy on 3/3/15. 6 | // Copyright (c) 2015 Lazyprogram. All rights reserved. 7 | // 8 | 9 | #import "File.h" 10 | #import "Annotation.h" 11 | 12 | 13 | @implementation File 14 | 15 | @dynamic fileDate; 16 | @dynamic fileSize; 17 | @dynamic pageCount; 18 | @dynamic filePath; 19 | @dynamic annotation; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Button-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Button-H.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Button-H@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Button-H@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Button-N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Button-N.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Button-N@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Button-N@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Email.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Email@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Email@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Export.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Export@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Export@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Mark-N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Mark-N.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Mark-N@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Mark-N@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Mark-Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Mark-Y.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Mark-Y@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Mark-Y@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Print.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Print@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Print@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Thumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Thumbs.png -------------------------------------------------------------------------------- /LazyPDFKit/LazyPDF-Thumbs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/LazyPDF-Thumbs@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/Pen-Button-Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/Pen-Button-Y.png -------------------------------------------------------------------------------- /LazyPDFKit/Pen-Button-Y@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/Pen-Button-Y@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/Pen-Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/Pen-Button.png -------------------------------------------------------------------------------- /LazyPDFKit/Pen-Button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/Pen-Button@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/VERSION: -------------------------------------------------------------------------------- 1 | LazyPDFKit 1.1 -------------------------------------------------------------------------------- /LazyPDFKit/circle-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/circle-but.png -------------------------------------------------------------------------------- /LazyPDFKit/circle-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/circle-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/circlefill-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/circlefill-but.png -------------------------------------------------------------------------------- /LazyPDFKit/circlefill-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/circlefill-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/clear-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/clear-but.png -------------------------------------------------------------------------------- /LazyPDFKit/clear-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/clear-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/done-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/done-but.png -------------------------------------------------------------------------------- /LazyPDFKit/done-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/done-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/eraser-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/eraser-but.png -------------------------------------------------------------------------------- /LazyPDFKit/eraser-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/eraser-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/line-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/line-but.png -------------------------------------------------------------------------------- /LazyPDFKit/line-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/line-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/pen-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/pen-but.png -------------------------------------------------------------------------------- /LazyPDFKit/pen-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/pen-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/redo-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/redo-but.png -------------------------------------------------------------------------------- /LazyPDFKit/redo-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/redo-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/square-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/square-but.png -------------------------------------------------------------------------------- /LazyPDFKit/square-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/square-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/squarefill-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/squarefill-but.png -------------------------------------------------------------------------------- /LazyPDFKit/squarefill-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/squarefill-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/text-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/text-but.png -------------------------------------------------------------------------------- /LazyPDFKit/text-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/text-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKit/undo-but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/undo-but.png -------------------------------------------------------------------------------- /LazyPDFKit/undo-but@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKit/undo-but@2x.png -------------------------------------------------------------------------------- /LazyPDFKitDemo/LazyPDFKitDemo/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // LazyPDFKitDemo 4 | // 5 | // Created by Palanisamy Easwaramoorthy on 26/3/15. 6 | // Copyright (c) 2015 Lazyprogram. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /LazyPDFKitDemo/LazyPDFKitDemo/Document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/LazyPDFKitDemo/LazyPDFKitDemo/Document.pdf -------------------------------------------------------------------------------- /LazyPDFKitDemo/LazyPDFKitDemo/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // LazyPDFKitDemo 4 | // 5 | // Created by Palanisamy Easwaramoorthy on 26/3/15. 6 | // Copyright (c) 2015 Lazyprogram. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /LazyPDFKitDemo/LazyPDFKitDemo/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // LazyPDFKitDemo 4 | // 5 | // Created by Palanisamy Easwaramoorthy on 26/3/15. 6 | // Copyright (c) 2015 Lazyprogram. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Screenshots/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/Screenshots/Screenshot1.png -------------------------------------------------------------------------------- /build/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/.DS_Store -------------------------------------------------------------------------------- /build/LazyPDFKit.build/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/.DS_Store -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/DerivedSources/LazyPDFKit_vers.c: -------------------------------------------------------------------------------- 1 | const unsigned char LazyPDFKitVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:LazyPDFKit PROJECT:LazyPDFKit-1" "\n"; const double LazyPDFKitVersionNumber __attribute__ ((used)) = (double)1.; 2 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/LazyPDFColorPickerView-PartialInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/LazyPDFKit-all-non-framework-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/LazyPDFKit-all-non-framework-target-headers.hmap -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/LazyPDFKit-all-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/LazyPDFKit-all-target-headers.hmap -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/LazyPDFKit-generated-files.hmap: -------------------------------------------------------------------------------- 1 | pamhxy|LazyPDFKit_vers.c/Users/ctepv1/Desktop/lazypdfkit2/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/DerivedSources/LazyPDFKit/LazyPDFKit_vers.c -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/LazyPDFKit-own-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/LazyPDFKit-own-target-headers.hmap -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/LazyPDFKit-project-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/LazyPDFKit-project-headers.hmap -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/LazyPDFKit.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/LazyPDFKit.hmap -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/Annotation.d: -------------------------------------------------------------------------------- 1 | dependencies: /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.m \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.h \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/Annotation.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/Annotation.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/Annotation.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/Annotation.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/CGPDFDocument.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/CGPDFDocument.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/CGPDFDocument.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/CGPDFDocument.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/CGPDFDocument.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/File.d: -------------------------------------------------------------------------------- 1 | dependencies: /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.m \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.h \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/File.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/File.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/File.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/File.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorBarPicker.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorBarPicker.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorBarPicker.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorBarPicker.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorBarPicker.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorBarPicker.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorBarPicker.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorIndicatorView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorIndicatorView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorIndicatorView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorIndicatorView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorIndicatorView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorPickerController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorPickerController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorPickerController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorPickerController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorPickerNavigationController.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorPickerNavigationController.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorPickerNavigationController.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorPickerNavigationController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorPickerNavigationController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorPickerNavigationController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorPickerNavigationController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorSquarePicker.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorSquarePicker.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorSquarePicker.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorSquarePicker.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorSquarePicker.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorSquarePicker.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFColorSquarePicker.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFConstants.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFConstants.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFConstants.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFConstants.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFConstants.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFContentPage.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFContentPage.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFContentPage.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFContentPage.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFContentTile.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFContentTile.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFContentTile.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFContentTile.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFContentTile.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFContentTile.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFContentTile.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFContentView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFContentView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFContentView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFContentView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDataManager.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDataManager.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDataManager.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDataManager.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDataManager.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDataManager.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDataManager.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDocument.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDocument.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDocument.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDocument.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDocument.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDocumentOutline.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocumentOutline.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocumentOutline.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDocumentOutline.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDocumentOutline.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDocumentOutline.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDocumentOutline.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawToolbar.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawToolbar.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawToolbar.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h \ 6 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.h 7 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawToolbar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawToolbar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawToolbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawToolbar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawingTools.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingTools.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingTools.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawingTools.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawingTools.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawingTools.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawingTools.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawingView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingTools.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawingView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawingView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawingView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFDrawingView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFHSBSupport.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFHSBSupport.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFHSBSupport.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFHSBSupport.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFHSBSupport.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFKit -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFKit_vers.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/DerivedSources/LazyPDFKit_vers.c 3 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFKit_vers.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFKit_vers.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFKit_vers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFKit_vers.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFMainPagebar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFMainPagebar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFMainPagebar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFMainPagebar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFMainToolbar.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFMainToolbar.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFMainToolbar.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h \ 6 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.h 7 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFMainToolbar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFMainToolbar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFMainToolbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFMainToolbar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFPopoverController.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverController.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverController.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ARCMacros.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverView.h \ 6 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFTouchView.h 7 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFPopoverController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFPopoverController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFPopoverController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFPopoverController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFPopoverView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ARCMacros.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFPopoverView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFPopoverView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFPopoverView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFPopoverView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFPropertyController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFPropertyController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFPropertyController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFPropertyController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFSourceColorView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFSourceColorView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFSourceColorView.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFSourceColorView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFSourceColorView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFSourceColorView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFSourceColorView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbCache.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbCache.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbCache.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbCache.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbFetch.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbFetch.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbFetch.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbFetch.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbQueue.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbQueue.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbQueue.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbQueue.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbQueue.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbQueue.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbQueue.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbRender.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbRender.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbRender.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbRender.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbRequest.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbRequest.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbRequest.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbRequest.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbRequest.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbRequest.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbRequest.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbsView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbsView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbsView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbsView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbsView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbsView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFThumbsView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFTouchView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFTouchView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFTouchView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ARCMacros.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFTouchView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFTouchView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFTouchView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFTouchView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFViewController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFViewController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFViewController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/LazyPDFViewController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/ThumbsMainToolbar.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ThumbsMainToolbar.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ThumbsMainToolbar.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/ThumbsMainToolbar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/ThumbsMainToolbar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/ThumbsMainToolbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/ThumbsMainToolbar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/ThumbsViewController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/ThumbsViewController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/ThumbsViewController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/ThumbsViewController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/UIXToolbarView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/UIXToolbarView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/UIXToolbarView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/UIXToolbarView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/arm64/UIXToolbarView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/Annotation.d: -------------------------------------------------------------------------------- 1 | dependencies: /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.m \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.h \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/Annotation.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/Annotation.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/Annotation.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/Annotation.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/CGPDFDocument.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/CGPDFDocument.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/CGPDFDocument.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/CGPDFDocument.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/CGPDFDocument.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/File.d: -------------------------------------------------------------------------------- 1 | dependencies: /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.m \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.h \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/File.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/File.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/File.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/File.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorBarPicker.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorBarPicker.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorBarPicker.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorBarPicker.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorBarPicker.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorBarPicker.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorBarPicker.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorIndicatorView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorIndicatorView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorIndicatorView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorIndicatorView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorIndicatorView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorPickerController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorPickerController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorPickerController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorPickerController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorPickerNavigationController.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorPickerNavigationController.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorPickerNavigationController.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorPickerNavigationController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorPickerNavigationController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorPickerNavigationController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorPickerNavigationController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorSquarePicker.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorSquarePicker.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorSquarePicker.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorSquarePicker.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorSquarePicker.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorSquarePicker.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFColorSquarePicker.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFConstants.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFConstants.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFConstants.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFConstants.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFConstants.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFContentPage.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFContentPage.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFContentPage.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFContentPage.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFContentTile.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFContentTile.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFContentTile.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFContentTile.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFContentTile.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFContentTile.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFContentTile.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFContentView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFContentView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFContentView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFContentView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDataManager.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDataManager.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDataManager.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDataManager.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDataManager.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDataManager.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDataManager.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDocument.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDocument.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDocument.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDocument.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDocument.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDocumentOutline.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocumentOutline.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocumentOutline.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDocumentOutline.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDocumentOutline.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDocumentOutline.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDocumentOutline.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawToolbar.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawToolbar.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawToolbar.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h \ 6 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.h 7 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawToolbar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawToolbar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawToolbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawToolbar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawingTools.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingTools.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingTools.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawingTools.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawingTools.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawingTools.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawingTools.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawingView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingTools.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawingView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawingView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawingView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFDrawingView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFHSBSupport.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFHSBSupport.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFHSBSupport.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFHSBSupport.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFHSBSupport.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFKit -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFKit_vers.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/DerivedSources/LazyPDFKit_vers.c 3 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFKit_vers.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFKit_vers.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFKit_vers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFKit_vers.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFMainPagebar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFMainPagebar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFMainPagebar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFMainPagebar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFMainToolbar.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFMainToolbar.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFMainToolbar.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h \ 6 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.h 7 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFMainToolbar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFMainToolbar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFMainToolbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFMainToolbar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFPopoverController.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverController.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverController.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ARCMacros.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverView.h \ 6 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFTouchView.h 7 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFPopoverController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFPopoverController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFPopoverController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFPopoverController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFPopoverView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ARCMacros.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFPopoverView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFPopoverView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFPopoverView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFPopoverView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFPropertyController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFPropertyController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFPropertyController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFPropertyController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFSourceColorView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFSourceColorView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFSourceColorView.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFSourceColorView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFSourceColorView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFSourceColorView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFSourceColorView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbCache.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbCache.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbCache.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbCache.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbFetch.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbFetch.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbFetch.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbFetch.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbQueue.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbQueue.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbQueue.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbQueue.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbQueue.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbQueue.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbQueue.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbRender.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbRender.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbRender.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbRender.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbRequest.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbRequest.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbRequest.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbRequest.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbRequest.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbRequest.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbRequest.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbsView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbsView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbsView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbsView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbsView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbsView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFThumbsView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFTouchView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFTouchView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFTouchView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ARCMacros.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFTouchView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFTouchView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFTouchView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFTouchView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFViewController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFViewController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFViewController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/LazyPDFViewController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/ThumbsMainToolbar.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ThumbsMainToolbar.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ThumbsMainToolbar.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/ThumbsMainToolbar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/ThumbsMainToolbar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/ThumbsMainToolbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/ThumbsMainToolbar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/ThumbsViewController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/ThumbsViewController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/ThumbsViewController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/ThumbsViewController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/UIXToolbarView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/UIXToolbarView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/UIXToolbarView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/UIXToolbarView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/Objects-normal/armv7/UIXToolbarView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/dgph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphoneos/LazyPDFKit.build/dgph -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/DerivedSources/LazyPDFKit_vers.c: -------------------------------------------------------------------------------- 1 | const unsigned char LazyPDFKitVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:LazyPDFKit PROJECT:LazyPDFKit-1" "\n"; const double LazyPDFKitVersionNumber __attribute__ ((used)) = (double)1.; 2 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/LazyPDFColorPickerView-PartialInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/LazyPDFKit-all-non-framework-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/LazyPDFKit-all-non-framework-target-headers.hmap -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/LazyPDFKit-all-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/LazyPDFKit-all-target-headers.hmap -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/LazyPDFKit-generated-files.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/LazyPDFKit-generated-files.hmap -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/LazyPDFKit-own-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/LazyPDFKit-own-target-headers.hmap -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/LazyPDFKit-project-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/LazyPDFKit-project-headers.hmap -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/LazyPDFKit.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/LazyPDFKit.hmap -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/Annotation.d: -------------------------------------------------------------------------------- 1 | dependencies: /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.m \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.h \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/Annotation.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/Annotation.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/Annotation.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/Annotation.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/CGPDFDocument.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/CGPDFDocument.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/CGPDFDocument.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/CGPDFDocument.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/CGPDFDocument.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/File.d: -------------------------------------------------------------------------------- 1 | dependencies: /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.m \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.h \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/File.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/File.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/File.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/File.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorBarPicker.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorBarPicker.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorBarPicker.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorBarPicker.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorBarPicker.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorBarPicker.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorBarPicker.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorIndicatorView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorIndicatorView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorIndicatorView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorIndicatorView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorIndicatorView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorPickerController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorPickerController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorPickerController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorPickerController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorPickerNavigationController.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorPickerNavigationController.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorPickerNavigationController.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorPickerNavigationController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorPickerNavigationController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorPickerNavigationController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorPickerNavigationController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorSquarePicker.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorSquarePicker.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorSquarePicker.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorSquarePicker.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorSquarePicker.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorSquarePicker.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFColorSquarePicker.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFConstants.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFConstants.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFConstants.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFConstants.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFConstants.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFContentPage.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFContentPage.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFContentPage.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFContentPage.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFContentTile.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFContentTile.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFContentTile.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFContentTile.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFContentTile.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFContentTile.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFContentTile.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFContentView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFContentView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFContentView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFContentView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDataManager.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDataManager.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDataManager.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDataManager.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDataManager.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDataManager.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDataManager.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDocument.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDocument.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDocument.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDocument.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDocument.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDocumentOutline.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocumentOutline.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocumentOutline.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDocumentOutline.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDocumentOutline.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDocumentOutline.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDocumentOutline.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawToolbar.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawToolbar.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawToolbar.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h \ 6 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.h 7 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawToolbar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawToolbar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawToolbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawToolbar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawingTools.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingTools.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingTools.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawingTools.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawingTools.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawingTools.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawingTools.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawingView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingTools.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawingView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawingView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawingView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFDrawingView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFHSBSupport.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFHSBSupport.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFHSBSupport.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFHSBSupport.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFHSBSupport.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFKit -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFKit_vers.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/DerivedSources/LazyPDFKit_vers.c 3 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFKit_vers.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFKit_vers.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFKit_vers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFKit_vers.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFMainPagebar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFMainPagebar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFMainPagebar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFMainPagebar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFMainToolbar.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFMainToolbar.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFMainToolbar.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h \ 6 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.h 7 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFMainToolbar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFMainToolbar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFMainToolbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFMainToolbar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFPopoverController.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverController.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverController.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ARCMacros.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverView.h \ 6 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFTouchView.h 7 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFPopoverController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFPopoverController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFPopoverController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFPopoverController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFPopoverView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ARCMacros.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFPopoverView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFPopoverView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFPopoverView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFPopoverView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFPropertyController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFPropertyController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFPropertyController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFPropertyController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFSourceColorView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFSourceColorView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFSourceColorView.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFSourceColorView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFSourceColorView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFSourceColorView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFSourceColorView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbCache.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbCache.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbCache.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbCache.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbFetch.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbFetch.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbFetch.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbFetch.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbQueue.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbQueue.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbQueue.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbQueue.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbQueue.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbQueue.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbQueue.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbRender.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbRender.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbRender.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbRender.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbRequest.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbRequest.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbRequest.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbRequest.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbRequest.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbRequest.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbRequest.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbsView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbsView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbsView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbsView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbsView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbsView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFThumbsView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFTouchView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFTouchView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFTouchView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ARCMacros.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFTouchView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFTouchView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFTouchView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFTouchView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFViewController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFViewController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFViewController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/LazyPDFViewController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/ThumbsMainToolbar.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ThumbsMainToolbar.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ThumbsMainToolbar.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/ThumbsMainToolbar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/ThumbsMainToolbar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/ThumbsMainToolbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/ThumbsMainToolbar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/ThumbsViewController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/ThumbsViewController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/ThumbsViewController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/ThumbsViewController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/UIXToolbarView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/UIXToolbarView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/UIXToolbarView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/UIXToolbarView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/i386/UIXToolbarView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/Annotation.d: -------------------------------------------------------------------------------- 1 | dependencies: /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.m \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.h \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/Annotation.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/Annotation.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/Annotation.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/Annotation.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/CGPDFDocument.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/CGPDFDocument.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/CGPDFDocument.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/CGPDFDocument.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/CGPDFDocument.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/File.d: -------------------------------------------------------------------------------- 1 | dependencies: /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.m \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.h \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/File.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/File.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/File.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/File.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorBarPicker.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorBarPicker.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorBarPicker.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorBarPicker.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorBarPicker.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorBarPicker.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorBarPicker.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorIndicatorView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorIndicatorView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorIndicatorView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorIndicatorView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorIndicatorView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorPickerController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorPickerController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorPickerController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorPickerController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorPickerNavigationController.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorPickerNavigationController.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorPickerNavigationController.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorPickerNavigationController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorPickerNavigationController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorPickerNavigationController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorPickerNavigationController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorSquarePicker.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorSquarePicker.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorSquarePicker.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFColorIndicatorView.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorSquarePicker.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorSquarePicker.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorSquarePicker.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFColorSquarePicker.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFConstants.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFConstants.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFConstants.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFConstants.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFConstants.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFContentPage.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFContentPage.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFContentPage.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFContentPage.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFContentTile.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFContentTile.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFContentTile.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFContentTile.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFContentTile.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFContentTile.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFContentTile.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFContentView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFContentView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFContentView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFContentView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDataManager.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDataManager.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDataManager.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/File.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/Annotation.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDataManager.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDataManager.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDataManager.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDataManager.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDocument.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDocument.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDocument.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDocument.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDocument.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDocumentOutline.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocumentOutline.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocumentOutline.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/CGPDFDocument.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDocumentOutline.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDocumentOutline.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDocumentOutline.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDocumentOutline.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawToolbar.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawToolbar.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawToolbar.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h \ 6 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.h 7 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawToolbar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawToolbar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawToolbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawToolbar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawingTools.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingTools.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingTools.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawingTools.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawingTools.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawingTools.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawingTools.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawingView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDrawingTools.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawingView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawingView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawingView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFDrawingView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFHSBSupport.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFHSBSupport.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFHSBSupport.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFHSBSupport.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFHSBSupport.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFHSBSupport.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFKit -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFKit_vers.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/DerivedSources/LazyPDFKit_vers.c 3 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFKit_vers.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFKit_vers.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFKit_vers.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFKit_vers.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFMainPagebar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFMainPagebar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFMainPagebar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFMainPagebar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFMainToolbar.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFMainToolbar.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFMainToolbar.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h \ 6 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFDocument.h 7 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFMainToolbar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFMainToolbar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFMainToolbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFMainToolbar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFPopoverController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFPopoverController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFPopoverController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFPopoverController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFPopoverView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFPopoverView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ARCMacros.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFPopoverView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFPopoverView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFPopoverView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFPopoverView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFPropertyController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFPropertyController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFPropertyController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFPropertyController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFSourceColorView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFSourceColorView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFSourceColorView.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFSourceColorView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFSourceColorView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFSourceColorView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFSourceColorView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbCache.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbCache.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbCache.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbCache.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbFetch.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbFetch.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbFetch.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbFetch.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbQueue.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbQueue.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbQueue.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbQueue.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbQueue.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbQueue.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbQueue.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbRender.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbRender.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbRender.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbRender.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbRequest.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbRequest.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbRequest.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbRequest.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbRequest.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbRequest.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbRequest.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.h 4 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbsView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbsView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbsView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFThumbView.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbsView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbsView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbsView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFThumbsView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFTouchView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFTouchView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFTouchView.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ARCMacros.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFTouchView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFTouchView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFTouchView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFTouchView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFViewController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFViewController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFViewController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/LazyPDFViewController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/ThumbsMainToolbar.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ThumbsMainToolbar.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/ThumbsMainToolbar.h \ 5 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h 6 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/ThumbsMainToolbar.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/ThumbsMainToolbar.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/ThumbsMainToolbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/ThumbsMainToolbar.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/ThumbsViewController.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/ThumbsViewController.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/ThumbsViewController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/ThumbsViewController.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/UIXToolbarView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.m \ 3 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/LazyPDFConstants.h \ 4 | /Users/ctepv1/Desktop/lazypdfkit2/LazyPDFKit/UIXToolbarView.h 5 | -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/UIXToolbarView.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/UIXToolbarView.dia -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/UIXToolbarView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/Objects-normal/x86_64/UIXToolbarView.o -------------------------------------------------------------------------------- /build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/dgph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyprogram/LazyPDFKit/a1684c53f355d4b031f4b54b0dceb3e0758cf423/build/LazyPDFKit.build/Debug-iphonesimulator/LazyPDFKit.build/dgph --------------------------------------------------------------------------------