gitextract_zbz5km2e/ ├── .gitignore ├── .swiftlint.yml ├── .travis.yml ├── LICENSE ├── Podfile ├── README.md ├── fastlane/ │ ├── Appfile │ ├── Fastfile │ └── README.md ├── insights-for-instagram/ │ ├── Account/ │ │ ├── AccountViewController.swift │ │ ├── AddAccountInteractor.swift │ │ ├── AddAccountPresenter.swift │ │ └── AddAccountViewController.swift │ ├── App/ │ │ ├── AppConfiguration.swift │ │ ├── AppDelegate.swift │ │ ├── AppExtensions.swift │ │ └── AppUserAccount.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── chevron_location_.imageset/ │ │ │ └── Contents.json │ │ ├── icons8-Male User Filled_30.imageset/ │ │ │ └── Contents.json │ │ ├── line-chart-graph.imageset/ │ │ │ └── Contents.json │ │ ├── placeHolder.imageset/ │ │ │ └── Contents.json │ │ └── user-icon.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── Main.storyboard │ ├── Info.plist │ ├── Insights/ │ │ ├── InsightsInteractor.swift │ │ ├── InsightsPresenter.swift │ │ ├── InsightsViewController.swift │ │ └── Views/ │ │ ├── InstagramMediaCollectionViewCell.swift │ │ └── InstagramMediaSectionTableViewCell.swift │ ├── LaunchScreen.storyboard │ ├── Models/ │ │ └── InstagramMedia.swift │ ├── Networking/ │ │ └── InstagramAPI.swift │ └── Services/ │ └── DataService.swift ├── insights-for-instagram.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── insights-for-instagram.xcscheme ├── insights-for-instagram.xcworkspace/ │ └── contents.xcworkspacedata └── insights-for-instagramTests/ ├── Info.plist ├── InstagramAPITests.swift └── InstagramMediaTests.swift