gitextract_iq1mvdbh/ ├── .gitignore ├── LICENSE ├── There/ │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Earth.imageset/ │ │ │ └── Contents.json │ │ ├── Logo.imageset/ │ │ │ └── Contents.json │ │ ├── Night.imageset/ │ │ │ └── Contents.json │ │ ├── appIcon.imageset/ │ │ │ └── Contents.json │ │ ├── early-afternoon.imageset/ │ │ │ └── Contents.json │ │ ├── early-evening.imageset/ │ │ │ └── Contents.json │ │ ├── early-morning.imageset/ │ │ │ └── Contents.json │ │ ├── evening.imageset/ │ │ │ └── Contents.json │ │ ├── late-afternoon.imageset/ │ │ │ └── Contents.json │ │ ├── late-morning.imageset/ │ │ │ └── Contents.json │ │ ├── telegram-logo.imageset/ │ │ │ └── Contents.json │ │ └── twitter.imageset/ │ │ └── Contents.json │ ├── ContentView.swift │ ├── Data/ │ │ ├── Database.swift │ │ ├── Entry.swift │ │ ├── Fetcher.swift │ │ ├── LaunchAgent.swift │ │ ├── Persistence.swift │ │ ├── Router.swift │ │ ├── SearchCompleter.swift │ │ └── Utilities.swift │ ├── Preview Content/ │ │ └── Preview Assets.xcassets/ │ │ └── Contents.json │ ├── There.entitlements │ ├── ThereApp.swift │ ├── UI/ │ │ ├── Button.swift │ │ ├── Heading.swift │ │ ├── Input.swift │ │ ├── Label.swift │ │ ├── LocalImageView.swift │ │ ├── Titlebar.swift │ │ └── TransparentBackgroundView.swift │ ├── Views/ │ │ ├── ButtomBar/ │ │ │ ├── AddButton.swift │ │ │ ├── BottomBarView.swift │ │ │ └── SettingsButton.swift │ │ ├── CLAuthorizationStatus+Description.swift │ │ ├── EmptyTimezoneView.swift │ │ ├── EntryUI/ │ │ │ ├── EntryIcon.swift │ │ │ └── EntryRow.swift │ │ ├── MainView.swift │ │ ├── Onboarding/ │ │ │ ├── InitialView.swift │ │ │ ├── LeftPanel.swift │ │ │ └── RightPanel.swift │ │ └── Timezone/ │ │ ├── AddTimezone + Components.swift │ │ ├── AddTimezone + Functions.swift │ │ ├── AddTimezone.swift │ │ ├── EditTimeZone + Functions.swift │ │ ├── EditTimeZoneView.swift │ │ ├── FormSection.swift │ │ ├── IconSection.swift │ │ └── NotFoundView.swift │ └── pm.there.There.LaunchAgent.plist ├── ThereTests/ │ └── ThereTests.swift ├── ThereUITests/ │ ├── ThereUITests.swift │ └── ThereUITestsLaunchTests.swift └── readme.md