gitextract_mf5e3epg/ ├── .github/ │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── .swift-version ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Findme/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── back_icon.imageset/ │ │ │ └── Contents.json │ │ ├── camera_icon.imageset/ │ │ │ └── Contents.json │ │ ├── clock_icon.imageset/ │ │ │ └── Contents.json │ │ ├── close.imageset/ │ │ │ └── Contents.json │ │ ├── conver_icon.imageset/ │ │ │ └── Contents.json │ │ ├── head_image.imageset/ │ │ │ └── Contents.json │ │ ├── mail_icon.imageset/ │ │ │ └── Contents.json │ │ ├── surprise_1024.imageset/ │ │ │ └── Contents.json │ │ └── trash_icon.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── extension/ │ │ ├── SCNVector3Extensions.swift │ │ ├── StringExtension.swift │ │ ├── UIColorExtension.swift │ │ ├── UIFontExtension.swift │ │ └── UIImageExtension.swift │ ├── model/ │ │ ├── Constant.swift │ │ └── Route.swift │ ├── service/ │ │ └── RouteCacheService.swift │ ├── util/ │ │ ├── FileUtil.swift │ │ ├── NodeUtil.swift │ │ ├── ShareUtil.swift │ │ └── camera/ │ │ ├── CaptureObject.swift │ │ └── PreviewView.swift │ ├── view/ │ │ ├── DashedBorderView.swift │ │ ├── HomeTableViewCell.swift │ │ ├── NavigationBar.swift │ │ ├── NavigationItem.swift │ │ ├── SwitchView.swift │ │ └── SwitchView.xib │ └── viewcontroller/ │ ├── HomeViewController.swift │ ├── SearchSceneViewController.swift │ ├── StoreSceneViewController.swift │ └── TestViewController.swift ├── Findme.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── Findme.xcscheme ├── Findme.xcworkspace/ │ └── contents.xcworkspacedata ├── FindmeTests/ │ ├── FindmeTests.swift │ └── Info.plist ├── FindmeUITests/ │ ├── FindmeUITests.swift │ └── Info.plist ├── LICENSE ├── Podfile └── README.md