├── Screenshots ├── Preview.gif ├── Screenshot.png └── Screenshot_1334.png ├── .github └── FUNDING.yml ├── TimeZonePickerExample ├── TimeZonePickerExample.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── TimeZonePickerExample.xcscheme │ └── project.pbxproj ├── Podfile ├── TimeZonePickerExample.xcworkspace │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── contents.xcworkspacedata └── TimeZonePickerExample │ ├── ViewController.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ └── AppDelegate.swift ├── Classes ├── TimeZonePickerDelegate.swift ├── CityCountryTimeZone.swift ├── TimeZonePickerViewController.swift └── TimeZonePickerDataSource.swift ├── TimeZonePicker.podspec ├── bitrise.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── README.md ├── Resources ├── TimeZonePicker.storyboard └── CitiesAndTimeZones.json └── LICENSE /Screenshots/Preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gligorkot/TimeZonePicker/HEAD/Screenshots/Preview.gif -------------------------------------------------------------------------------- /Screenshots/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gligorkot/TimeZonePicker/HEAD/Screenshots/Screenshot.png -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: gligorkot 4 | ko_fi: gligor 5 | -------------------------------------------------------------------------------- /Screenshots/Screenshot_1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gligorkot/TimeZonePicker/HEAD/Screenshots/Screenshot_1334.png -------------------------------------------------------------------------------- /TimeZonePickerExample/TimeZonePickerExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TimeZonePickerExample/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | 3 | use_frameworks! 4 | 5 | workspace 'TimeZonePickerExample' 6 | 7 | target :'TimeZonePickerExample' do 8 | project 'TimeZonePickerExample.xcodeproj' 9 | platform :ios, '8.0' 10 | 11 | pod 'TimeZonePicker', :path => '../' 12 | end 13 | -------------------------------------------------------------------------------- /TimeZonePickerExample/TimeZonePickerExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TimeZonePickerExample/TimeZonePickerExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Classes/TimeZonePickerDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TimeZonePickerDelegate.swift 3 | // TimeZonePicker 4 | // 5 | // Created by Gligor Kotushevski on 19/07/17. 6 | // Copyright © 2017 Gligor Kotushevski. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public protocol TimeZonePickerDelegate: class { 12 | func timeZonePicker(_ timeZonePicker: TimeZonePickerViewController, didSelectTimeZone timeZone: TimeZone) 13 | } 14 | -------------------------------------------------------------------------------- /TimeZonePickerExample/TimeZonePickerExample/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // TimeZonePickerExample 4 | // 5 | // Created by Gligor Kotushevski on 19/07/17. 6 | // Copyright © 2017 Gligor Kotushevski. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import TimeZonePicker 11 | 12 | class ViewController: UIViewController { 13 | 14 | @IBOutlet weak var timeZoneName: UILabel! 15 | @IBOutlet weak var timeZoneOffset: UILabel! 16 | 17 | @IBAction func selectTimeZoneTapped(_ sender: UIButton) { 18 | let timeZonePicker = TimeZonePickerViewController.getVC(withDelegate: self) 19 | present(timeZonePicker, animated: true, completion: nil) 20 | } 21 | 22 | } 23 | 24 | extension ViewController: TimeZonePickerDelegate { 25 | 26 | func timeZonePicker(_ timeZonePicker: TimeZonePickerViewController, didSelectTimeZone timeZone: TimeZone) { 27 | timeZoneName.text = timeZone.identifier 28 | timeZoneOffset.text = timeZone.abbreviation() 29 | timeZonePicker.dismiss(animated: true, completion: nil) 30 | } 31 | 32 | } 33 | 34 | -------------------------------------------------------------------------------- /TimeZonePicker.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | 3 | s.name = 'TimeZonePicker' 4 | s.version = '1.3.0' 5 | s.summary = 'A TimeZonePicker UIViewController similar to the iOS Settings app.' 6 | s.description = <<-DESC 7 | * A ready view controller that can be used in any iOS app. 8 | * Search/filter functionality ready using a search bar. 9 | * Selection invokes a delegate with the selected TimeZone. 10 | DESC 11 | s.homepage = 'https://github.com/gligorkot/TimeZonePicker' 12 | s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' } 13 | s.author = { 'Gligor Kotushevski' => 'gligorkot@gmail.com' } 14 | s.social_media_url = 'https://twitter.com/gligor_nz' 15 | s.platform = :ios, '8.0' 16 | s.ios.deployment_target = '8.0' 17 | s.source = { :git => 'https://github.com/gligorkot/TimeZonePicker.git', :tag => s.version.to_s } 18 | 19 | s.source_files = 'Classes', 'Classes/*.{swift}' 20 | s.resources = 'Resources/*.{json,storyboard}' 21 | s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.2' } 22 | 23 | s.frameworks = 'UIKit' 24 | s.requires_arc = true 25 | s.swift_versions = ['4.0', '4.1', '4.2', '5.0', '5.1', '5.2'] 26 | 27 | end 28 | -------------------------------------------------------------------------------- /TimeZonePickerExample/TimeZonePickerExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "29x29", 36 | "scale" : "1x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "29x29", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "40x40", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "40x40", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "76x76", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "76x76", 61 | "scale" : "2x" 62 | } 63 | ], 64 | "info" : { 65 | "version" : 1, 66 | "author" : "xcode" 67 | } 68 | } -------------------------------------------------------------------------------- /bitrise.yml: -------------------------------------------------------------------------------- 1 | --- 2 | format_version: '6' 3 | default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git 4 | project_type: ios 5 | trigger_map: 6 | - pull_request_source_branch: "*" 7 | workflow: primary 8 | workflows: 9 | primary: 10 | steps: 11 | - activate-ssh-key: 12 | run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}' 13 | - git-clone: {} 14 | - cache-pull: {} 15 | - script: 16 | title: Pod Lint 17 | inputs: 18 | - content: |- 19 | #!/usr/bin/env bash 20 | # fail if any commands fails 21 | set -e 22 | # debug log 23 | set -x 24 | 25 | pod lib lint --verbose --fail-fast 26 | pod repo update 27 | - script: 28 | inputs: 29 | - content: |- 30 | #!/usr/bin/env bash 31 | # fail if any commands fails 32 | set -e 33 | # debug log 34 | set -x 35 | 36 | cd TimeZonePickerExample && pod install 37 | 38 | xcodebuild -workspace TimeZonePickerExample.xcworkspace -scheme TimeZonePickerExample -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO 39 | title: XCode Build 40 | - cache-push: {} 41 | app: 42 | envs: 43 | - opts: 44 | is_expand: false 45 | BITRISE_PROJECT_PATH: TimeZonePickerExample/TimeZonePickerExample.xcworkspace 46 | - opts: 47 | is_expand: false 48 | BITRISE_SCHEME: TimeZonePickerExample 49 | - opts: 50 | is_expand: false 51 | BITRISE_EXPORT_METHOD: development 52 | -------------------------------------------------------------------------------- /TimeZonePickerExample/TimeZonePickerExample/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UILaunchStoryboardName 24 | LaunchScreen 25 | UIMainStoryboardFile 26 | Main 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UISupportedInterfaceOrientations~ipad 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationPortraitUpsideDown 41 | UIInterfaceOrientationLandscapeLeft 42 | UIInterfaceOrientationLandscapeRight 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## Build generated 6 | build/ 7 | DerivedData/ 8 | 9 | ## Various settings 10 | *.pbxuser 11 | !default.pbxuser 12 | *.mode1v3 13 | !default.mode1v3 14 | *.mode2v3 15 | !default.mode2v3 16 | *.perspectivev3 17 | !default.perspectivev3 18 | xcuserdata/ 19 | 20 | ## Other 21 | *.moved-aside 22 | *.xccheckout 23 | *.xcscmblueprint 24 | 25 | ## Obj-C/Swift specific 26 | *.hmap 27 | *.ipa 28 | *.dSYM.zip 29 | *.dSYM 30 | 31 | ## Playgrounds 32 | timeline.xctimeline 33 | playground.xcworkspace 34 | 35 | # Swift Package Manager 36 | # 37 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 38 | # Packages/ 39 | # Package.pins 40 | .build/ 41 | 42 | # CocoaPods 43 | # 44 | # We recommend against adding the Pods directory to your .gitignore. However 45 | # you should judge for yourself, the pros and cons are mentioned at: 46 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 47 | # 48 | Pods/ 49 | Podfile.lock 50 | 51 | # Carthage 52 | # 53 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 54 | # Carthage/Checkouts 55 | 56 | Carthage/Build 57 | 58 | # fastlane 59 | # 60 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 61 | # screenshots whenever they are needed. 62 | # For more information about the recommended setup visit: 63 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 64 | 65 | fastlane/report.xml 66 | fastlane/Preview.html 67 | fastlane/screenshots 68 | fastlane/test_output 69 | *.DS_Store 70 | -------------------------------------------------------------------------------- /Classes/CityCountryTimeZone.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CityCountryTimeZone.swift 3 | // TimeZonePicker 4 | // 5 | // Created by Gligor Kotushevski on 19/07/17. 6 | // Copyright © 2017 Gligor Kotushevski. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct CityCountryTimeZone: Codable { 12 | 13 | let city: String 14 | let country: String 15 | let timeZoneName: String 16 | 17 | init(city: String, country: String, timeZoneName: String) { 18 | self.city = city 19 | self.country = country 20 | self.timeZoneName = timeZoneName 21 | } 22 | 23 | func contains(_ string: String) -> Bool { 24 | return city.lowercased().contains(string.lowercased()) || country.lowercased().contains(string.lowercased()) 25 | } 26 | 27 | func string() -> String { 28 | if country.isEmpty { 29 | return city 30 | } 31 | return "\(city), \(country)" 32 | } 33 | 34 | } 35 | 36 | extension CityCountryTimeZone: Equatable, Comparable { 37 | 38 | static func ==(lhs: CityCountryTimeZone, rhs: CityCountryTimeZone) -> Bool { 39 | return lhs.city == rhs.city && lhs.country == rhs.country && lhs.timeZoneName == rhs.timeZoneName 40 | } 41 | 42 | static func <(lhs: CityCountryTimeZone, rhs: CityCountryTimeZone) -> Bool { 43 | return lhs.city < rhs.city 44 | } 45 | 46 | static func <=(lhs: CityCountryTimeZone, rhs: CityCountryTimeZone) -> Bool { 47 | return lhs.city <= rhs.city 48 | } 49 | 50 | static func >=(lhs: CityCountryTimeZone, rhs: CityCountryTimeZone) -> Bool { 51 | return lhs.city >= rhs.city 52 | } 53 | 54 | static func >(lhs: CityCountryTimeZone, rhs: CityCountryTimeZone) -> Bool { 55 | return lhs.city > rhs.city 56 | } 57 | 58 | } 59 | -------------------------------------------------------------------------------- /TimeZonePickerExample/TimeZonePickerExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /TimeZonePickerExample/TimeZonePickerExample/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // TimeZonePickerExample 4 | // 5 | // Created by Gligor Kotushevski on 19/07/17. 6 | // Copyright © 2017 Gligor Kotushevski. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Classes/TimeZonePickerViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TimeZonePickerViewController.swift 3 | // TimeZonePicker 4 | // 5 | // Created by Gligor Kotushevski on 19/07/17. 6 | // Copyright © 2017 Gligor Kotushevski. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | public final class TimeZonePickerViewController: UIViewController { 12 | 13 | @IBOutlet weak var searchBar: UISearchBar! 14 | @IBOutlet weak var tableView: UITableView! 15 | 16 | public class func getVC(withDelegate delegate: TimeZonePickerDelegate) -> UINavigationController { 17 | let storyboard = UIStoryboard(name: "TimeZonePicker", bundle: Bundle(for: TimeZonePickerViewController.self)) 18 | let nc = storyboard.instantiateInitialViewController() as! UINavigationController 19 | if let vc = nc.topViewController as? TimeZonePickerViewController { 20 | vc.delegate = delegate 21 | } 22 | return nc 23 | } 24 | 25 | private lazy var dataSource: TimeZonePickerDataSource = { 26 | let ds = TimeZonePickerDataSource(tableView: self.tableView) 27 | ds.delegate = self 28 | return ds 29 | }() 30 | 31 | weak var delegate: TimeZonePickerDelegate? 32 | 33 | override public func viewDidLoad() { 34 | super.viewDidLoad() 35 | configureTableView() 36 | configureSearchBar() 37 | } 38 | 39 | override public func viewWillAppear(_ animated: Bool) { 40 | super.viewWillAppear(animated) 41 | update() 42 | DispatchQueue.main.async { 43 | self.searchBar.becomeFirstResponder() 44 | } 45 | } 46 | 47 | private func update() { 48 | dataSource.update { _ in 49 | DispatchQueue.main.async { 50 | self.tableView.reloadData() 51 | } 52 | } 53 | } 54 | 55 | private func configureTableView() { 56 | tableView.tableFooterView = UIView() 57 | tableView.keyboardDismissMode = .onDrag 58 | } 59 | 60 | private func configureSearchBar() { 61 | searchBar.delegate = self 62 | } 63 | 64 | @IBAction func cancelTapped(_ sender: UIBarButtonItem) { 65 | self.dismiss(animated: true, completion: nil) 66 | } 67 | } 68 | 69 | extension TimeZonePickerViewController: UISearchBarDelegate { 70 | 71 | public func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) { 72 | dataSource.filter(searchText) 73 | tableView.reloadData() 74 | } 75 | 76 | } 77 | 78 | extension TimeZonePickerViewController: TimeZonePickerDataSourceDelegate { 79 | 80 | func timeZonePickerDataSource(_ timeZonePickerDataSource: TimeZonePickerDataSource, didSelectTimeZone timeZone: TimeZone) { 81 | delegate?.timeZonePicker(self, didSelectTimeZone: timeZone) 82 | } 83 | 84 | } 85 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | ## Our Standards 8 | 9 | Examples of behavior that contributes to creating a positive environment include: 10 | 11 | * Using welcoming and inclusive language 12 | * Being respectful of differing viewpoints and experiences 13 | * Gracefully accepting constructive criticism 14 | * Focusing on what is best for the community 15 | * Showing empathy towards other community members 16 | 17 | Examples of unacceptable behavior by participants include: 18 | 19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 20 | * Trolling, insulting/derogatory comments, and personal or political attacks 21 | * Public or private harassment 22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 23 | * Other conduct which could reasonably be considered inappropriate in a professional setting 24 | 25 | ## Our Responsibilities 26 | 27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 28 | 29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | ## Scope 32 | 33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 34 | 35 | ## Enforcement 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at gligorkot@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 38 | 39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 40 | 41 | ## Attribution 42 | 43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 44 | 45 | [homepage]: http://contributor-covenant.org 46 | [version]: http://contributor-covenant.org/version/1/4/ 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TimeZonePicker 2 | 3 | [![Build Status](https://app.bitrise.io/app/a8aacfeca49db0dd/status.svg?token=SyGPKzROHbYxep4c9-9czA)](https://app.bitrise.io/app/a8aacfeca49db0dd) 4 | [![codebeat badge](https://codebeat.co/badges/dac53a60-fe1f-4b5f-9098-99b17d720977)](https://codebeat.co/projects/github-com-gligorkot-timezonepicker-master) 5 | [![Version](https://img.shields.io/cocoapods/v/TimeZonePicker.svg)](http://cocoadocs.org/docsets/TimeZonePicker) 6 | [![License](https://img.shields.io/cocoapods/l/TimeZonePicker.svg)](http://cocoadocs.org/docsets/TimeZonePicker) 7 | [![Platform](https://img.shields.io/cocoapods/p/TimeZonePicker.svg)](http://cocoadocs.org/docsets/TimeZonePicker) 8 | 9 | Buy Me a Coffee at ko-fi.com 10 | 11 | A TimeZonePicker UIViewController similar to the iOS Settings app. Search and select from a range of cities and countries to find your most suitable time zone. 12 | 13 | ## Screenshots 14 | 15 | ![](Screenshots/Screenshot.png) 16 | ![](Screenshots/Preview.gif) 17 | 18 | ## Installation 19 | 20 | ### CocoaPods 21 | 22 | To install it in your iOS project, install with [CocoaPods](http://cocoapods.org) 23 | 24 | ```ruby 25 | pod 'TimeZonePicker' 26 | ``` 27 | 28 | ## Usage 29 | 30 | ### Basic Initialisation 31 | 32 | To initialise a `timeZonePicker` you can use the class function `getVC(withDelegate: TimeZonePickerDelegate)` on the `TimeZonePickerViewController` as below: 33 | 34 | ```swift 35 | let timeZonePicker = TimeZonePickerViewController.getVC(withDelegate: self) 36 | ``` 37 | 38 | Then you can use the `timeZonePicker` as you would any `UIViewController`, for example: 39 | 40 | ```swift 41 | present(timeZonePicker, animated: true, completion: nil) 42 | ``` 43 | 44 | ### TimeZonePickerDelegate 45 | 46 | The `TimeZonePickerDelegate` currently has only one method that needs to be implemented: 47 | 48 | ```swift 49 | func timeZonePicker(_ timeZonePicker: TimeZonePickerViewController, didSelectTimeZone timeZone: TimeZone) 50 | ``` 51 | 52 | Once an item is selected from the table of cities/countries the above delegate method gets called, conveniently returning the `TimeZonePickerViewController` and the selected `TimeZone`. You can use the `timeZonePicker` to dismiss it here and the `timeZone` as you need it in your application. For example: 53 | 54 | ```swift 55 | func timeZonePicker(_ timeZonePicker: TimeZonePickerViewController, didSelectTimeZone timeZone: TimeZone) { 56 | timeZoneName.text = timeZone.identifier 57 | timeZoneOffset.text = timeZone.abbreviation() 58 | timeZonePicker.dismiss(animated: true, completion: nil) 59 | } 60 | ``` 61 | 62 | Please check the `TimeZonePickerExample` project for the above usage example. If you have any questions do not hesitate to get in touch with me. 63 | 64 | ## Requirements 65 | 66 | * iOS 8 or later. 67 | * Swift 3 68 | 69 | ## License 70 | Copyright (c) 2017 Gligor Kotushevski 71 | 72 | Licensed under the Apache License, Version 2.0 (the "License"); 73 | you may not use this file except in compliance with the License. 74 | You may obtain a copy of the License at 75 | 76 | http://www.apache.org/licenses/LICENSE-2.0 77 | 78 | Unless required by applicable law or agreed to in writing, software 79 | distributed under the License is distributed on an "AS IS" BASIS, 80 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 81 | See the License for the specific language governing permissions and 82 | limitations under the License. 83 | -------------------------------------------------------------------------------- /TimeZonePickerExample/TimeZonePickerExample.xcodeproj/xcshareddata/xcschemes/TimeZonePickerExample.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /Classes/TimeZonePickerDataSource.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TimeZonePickerDataSource.swift 3 | // TimeZonePicker 4 | // 5 | // Created by Gligor Kotushevski on 19/07/17. 6 | // Copyright © 2017 Gligor Kotushevski. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | protocol TimeZonePickerDataSourceDelegate: class { 12 | func timeZonePickerDataSource(_ timeZonePickerDataSource: TimeZonePickerDataSource, didSelectTimeZone timeZone: TimeZone) 13 | } 14 | 15 | final class TimeZonePickerDataSource: NSObject { 16 | 17 | private let tableView: UITableView 18 | private var timeZones: [CityCountryTimeZone] = [] 19 | 20 | private var searchText = "" 21 | private var filteredTimeZones: [CityCountryTimeZone] { 22 | if searchText.isEmpty { 23 | return timeZones 24 | } else { 25 | return timeZones.filter({ return $0.contains(searchText) }) 26 | } 27 | } 28 | 29 | weak var delegate: TimeZonePickerDataSourceDelegate? 30 | 31 | init(tableView: UITableView) { 32 | self.tableView = tableView 33 | super.init() 34 | tableView.dataSource = self 35 | tableView.delegate = self 36 | } 37 | 38 | func update(onComplete: @escaping (_ successful: Bool) -> ()) { 39 | DispatchQueue.global(qos: .userInitiated).async { 40 | do { 41 | if let file = Bundle(for: TimeZonePickerDataSource.self).url(forResource: "CitiesAndTimeZones", withExtension: "json") { 42 | let data = try Data(contentsOf: file) 43 | do { 44 | var timeZones = try JSONDecoder().decode([CityCountryTimeZone].self, from: data) 45 | timeZones.sort() 46 | 47 | DispatchQueue.main.async { 48 | self.timeZones = timeZones 49 | self.filter("") 50 | onComplete(true) 51 | } 52 | } catch { 53 | 54 | // should never get here / invalid json 55 | onComplete(false) 56 | } 57 | } else { 58 | // should never get here / file does not exist 59 | onComplete(false) 60 | } 61 | } catch { 62 | // should never get here / unless Data or JSONSerialization throw an error 63 | onComplete(false) 64 | } 65 | } 66 | } 67 | 68 | func filter(_ searchString: String) { 69 | searchText = searchString 70 | } 71 | 72 | } 73 | 74 | extension TimeZonePickerDataSource: UITableViewDataSource, UITableViewDelegate { 75 | 76 | func numberOfSections(in tableView: UITableView) -> Int { 77 | return 1 78 | } 79 | 80 | func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 81 | return filteredTimeZones.count 82 | } 83 | 84 | func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 85 | if let cell = tableView.dequeueReusableCell(withIdentifier: "cell") { 86 | cell.textLabel?.text = filteredTimeZones[indexPath.item].string() 87 | return cell 88 | } 89 | let cell = UITableViewCell(style: .default, reuseIdentifier: "cell") 90 | cell.textLabel?.text = filteredTimeZones[indexPath.item].string() 91 | return cell 92 | } 93 | 94 | func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { 95 | tableView.deselectRow(at: indexPath, animated: true) 96 | let selectedItem = filteredTimeZones[indexPath.item] 97 | if let selectedTimeZone = TimeZone(identifier: selectedItem.timeZoneName) { 98 | delegate?.timeZonePickerDataSource(self, didSelectTimeZone: selectedTimeZone) 99 | } 100 | } 101 | 102 | } 103 | -------------------------------------------------------------------------------- /TimeZonePickerExample/TimeZonePickerExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 31 | 37 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /Resources/TimeZonePicker.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright (c) 2017 Gligor Kotushevski 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /TimeZonePickerExample/TimeZonePickerExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 816C9956D327E21EA9B50EB1 /* Pods_TimeZonePickerExample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E1C61849259DB08CEC6EC37C /* Pods_TimeZonePickerExample.framework */; }; 11 | 86612C981F1EF2C60014E5F7 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86612C971F1EF2C60014E5F7 /* AppDelegate.swift */; }; 12 | 86612C9A1F1EF2C60014E5F7 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86612C991F1EF2C60014E5F7 /* ViewController.swift */; }; 13 | 86612C9D1F1EF2C60014E5F7 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 86612C9B1F1EF2C60014E5F7 /* Main.storyboard */; }; 14 | 86612C9F1F1EF2C60014E5F7 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 86612C9E1F1EF2C60014E5F7 /* Assets.xcassets */; }; 15 | 86612CA21F1EF2C60014E5F7 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 86612CA01F1EF2C60014E5F7 /* LaunchScreen.storyboard */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXFileReference section */ 19 | 544791C442E2E721D0ACE3D3 /* Pods-TimeZonePickerExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TimeZonePickerExample.debug.xcconfig"; path = "Pods/Target Support Files/Pods-TimeZonePickerExample/Pods-TimeZonePickerExample.debug.xcconfig"; sourceTree = ""; }; 20 | 86612C941F1EF2C60014E5F7 /* TimeZonePickerExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TimeZonePickerExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 21 | 86612C971F1EF2C60014E5F7 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 22 | 86612C991F1EF2C60014E5F7 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 23 | 86612C9C1F1EF2C60014E5F7 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 24 | 86612C9E1F1EF2C60014E5F7 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 25 | 86612CA11F1EF2C60014E5F7 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 26 | 86612CA31F1EF2C60014E5F7 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 27 | A71DA50BD38F84915B68CE3F /* Pods-TimeZonePickerExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TimeZonePickerExample.release.xcconfig"; path = "Pods/Target Support Files/Pods-TimeZonePickerExample/Pods-TimeZonePickerExample.release.xcconfig"; sourceTree = ""; }; 28 | E1C61849259DB08CEC6EC37C /* Pods_TimeZonePickerExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TimeZonePickerExample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 29 | /* End PBXFileReference section */ 30 | 31 | /* Begin PBXFrameworksBuildPhase section */ 32 | 86612C911F1EF2C60014E5F7 /* Frameworks */ = { 33 | isa = PBXFrameworksBuildPhase; 34 | buildActionMask = 2147483647; 35 | files = ( 36 | 816C9956D327E21EA9B50EB1 /* Pods_TimeZonePickerExample.framework in Frameworks */, 37 | ); 38 | runOnlyForDeploymentPostprocessing = 0; 39 | }; 40 | /* End PBXFrameworksBuildPhase section */ 41 | 42 | /* Begin PBXGroup section */ 43 | 61D8B5B5E12BDB04E6931EBF /* Frameworks */ = { 44 | isa = PBXGroup; 45 | children = ( 46 | E1C61849259DB08CEC6EC37C /* Pods_TimeZonePickerExample.framework */, 47 | ); 48 | name = Frameworks; 49 | sourceTree = ""; 50 | }; 51 | 86612C8B1F1EF2C60014E5F7 = { 52 | isa = PBXGroup; 53 | children = ( 54 | 86612C961F1EF2C60014E5F7 /* TimeZonePickerExample */, 55 | 86612C951F1EF2C60014E5F7 /* Products */, 56 | B80F0D83B87D319529FC8924 /* Pods */, 57 | 61D8B5B5E12BDB04E6931EBF /* Frameworks */, 58 | ); 59 | sourceTree = ""; 60 | }; 61 | 86612C951F1EF2C60014E5F7 /* Products */ = { 62 | isa = PBXGroup; 63 | children = ( 64 | 86612C941F1EF2C60014E5F7 /* TimeZonePickerExample.app */, 65 | ); 66 | name = Products; 67 | sourceTree = ""; 68 | }; 69 | 86612C961F1EF2C60014E5F7 /* TimeZonePickerExample */ = { 70 | isa = PBXGroup; 71 | children = ( 72 | 86612C971F1EF2C60014E5F7 /* AppDelegate.swift */, 73 | 86612C991F1EF2C60014E5F7 /* ViewController.swift */, 74 | 86612C9B1F1EF2C60014E5F7 /* Main.storyboard */, 75 | 86612C9E1F1EF2C60014E5F7 /* Assets.xcassets */, 76 | 86612CA01F1EF2C60014E5F7 /* LaunchScreen.storyboard */, 77 | 86612CA31F1EF2C60014E5F7 /* Info.plist */, 78 | ); 79 | path = TimeZonePickerExample; 80 | sourceTree = ""; 81 | }; 82 | B80F0D83B87D319529FC8924 /* Pods */ = { 83 | isa = PBXGroup; 84 | children = ( 85 | 544791C442E2E721D0ACE3D3 /* Pods-TimeZonePickerExample.debug.xcconfig */, 86 | A71DA50BD38F84915B68CE3F /* Pods-TimeZonePickerExample.release.xcconfig */, 87 | ); 88 | name = Pods; 89 | sourceTree = ""; 90 | }; 91 | /* End PBXGroup section */ 92 | 93 | /* Begin PBXNativeTarget section */ 94 | 86612C931F1EF2C60014E5F7 /* TimeZonePickerExample */ = { 95 | isa = PBXNativeTarget; 96 | buildConfigurationList = 86612CA61F1EF2C60014E5F7 /* Build configuration list for PBXNativeTarget "TimeZonePickerExample" */; 97 | buildPhases = ( 98 | 89464388E57C15836503EE25 /* [CP] Check Pods Manifest.lock */, 99 | 86612C901F1EF2C60014E5F7 /* Sources */, 100 | 86612C911F1EF2C60014E5F7 /* Frameworks */, 101 | 86612C921F1EF2C60014E5F7 /* Resources */, 102 | 291DA8ED189F8F3B450C4CF6 /* [CP] Embed Pods Frameworks */, 103 | ); 104 | buildRules = ( 105 | ); 106 | dependencies = ( 107 | ); 108 | name = TimeZonePickerExample; 109 | productName = TimeZonePickerExample; 110 | productReference = 86612C941F1EF2C60014E5F7 /* TimeZonePickerExample.app */; 111 | productType = "com.apple.product-type.application"; 112 | }; 113 | /* End PBXNativeTarget section */ 114 | 115 | /* Begin PBXProject section */ 116 | 86612C8C1F1EF2C60014E5F7 /* Project object */ = { 117 | isa = PBXProject; 118 | attributes = { 119 | LastSwiftUpdateCheck = 0830; 120 | LastUpgradeCheck = 1020; 121 | ORGANIZATIONNAME = "Gligor Kotushevski"; 122 | TargetAttributes = { 123 | 86612C931F1EF2C60014E5F7 = { 124 | CreatedOnToolsVersion = 8.3.3; 125 | LastSwiftMigration = 0900; 126 | ProvisioningStyle = Automatic; 127 | }; 128 | }; 129 | }; 130 | buildConfigurationList = 86612C8F1F1EF2C60014E5F7 /* Build configuration list for PBXProject "TimeZonePickerExample" */; 131 | compatibilityVersion = "Xcode 3.2"; 132 | developmentRegion = en; 133 | hasScannedForEncodings = 0; 134 | knownRegions = ( 135 | en, 136 | Base, 137 | ); 138 | mainGroup = 86612C8B1F1EF2C60014E5F7; 139 | productRefGroup = 86612C951F1EF2C60014E5F7 /* Products */; 140 | projectDirPath = ""; 141 | projectRoot = ""; 142 | targets = ( 143 | 86612C931F1EF2C60014E5F7 /* TimeZonePickerExample */, 144 | ); 145 | }; 146 | /* End PBXProject section */ 147 | 148 | /* Begin PBXResourcesBuildPhase section */ 149 | 86612C921F1EF2C60014E5F7 /* Resources */ = { 150 | isa = PBXResourcesBuildPhase; 151 | buildActionMask = 2147483647; 152 | files = ( 153 | 86612CA21F1EF2C60014E5F7 /* LaunchScreen.storyboard in Resources */, 154 | 86612C9F1F1EF2C60014E5F7 /* Assets.xcassets in Resources */, 155 | 86612C9D1F1EF2C60014E5F7 /* Main.storyboard in Resources */, 156 | ); 157 | runOnlyForDeploymentPostprocessing = 0; 158 | }; 159 | /* End PBXResourcesBuildPhase section */ 160 | 161 | /* Begin PBXShellScriptBuildPhase section */ 162 | 291DA8ED189F8F3B450C4CF6 /* [CP] Embed Pods Frameworks */ = { 163 | isa = PBXShellScriptBuildPhase; 164 | buildActionMask = 2147483647; 165 | files = ( 166 | ); 167 | inputPaths = ( 168 | "${PODS_ROOT}/Target Support Files/Pods-TimeZonePickerExample/Pods-TimeZonePickerExample-frameworks.sh", 169 | "${BUILT_PRODUCTS_DIR}/TimeZonePicker/TimeZonePicker.framework", 170 | ); 171 | name = "[CP] Embed Pods Frameworks"; 172 | outputPaths = ( 173 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/TimeZonePicker.framework", 174 | ); 175 | runOnlyForDeploymentPostprocessing = 0; 176 | shellPath = /bin/sh; 177 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-TimeZonePickerExample/Pods-TimeZonePickerExample-frameworks.sh\"\n"; 178 | showEnvVarsInLog = 0; 179 | }; 180 | 89464388E57C15836503EE25 /* [CP] Check Pods Manifest.lock */ = { 181 | isa = PBXShellScriptBuildPhase; 182 | buildActionMask = 2147483647; 183 | files = ( 184 | ); 185 | inputPaths = ( 186 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 187 | "${PODS_ROOT}/Manifest.lock", 188 | ); 189 | name = "[CP] Check Pods Manifest.lock"; 190 | outputPaths = ( 191 | "$(DERIVED_FILE_DIR)/Pods-TimeZonePickerExample-checkManifestLockResult.txt", 192 | ); 193 | runOnlyForDeploymentPostprocessing = 0; 194 | shellPath = /bin/sh; 195 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 196 | showEnvVarsInLog = 0; 197 | }; 198 | /* End PBXShellScriptBuildPhase section */ 199 | 200 | /* Begin PBXSourcesBuildPhase section */ 201 | 86612C901F1EF2C60014E5F7 /* Sources */ = { 202 | isa = PBXSourcesBuildPhase; 203 | buildActionMask = 2147483647; 204 | files = ( 205 | 86612C9A1F1EF2C60014E5F7 /* ViewController.swift in Sources */, 206 | 86612C981F1EF2C60014E5F7 /* AppDelegate.swift in Sources */, 207 | ); 208 | runOnlyForDeploymentPostprocessing = 0; 209 | }; 210 | /* End PBXSourcesBuildPhase section */ 211 | 212 | /* Begin PBXVariantGroup section */ 213 | 86612C9B1F1EF2C60014E5F7 /* Main.storyboard */ = { 214 | isa = PBXVariantGroup; 215 | children = ( 216 | 86612C9C1F1EF2C60014E5F7 /* Base */, 217 | ); 218 | name = Main.storyboard; 219 | sourceTree = ""; 220 | }; 221 | 86612CA01F1EF2C60014E5F7 /* LaunchScreen.storyboard */ = { 222 | isa = PBXVariantGroup; 223 | children = ( 224 | 86612CA11F1EF2C60014E5F7 /* Base */, 225 | ); 226 | name = LaunchScreen.storyboard; 227 | sourceTree = ""; 228 | }; 229 | /* End PBXVariantGroup section */ 230 | 231 | /* Begin XCBuildConfiguration section */ 232 | 86612CA41F1EF2C60014E5F7 /* Debug */ = { 233 | isa = XCBuildConfiguration; 234 | buildSettings = { 235 | ALWAYS_SEARCH_USER_PATHS = NO; 236 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 237 | CLANG_ANALYZER_NONNULL = YES; 238 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 239 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 240 | CLANG_CXX_LIBRARY = "libc++"; 241 | CLANG_ENABLE_MODULES = YES; 242 | CLANG_ENABLE_OBJC_ARC = YES; 243 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 244 | CLANG_WARN_BOOL_CONVERSION = YES; 245 | CLANG_WARN_COMMA = YES; 246 | CLANG_WARN_CONSTANT_CONVERSION = YES; 247 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 248 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 249 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 250 | CLANG_WARN_EMPTY_BODY = YES; 251 | CLANG_WARN_ENUM_CONVERSION = YES; 252 | CLANG_WARN_INFINITE_RECURSION = YES; 253 | CLANG_WARN_INT_CONVERSION = YES; 254 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 255 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 256 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 257 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 258 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 259 | CLANG_WARN_STRICT_PROTOTYPES = YES; 260 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 261 | CLANG_WARN_UNREACHABLE_CODE = YES; 262 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 263 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 264 | COPY_PHASE_STRIP = NO; 265 | DEBUG_INFORMATION_FORMAT = dwarf; 266 | ENABLE_STRICT_OBJC_MSGSEND = YES; 267 | ENABLE_TESTABILITY = YES; 268 | GCC_C_LANGUAGE_STANDARD = gnu99; 269 | GCC_DYNAMIC_NO_PIC = NO; 270 | GCC_NO_COMMON_BLOCKS = YES; 271 | GCC_OPTIMIZATION_LEVEL = 0; 272 | GCC_PREPROCESSOR_DEFINITIONS = ( 273 | "DEBUG=1", 274 | "$(inherited)", 275 | ); 276 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 277 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 278 | GCC_WARN_UNDECLARED_SELECTOR = YES; 279 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 280 | GCC_WARN_UNUSED_FUNCTION = YES; 281 | GCC_WARN_UNUSED_VARIABLE = YES; 282 | IPHONEOS_DEPLOYMENT_TARGET = 10.3; 283 | MTL_ENABLE_DEBUG_INFO = YES; 284 | ONLY_ACTIVE_ARCH = YES; 285 | SDKROOT = iphoneos; 286 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 287 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 288 | SWIFT_VERSION = 5.0; 289 | TARGETED_DEVICE_FAMILY = "1,2"; 290 | }; 291 | name = Debug; 292 | }; 293 | 86612CA51F1EF2C60014E5F7 /* Release */ = { 294 | isa = XCBuildConfiguration; 295 | buildSettings = { 296 | ALWAYS_SEARCH_USER_PATHS = NO; 297 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 298 | CLANG_ANALYZER_NONNULL = YES; 299 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 300 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 301 | CLANG_CXX_LIBRARY = "libc++"; 302 | CLANG_ENABLE_MODULES = YES; 303 | CLANG_ENABLE_OBJC_ARC = YES; 304 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 305 | CLANG_WARN_BOOL_CONVERSION = YES; 306 | CLANG_WARN_COMMA = YES; 307 | CLANG_WARN_CONSTANT_CONVERSION = YES; 308 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 309 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 310 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 311 | CLANG_WARN_EMPTY_BODY = YES; 312 | CLANG_WARN_ENUM_CONVERSION = YES; 313 | CLANG_WARN_INFINITE_RECURSION = YES; 314 | CLANG_WARN_INT_CONVERSION = YES; 315 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 316 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 317 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 318 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 319 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 320 | CLANG_WARN_STRICT_PROTOTYPES = YES; 321 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 322 | CLANG_WARN_UNREACHABLE_CODE = YES; 323 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 324 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 325 | COPY_PHASE_STRIP = NO; 326 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 327 | ENABLE_NS_ASSERTIONS = NO; 328 | ENABLE_STRICT_OBJC_MSGSEND = YES; 329 | GCC_C_LANGUAGE_STANDARD = gnu99; 330 | GCC_NO_COMMON_BLOCKS = YES; 331 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 332 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 333 | GCC_WARN_UNDECLARED_SELECTOR = YES; 334 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 335 | GCC_WARN_UNUSED_FUNCTION = YES; 336 | GCC_WARN_UNUSED_VARIABLE = YES; 337 | IPHONEOS_DEPLOYMENT_TARGET = 10.3; 338 | MTL_ENABLE_DEBUG_INFO = NO; 339 | SDKROOT = iphoneos; 340 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 341 | SWIFT_VERSION = 5.0; 342 | TARGETED_DEVICE_FAMILY = "1,2"; 343 | VALIDATE_PRODUCT = YES; 344 | }; 345 | name = Release; 346 | }; 347 | 86612CA71F1EF2C60014E5F7 /* Debug */ = { 348 | isa = XCBuildConfiguration; 349 | baseConfigurationReference = 544791C442E2E721D0ACE3D3 /* Pods-TimeZonePickerExample.debug.xcconfig */; 350 | buildSettings = { 351 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 352 | INFOPLIST_FILE = TimeZonePickerExample/Info.plist; 353 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 354 | PRODUCT_BUNDLE_IDENTIFIER = com.gligork.TimeZonePickerExample; 355 | PRODUCT_NAME = "$(TARGET_NAME)"; 356 | }; 357 | name = Debug; 358 | }; 359 | 86612CA81F1EF2C60014E5F7 /* Release */ = { 360 | isa = XCBuildConfiguration; 361 | baseConfigurationReference = A71DA50BD38F84915B68CE3F /* Pods-TimeZonePickerExample.release.xcconfig */; 362 | buildSettings = { 363 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 364 | INFOPLIST_FILE = TimeZonePickerExample/Info.plist; 365 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 366 | PRODUCT_BUNDLE_IDENTIFIER = com.gligork.TimeZonePickerExample; 367 | PRODUCT_NAME = "$(TARGET_NAME)"; 368 | }; 369 | name = Release; 370 | }; 371 | /* End XCBuildConfiguration section */ 372 | 373 | /* Begin XCConfigurationList section */ 374 | 86612C8F1F1EF2C60014E5F7 /* Build configuration list for PBXProject "TimeZonePickerExample" */ = { 375 | isa = XCConfigurationList; 376 | buildConfigurations = ( 377 | 86612CA41F1EF2C60014E5F7 /* Debug */, 378 | 86612CA51F1EF2C60014E5F7 /* Release */, 379 | ); 380 | defaultConfigurationIsVisible = 0; 381 | defaultConfigurationName = Release; 382 | }; 383 | 86612CA61F1EF2C60014E5F7 /* Build configuration list for PBXNativeTarget "TimeZonePickerExample" */ = { 384 | isa = XCConfigurationList; 385 | buildConfigurations = ( 386 | 86612CA71F1EF2C60014E5F7 /* Debug */, 387 | 86612CA81F1EF2C60014E5F7 /* Release */, 388 | ); 389 | defaultConfigurationIsVisible = 0; 390 | defaultConfigurationName = Release; 391 | }; 392 | /* End XCConfigurationList section */ 393 | }; 394 | rootObject = 86612C8C1F1EF2C60014E5F7 /* Project object */; 395 | } 396 | -------------------------------------------------------------------------------- /Resources/CitiesAndTimeZones.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "city": "Abidjan", 4 | "country": "Ivory Coast", 5 | "timeZoneName": "Africa/Bamako" 6 | }, 7 | { 8 | "city": "Abu Dhabi", 9 | "country": "U.A.E.", 10 | "timeZoneName": "Asia/Dubai" 11 | }, 12 | { 13 | "city": "Accra", 14 | "country": "Ghana", 15 | "timeZoneName": "Africa/Accra" 16 | }, 17 | { 18 | "city": "Adak", 19 | "country": "U.S.A.", 20 | "timeZoneName": "America/Adak" 21 | }, 22 | { 23 | "city": "Addis Ababa", 24 | "country": "Ethiopia", 25 | "timeZoneName": "Africa/Addis_Ababa" 26 | }, 27 | { 28 | "city": "Adelaide", 29 | "country": "Australia", 30 | "timeZoneName": "Australia/Adelaide" 31 | }, 32 | { 33 | "city": "Albuquerque", 34 | "country": "U.S.A.", 35 | "timeZoneName": "US/Mountain" 36 | }, 37 | { 38 | "city": "Algiers", 39 | "country": "Algeria", 40 | "timeZoneName": "Africa/Algiers" 41 | }, 42 | { 43 | "city": "Amman", 44 | "country": "Jordan", 45 | "timeZoneName": "Asia/Amman" 46 | }, 47 | { 48 | "city": "Amsterdam", 49 | "country": "Netherlands", 50 | "timeZoneName": "Europe/Amsterdam" 51 | }, 52 | { 53 | "city": "Anadyr", 54 | "country": "Russia", 55 | "timeZoneName": "Asia/Anadyr" 56 | }, 57 | { 58 | "city": "Antananarivo", 59 | "country": "Madagascar", 60 | "timeZoneName": "Indian/Antananarivo" 61 | }, 62 | { 63 | "city": "Anchorage", 64 | "country": "U.S.A.", 65 | "timeZoneName": "America/Anchorage" 66 | }, 67 | { 68 | "city": "Ankara", 69 | "country": "Turkey", 70 | "timeZoneName": "Europe/Istanbul" 71 | }, 72 | { 73 | "city": "Ashgabat", 74 | "country": "Turkmenistan", 75 | "timeZoneName": "Asia/Ashgabat" 76 | }, 77 | { 78 | "city": "Asmera", 79 | "country": "Eritrea", 80 | "timeZoneName": "Africa/Asmara" 81 | }, 82 | { 83 | "city": "Astana", 84 | "country": "Kazakhstan", 85 | "timeZoneName": "Asia/Almaty" 86 | }, 87 | { 88 | "city": "Asunción", 89 | "country": "Paraguay", 90 | "timeZoneName": "America/Asuncion" 91 | }, 92 | { 93 | "city": "Athens", 94 | "country": "Greece", 95 | "timeZoneName": "Europe/Athens" 96 | }, 97 | { 98 | "city": "Atlanta", 99 | "country": "U.S.A.", 100 | "timeZoneName": "US/Eastern" 101 | }, 102 | { 103 | "city": "Auckland", 104 | "country": "New Zealand", 105 | "timeZoneName": "Pacific/Auckland" 106 | }, 107 | { 108 | "city": "Austin", 109 | "country": "U.S.A.", 110 | "timeZoneName": "US/Central" 111 | }, 112 | { 113 | "city": "Baghdad", 114 | "country": "Iraq", 115 | "timeZoneName": "Asia/Baghdad" 116 | }, 117 | { 118 | "city": "Baku", 119 | "country": "Azerbaijan", 120 | "timeZoneName": "Asia/Baku" 121 | }, 122 | { 123 | "city": "Baltimore", 124 | "country": "U.S.A.", 125 | "timeZoneName": "US/Eastern" 126 | }, 127 | { 128 | "city": "Bamako", 129 | "country": "Mali", 130 | "timeZoneName": "Africa/Bamako" 131 | }, 132 | { 133 | "city": "Bangkok", 134 | "country": "Thailand", 135 | "timeZoneName": "Asia/Bangkok" 136 | }, 137 | { 138 | "city": "Bangui", 139 | "country": "Central African Republic", 140 | "timeZoneName": "Africa/Bangui" 141 | }, 142 | { 143 | "city": "Barcelona", 144 | "country": "Spain", 145 | "timeZoneName": "Europe/Madrid" 146 | }, 147 | { 148 | "city": "Bari", 149 | "country": "Italy", 150 | "timeZoneName": "Europe/Rome" 151 | }, 152 | { 153 | "city": "Basse-Terre", 154 | "country": "Guadeloupe", 155 | "timeZoneName": "America/Guadeloupe" 156 | }, 157 | { 158 | "city": "Beijing", 159 | "country": "China", 160 | "timeZoneName": "Asia/Shanghai" 161 | }, 162 | { 163 | "city": "Beirut", 164 | "country": "Lebanon", 165 | "timeZoneName": "Asia/Beirut" 166 | }, 167 | { 168 | "city": "Belgrade", 169 | "country": "Serbia", 170 | "timeZoneName": "Europe/Belgrade" 171 | }, 172 | { 173 | "city": "Belize City", 174 | "country": "Belize", 175 | "timeZoneName": "America/Belize" 176 | }, 177 | { 178 | "city": "Benicia", 179 | "country": "U.S.A.", 180 | "timeZoneName": "US/Pacific" 181 | }, 182 | { 183 | "city": "Berkeley", 184 | "country": "U.S.A.", 185 | "timeZoneName": "US/Pacific" 186 | }, 187 | { 188 | "city": "Berlin", 189 | "country": "Germany", 190 | "timeZoneName": "Europe/Berlin" 191 | }, 192 | { 193 | "city": "Bern", 194 | "country": "Switzerland", 195 | "timeZoneName": "Europe/Zurich" 196 | }, 197 | { 198 | "city": "Bishkek", 199 | "country": "Kyrgyzstan", 200 | "timeZoneName": "Asia/Bishkek" 201 | }, 202 | { 203 | "city": "Bissau", 204 | "country": "Guinea-Bissau", 205 | "timeZoneName": "Africa/Bissau" 206 | }, 207 | { 208 | "city": "Blacksburg", 209 | "country": "U.S.A.", 210 | "timeZoneName": "US/Eastern" 211 | }, 212 | { 213 | "city": "Bogotá", 214 | "country": "Colombia", 215 | "timeZoneName": "America/Bogota" 216 | }, 217 | { 218 | "city": "Bologna", 219 | "country": "Italy", 220 | "timeZoneName": "Europe/Rome" 221 | }, 222 | { 223 | "city": "Boston", 224 | "country": "U.S.A.", 225 | "timeZoneName": "US/Eastern" 226 | }, 227 | { 228 | "city": "Bratislava", 229 | "country": "Slovakia", 230 | "timeZoneName": "Europe/Bratislava" 231 | }, 232 | { 233 | "city": "Brasília", 234 | "country": "Brazil", 235 | "timeZoneName": "America/Sao_Paulo" 236 | }, 237 | { 238 | "city": "Bridgetown", 239 | "country": "Barbados", 240 | "timeZoneName": "America/Barbados" 241 | }, 242 | { 243 | "city": "Brisbane", 244 | "country": "Australia", 245 | "timeZoneName": "Australia/Brisbane" 246 | }, 247 | { 248 | "city": "Brussels", 249 | "country": "Belgium", 250 | "timeZoneName": "Europe/Brussels" 251 | }, 252 | { 253 | "city": "Bucharest", 254 | "country": "Romania", 255 | "timeZoneName": "Europe/Bucharest" 256 | }, 257 | { 258 | "city": "Budapest", 259 | "country": "Hungary", 260 | "timeZoneName": "Europe/Budapest" 261 | }, 262 | { 263 | "city": "Buenos Aires", 264 | "country": "Argentina", 265 | "timeZoneName": "America/Buenos_Aires" 266 | }, 267 | { 268 | "city": "Burlingame", 269 | "country": "U.S.A.", 270 | "timeZoneName": "US/Pacific" 271 | }, 272 | { 273 | "city": "Cairo", 274 | "country": "Egypt", 275 | "timeZoneName": "Africa/Cairo" 276 | }, 277 | { 278 | "city": "Calgary", 279 | "country": "Canada", 280 | "timeZoneName": "America/Edmonton" 281 | }, 282 | { 283 | "city": "Canary Islands", 284 | "country": "Spain", 285 | "timeZoneName": "Atlantic/Canary" 286 | }, 287 | { 288 | "city": "Canberra", 289 | "country": "Australia", 290 | "timeZoneName": "Australia/Canberra" 291 | }, 292 | { 293 | "city": "Canton", 294 | "country": "China", 295 | "timeZoneName": "Asia/Shanghai" 296 | }, 297 | { 298 | "city": "Cape Town", 299 | "country": "South Africa", 300 | "timeZoneName": "Africa/Johannesburg" 301 | }, 302 | { 303 | "city": "Caracas", 304 | "country": "Venezuela", 305 | "timeZoneName": "America/Caracas" 306 | }, 307 | { 308 | "city": "Cardiff", 309 | "country": "Wales", 310 | "timeZoneName": "Europe/London" 311 | }, 312 | { 313 | "city": "Catanzaro", 314 | "country": "Italy", 315 | "timeZoneName": "Europe/Rome" 316 | }, 317 | { 318 | "city": "Cayenne", 319 | "country": "French Guiana", 320 | "timeZoneName": "America/Cayenne" 321 | }, 322 | { 323 | "city": "Charlotte", 324 | "country": "U.S.A.", 325 | "timeZoneName": "US/Eastern" 326 | }, 327 | { 328 | "city": "Charlotte Amalie", 329 | "country": "U.S. Virgin Islands", 330 | "timeZoneName": "America/St_Thomas" 331 | }, 332 | { 333 | "city": "Chennai", 334 | "country": "India", 335 | "timeZoneName": "Asia/Kolkata" 336 | }, 337 | { 338 | "city": "Chicago", 339 | "country": "U.S.A.", 340 | "timeZoneName": "America/Chicago" 341 | }, 342 | { 343 | "city": "Chisinau", 344 | "country": "Moldova", 345 | "timeZoneName": "Europe/Chisinau" 346 | }, 347 | { 348 | "city": "Chita", 349 | "country": "Russia", 350 | "timeZoneName": "Asia/Yakutsk" 351 | }, 352 | { 353 | "city": "Cleveland", 354 | "country": "U.S.A.", 355 | "timeZoneName": "US/Eastern" 356 | }, 357 | { 358 | "city": "Colombo", 359 | "country": "Sri Lanka", 360 | "timeZoneName": "Asia/Colombo" 361 | }, 362 | { 363 | "city": "Columbus", 364 | "country": "U.S.A.", 365 | "timeZoneName": "US/Eastern" 366 | }, 367 | { 368 | "city": "Conakry", 369 | "country": "Guinea", 370 | "timeZoneName": "Africa/Conakry" 371 | }, 372 | { 373 | "city": "Copenhagen", 374 | "country": "Denmark", 375 | "timeZoneName": "Europe/Copenhagen" 376 | }, 377 | { 378 | "city": "Cupertino", 379 | "country": "U.S.A.", 380 | "timeZoneName": "US/Pacific" 381 | }, 382 | { 383 | "city": "Cork", 384 | "country": "Ireland", 385 | "timeZoneName": "Europe/Dublin" 386 | }, 387 | { 388 | "city": "Crotone", 389 | "country": "Italy", 390 | "timeZoneName": "Europe/Rome" 391 | }, 392 | { 393 | "city": "Dhaka", 394 | "country": "Bangladesh", 395 | "timeZoneName": "Asia/Dhaka" 396 | }, 397 | { 398 | "city": "Dakar", 399 | "country": "Senegal", 400 | "timeZoneName": "Africa/Dakar" 401 | }, 402 | { 403 | "city": "Dallas", 404 | "country": "U.S.A.", 405 | "timeZoneName": "US/Central" 406 | }, 407 | { 408 | "city": "Daly City", 409 | "country": "U.S.A.", 410 | "timeZoneName": "US/Pacific" 411 | }, 412 | { 413 | "city": "Damascus", 414 | "country": "Syria", 415 | "timeZoneName": "Asia/Damascus" 416 | }, 417 | { 418 | "city": "Dar es Salaam", 419 | "country": "Tanzania", 420 | "timeZoneName": "Africa/Dar_es_Salaam" 421 | }, 422 | { 423 | "city": "Darwin", 424 | "country": "Australia", 425 | "timeZoneName": "Australia/Darwin" 426 | }, 427 | { 428 | "city": "Denver", 429 | "country": "U.S.A.", 430 | "timeZoneName": "America/Denver" 431 | }, 432 | { 433 | "city": "Detroit", 434 | "country": "U.S.A.", 435 | "timeZoneName": "America/Detroit" 436 | }, 437 | { 438 | "city": "Djibouti", 439 | "country": "Djibouti", 440 | "timeZoneName": "Africa/Djibouti" 441 | }, 442 | { 443 | "city": "Doha", 444 | "country": "Qatar", 445 | "timeZoneName": "Asia/Qatar" 446 | }, 447 | { 448 | "city": "Douala", 449 | "country": "Cameroon", 450 | "timeZoneName": "Africa/Douala" 451 | }, 452 | { 453 | "city": "Dubai", 454 | "country": "U.A.E.", 455 | "timeZoneName": "Asia/Dubai" 456 | }, 457 | { 458 | "city": "Dublin", 459 | "country": "Ireland", 460 | "timeZoneName": "Europe/Dublin" 461 | }, 462 | { 463 | "city": "Dushanbe", 464 | "country": "Tajikistan", 465 | "timeZoneName": "Asia/Dushanbe" 466 | }, 467 | { 468 | "city": "Edinburgh", 469 | "country": "Scotland", 470 | "timeZoneName": "Europe/London" 471 | }, 472 | { 473 | "city": "El Paso", 474 | "country": "U.S.A.", 475 | "timeZoneName": "US/Mountain" 476 | }, 477 | { 478 | "city": "Florence", 479 | "country": "Italy", 480 | "timeZoneName": "Europe/Rome" 481 | }, 482 | { 483 | "city": "Fremont", 484 | "country": "U.S.A.", 485 | "timeZoneName": "US/Pacific" 486 | }, 487 | { 488 | "city": "Fort-de-France", 489 | "country": "Martinique", 490 | "timeZoneName": "America/Martinique" 491 | }, 492 | { 493 | "city": "Foster City", 494 | "country": "U.S.A.", 495 | "timeZoneName": "US/Pacific" 496 | }, 497 | { 498 | "city": "Freetown", 499 | "country": "Sierra Leone", 500 | "timeZoneName": "Africa/Freetown" 501 | }, 502 | { 503 | "city": "Gaborone", 504 | "country": "Botswana", 505 | "timeZoneName": "Africa/Gaborone" 506 | }, 507 | { 508 | "city": "Galápagos Islands", 509 | "country": "Ecuador", 510 | "timeZoneName": "Pacific/Galapagos" 511 | }, 512 | { 513 | "city": "Geneva", 514 | "country": "Switzerland", 515 | "timeZoneName": "Europe/Zurich" 516 | }, 517 | { 518 | "city": "Genoa", 519 | "country": "Italy", 520 | "timeZoneName": "Europe/Rome" 521 | }, 522 | { 523 | "city": "Georgetown", 524 | "country": "Guyana", 525 | "timeZoneName": "America/Guyana" 526 | }, 527 | { 528 | "city": "Grytviken", 529 | "country": "South Georgia", 530 | "timeZoneName": "Atlantic/South_Georgia" 531 | }, 532 | { 533 | "city": "Guam", 534 | "country": "Guam", 535 | "timeZoneName": "Pacific/Guam" 536 | }, 537 | { 538 | "city": "Guatemala City", 539 | "country": "Guatemala", 540 | "timeZoneName": "America/Guatemala" 541 | }, 542 | { 543 | "city": "Gustavia", 544 | "country": "Saint Barthelemy", 545 | "timeZoneName": "America/St_Barthelemy" 546 | }, 547 | { 548 | "city": "Halifax", 549 | "country": "Canada", 550 | "timeZoneName": "America/Halifax" 551 | }, 552 | { 553 | "city": "Hamburg", 554 | "country": "Germany", 555 | "timeZoneName": "Europe/Berlin" 556 | }, 557 | { 558 | "city": "Easter Island", 559 | "country": "Chile", 560 | "timeZoneName": "Pacific/Easter" 561 | }, 562 | { 563 | "city": "Hanoi", 564 | "country": "Vietnam", 565 | "timeZoneName": "Asia/Saigon" 566 | }, 567 | { 568 | "city": "Harare", 569 | "country": "Zimbabwe", 570 | "timeZoneName": "Africa/Harare" 571 | }, 572 | { 573 | "city": "Havana", 574 | "country": "Cuba", 575 | "timeZoneName": "America/Havana" 576 | }, 577 | { 578 | "city": "Healdsburg", 579 | "country": "U.S.A.", 580 | "timeZoneName": "US/Pacific" 581 | }, 582 | { 583 | "city": "Helsinki", 584 | "country": "Finland", 585 | "timeZoneName": "Europe/Helsinki" 586 | }, 587 | { 588 | "city": "Hobart", 589 | "country": "Australia", 590 | "timeZoneName": "Australia/Hobart" 591 | }, 592 | { 593 | "city": "Hong Kong", 594 | "country": "Hong Kong", 595 | "timeZoneName": "Asia/Hong_Kong" 596 | }, 597 | { 598 | "city": "Honolulu", 599 | "country": "U.S.A.", 600 | "timeZoneName": "Pacific/Honolulu" 601 | }, 602 | { 603 | "city": "Houston", 604 | "country": "U.S.A.", 605 | "timeZoneName": "US/Central" 606 | }, 607 | { 608 | "city": "Indianapolis", 609 | "country": "U.S.A.", 610 | "timeZoneName": "America/Indianapolis" 611 | }, 612 | { 613 | "city": "Irkutsk", 614 | "country": "Russia", 615 | "timeZoneName": "Asia/Irkutsk" 616 | }, 617 | { 618 | "city": "Islamabad", 619 | "country": "Pakistan", 620 | "timeZoneName": "Asia/Karachi" 621 | }, 622 | { 623 | "city": "Istanbul", 624 | "country": "Turkey", 625 | "timeZoneName": "Europe/Istanbul" 626 | }, 627 | { 628 | "city": "Jakarta", 629 | "country": "Indonesia", 630 | "timeZoneName": "Asia/Jakarta" 631 | }, 632 | { 633 | "city": "Jerusalem", 634 | "country": "", 635 | "timeZoneName": "Asia/Jerusalem" 636 | }, 637 | { 638 | "city": "Johannesburg", 639 | "country": "South Africa", 640 | "timeZoneName": "Africa/Johannesburg" 641 | }, 642 | { 643 | "city": "Kabul", 644 | "country": "Afghanistan", 645 | "timeZoneName": "Asia/Kabul" 646 | }, 647 | { 648 | "city": "Kaliningrad", 649 | "country": "Russia", 650 | "timeZoneName": "Europe/Kaliningrad" 651 | }, 652 | { 653 | "city": "Kampala", 654 | "country": "Uganda", 655 | "timeZoneName": "Africa/Kampala" 656 | }, 657 | { 658 | "city": "Kathmandu", 659 | "country": "Nepal", 660 | "timeZoneName": "Asia/Katmandu" 661 | }, 662 | { 663 | "city": "Khartoum", 664 | "country": "Sudan", 665 | "timeZoneName": "Africa/Khartoum" 666 | }, 667 | { 668 | "city": "Kiev", 669 | "country": "Ukraine", 670 | "timeZoneName": "Europe/Kiev" 671 | }, 672 | { 673 | "city": "Kingston", 674 | "country": "Jamaica", 675 | "timeZoneName": "America/Jamaica" 676 | }, 677 | { 678 | "city": "Kinshasa", 679 | "country": "Democratic Republic of the Congo", 680 | "timeZoneName": "Africa/Kinshasa" 681 | }, 682 | { 683 | "city": "Knoxville", 684 | "country": "U.S.A.", 685 | "timeZoneName": "US/Eastern" 686 | }, 687 | { 688 | "city": "Kolkata", 689 | "country": "India", 690 | "timeZoneName": "Asia/Kolkata" 691 | }, 692 | { 693 | "city": "Krasnoyarsk", 694 | "country": "Russia", 695 | "timeZoneName": "Asia/Krasnoyarsk" 696 | }, 697 | { 698 | "city": "Kuala Lumpur", 699 | "country": "Malaysia", 700 | "timeZoneName": "Asia/Kuala_Lumpur" 701 | }, 702 | { 703 | "city": "Kuwait", 704 | "country": "Kuwait", 705 | "timeZoneName": "Asia/Kuwait" 706 | }, 707 | { 708 | "city": "La Paz", 709 | "country": "Bolivia", 710 | "timeZoneName": "America/La_Paz" 711 | }, 712 | { 713 | "city": "Lagos", 714 | "country": "Nigeria", 715 | "timeZoneName": "Africa/Lagos" 716 | }, 717 | { 718 | "city": "Las Vegas", 719 | "country": "U.S.A.", 720 | "timeZoneName": "US/Pacific" 721 | }, 722 | { 723 | "city": "Lima", 724 | "country": "Peru", 725 | "timeZoneName": "America/Lima" 726 | }, 727 | { 728 | "city": "Lisbon", 729 | "country": "Portugal", 730 | "timeZoneName": "Europe/Lisbon" 731 | }, 732 | { 733 | "city": "Little Rock", 734 | "country": "U.S.A.", 735 | "timeZoneName": "US/Central" 736 | }, 737 | { 738 | "city": "Ljubljana", 739 | "country": "Slovenia", 740 | "timeZoneName": "Europe/Ljubljana" 741 | }, 742 | { 743 | "city": "London", 744 | "country": "England", 745 | "timeZoneName": "Europe/London" 746 | }, 747 | { 748 | "city": "Los Altos", 749 | "country": "U.S.A.", 750 | "timeZoneName": "US/Pacific" 751 | }, 752 | { 753 | "city": "Los Angeles", 754 | "country": "U.S.A.", 755 | "timeZoneName": "America/Los_Angeles" 756 | }, 757 | { 758 | "city": "Los Gatos", 759 | "country": "U.S.A.", 760 | "timeZoneName": "US/Pacific" 761 | }, 762 | { 763 | "city": "Louisville", 764 | "country": "U.S.A.", 765 | "timeZoneName": "US/Eastern" 766 | }, 767 | { 768 | "city": "Luanda", 769 | "country": "Angola", 770 | "timeZoneName": "Africa/Luanda" 771 | }, 772 | { 773 | "city": "Lusaka", 774 | "country": "Zambia", 775 | "timeZoneName": "Africa/Lusaka" 776 | }, 777 | { 778 | "city": "Luxembourg", 779 | "country": "Luxembourg", 780 | "timeZoneName": "Europe/Luxembourg" 781 | }, 782 | { 783 | "city": "Macau", 784 | "country": "Macau", 785 | "timeZoneName": "Asia/Macau" 786 | }, 787 | { 788 | "city": "Madison", 789 | "country": "U.S.A.", 790 | "timeZoneName": "US/Central" 791 | }, 792 | { 793 | "city": "Madrid", 794 | "country": "Spain", 795 | "timeZoneName": "Europe/Madrid" 796 | }, 797 | { 798 | "city": "Malabo", 799 | "country": "Equatorial Guinea", 800 | "timeZoneName": "Africa/Malabo" 801 | }, 802 | { 803 | "city": "Male", 804 | "country": "Maldives", 805 | "timeZoneName": "Indian/Maldives" 806 | }, 807 | { 808 | "city": "Managua", 809 | "country": "Nicaragua", 810 | "timeZoneName": "America/Managua" 811 | }, 812 | { 813 | "city": "Manama", 814 | "country": "Bahrain", 815 | "timeZoneName": "Asia/Bahrain" 816 | }, 817 | { 818 | "city": "Marigot", 819 | "country": "Saint Martin", 820 | "timeZoneName": "America/Marigot" 821 | }, 822 | { 823 | "city": "Manila", 824 | "country": "Philippines", 825 | "timeZoneName": "Asia/Manila" 826 | }, 827 | { 828 | "city": "Maputo", 829 | "country": "Mozambique", 830 | "timeZoneName": "Africa/Maputo" 831 | }, 832 | { 833 | "city": "Mecca", 834 | "country": "Saudi Arabia", 835 | "timeZoneName": "Asia/Riyadh" 836 | }, 837 | { 838 | "city": "Melbourne", 839 | "country": "Australia", 840 | "timeZoneName": "Australia/Melbourne" 841 | }, 842 | { 843 | "city": "Memphis", 844 | "country": "U.S.A.", 845 | "timeZoneName": "US/Central" 846 | }, 847 | { 848 | "city": "Menlo Park", 849 | "country": "U.S.A.", 850 | "timeZoneName": "US/Pacific" 851 | }, 852 | { 853 | "city": "Messina", 854 | "country": "Italy", 855 | "timeZoneName": "Europe/Rome" 856 | }, 857 | { 858 | "city": "Mexico City", 859 | "country": "Mexico", 860 | "timeZoneName": "America/Mexico_City" 861 | }, 862 | { 863 | "city": "Miami", 864 | "country": "U.S.A.", 865 | "timeZoneName": "US/Eastern" 866 | }, 867 | { 868 | "city": "Milan", 869 | "country": "Italy", 870 | "timeZoneName": "Europe/Rome" 871 | }, 872 | { 873 | "city": "Milbank", 874 | "country": "U.S.A.", 875 | "timeZoneName": "US/Central" 876 | }, 877 | { 878 | "city": "Milwaukee", 879 | "country": "U.S.A.", 880 | "timeZoneName": "US/Central" 881 | }, 882 | { 883 | "city": "Minneapolis", 884 | "country": "U.S.A.", 885 | "timeZoneName": "US/Central" 886 | }, 887 | { 888 | "city": "Minsk", 889 | "country": "Belarus", 890 | "timeZoneName": "Europe/Minsk" 891 | }, 892 | { 893 | "city": "Magadan", 894 | "country": "Russia", 895 | "timeZoneName": "Asia/Magadan" 896 | }, 897 | { 898 | "city": "Mogadishu", 899 | "country": "Somalia", 900 | "timeZoneName": "Africa/Mogadishu" 901 | }, 902 | { 903 | "city": "Monrovia", 904 | "country": "Liberia", 905 | "timeZoneName": "Africa/Monrovia" 906 | }, 907 | { 908 | "city": "Montevideo", 909 | "country": "Uruguay", 910 | "timeZoneName": "America/Montevideo" 911 | }, 912 | { 913 | "city": "Montpelier", 914 | "country": "U.S.A.", 915 | "timeZoneName": "US/Eastern" 916 | }, 917 | { 918 | "city": "Montreal", 919 | "country": "Canada", 920 | "timeZoneName": "America/Montreal" 921 | }, 922 | { 923 | "city": "Moscow", 924 | "country": "Russia", 925 | "timeZoneName": "Europe/Moscow" 926 | }, 927 | { 928 | "city": "Monterey", 929 | "country": "U.S.A.", 930 | "timeZoneName": "US/Pacific" 931 | }, 932 | { 933 | "city": "Mountain View", 934 | "country": "U.S.A.", 935 | "timeZoneName": "US/Pacific" 936 | }, 937 | { 938 | "city": "Mumbai", 939 | "country": "India", 940 | "timeZoneName": "Asia/Kolkata" 941 | }, 942 | { 943 | "city": "Munich", 944 | "country": "Germany", 945 | "timeZoneName": "Europe/Berlin" 946 | }, 947 | { 948 | "city": "Muscat", 949 | "country": "Oman", 950 | "timeZoneName": "Asia/Muscat" 951 | }, 952 | { 953 | "city": "Napa", 954 | "country": "U.S.A.", 955 | "timeZoneName": "US/Pacific" 956 | }, 957 | { 958 | "city": "Naples", 959 | "country": "Italy", 960 | "timeZoneName": "Europe/Rome" 961 | }, 962 | { 963 | "city": "Nairobi", 964 | "country": "Kenya", 965 | "timeZoneName": "Africa/Nairobi" 966 | }, 967 | { 968 | "city": "Naters", 969 | "country": "Switzerland", 970 | "timeZoneName": "Europe/Zurich" 971 | }, 972 | { 973 | "city": "Ndjamena", 974 | "country": "Chad", 975 | "timeZoneName": "Africa/Ndjamena" 976 | }, 977 | { 978 | "city": "New Delhi", 979 | "country": "India", 980 | "timeZoneName": "Asia/Kolkata" 981 | }, 982 | { 983 | "city": "New Orleans", 984 | "country": "U.S.A.", 985 | "timeZoneName": "US/Central" 986 | }, 987 | { 988 | "city": "New York", 989 | "country": "U.S.A.", 990 | "timeZoneName": "America/New_York" 991 | }, 992 | { 993 | "city": "Niamey", 994 | "country": "Niger", 995 | "timeZoneName": "Africa/Niamey" 996 | }, 997 | { 998 | "city": "Nouakchott", 999 | "country": "Mauritania", 1000 | "timeZoneName": "Africa/Nouakchott" 1001 | }, 1002 | { 1003 | "city": "Noumea", 1004 | "country": "New Caledonia", 1005 | "timeZoneName": "Pacific/Noumea" 1006 | }, 1007 | { 1008 | "city": "Novato", 1009 | "country": "U.S.A.", 1010 | "timeZoneName": "US/Pacific" 1011 | }, 1012 | { 1013 | "city": "Novosibirsk", 1014 | "country": "Russia", 1015 | "timeZoneName": "Asia/Novosibirsk" 1016 | }, 1017 | { 1018 | "city": "Nukuʻalofa", 1019 | "country": "Tonga", 1020 | "timeZoneName": "Pacific/Tongatapu" 1021 | }, 1022 | { 1023 | "city": "Nuuk", 1024 | "country": "Greenland", 1025 | "timeZoneName": "America/Godthab" 1026 | }, 1027 | { 1028 | "city": "Oakland", 1029 | "country": "U.S.A.", 1030 | "timeZoneName": "US/Pacific" 1031 | }, 1032 | { 1033 | "city": "Oklahoma City", 1034 | "country": "U.S.A.", 1035 | "timeZoneName": "US/Central" 1036 | }, 1037 | { 1038 | "city": "Omaha", 1039 | "country": "U.S.A.", 1040 | "timeZoneName": "US/Central" 1041 | }, 1042 | { 1043 | "city": "Omsk", 1044 | "country": "Russia", 1045 | "timeZoneName": "Asia/Omsk" 1046 | }, 1047 | { 1048 | "city": "Osaka", 1049 | "country": "Japan", 1050 | "timeZoneName": "Asia/Tokyo" 1051 | }, 1052 | { 1053 | "city": "Oslo", 1054 | "country": "Norway", 1055 | "timeZoneName": "Europe/Oslo" 1056 | }, 1057 | { 1058 | "city": "Ottawa", 1059 | "country": "Canada", 1060 | "timeZoneName": "America/Toronto" 1061 | }, 1062 | { 1063 | "city": "Ouagadougou", 1064 | "country": "Burkina Faso", 1065 | "timeZoneName": "Africa/Ouagadougou" 1066 | }, 1067 | { 1068 | "city": "Pacifica", 1069 | "country": "U.S.A.", 1070 | "timeZoneName": "US/Pacific" 1071 | }, 1072 | { 1073 | "city": "Pago Pago", 1074 | "country": "American Samoa", 1075 | "timeZoneName": "Pacific/Pago_Pago" 1076 | }, 1077 | { 1078 | "city": "Palermo", 1079 | "country": "Italy", 1080 | "timeZoneName": "Europe/Rome" 1081 | }, 1082 | { 1083 | "city": "Palo Alto", 1084 | "country": "U.S.A.", 1085 | "timeZoneName": "US/Pacific" 1086 | }, 1087 | { 1088 | "city": "Panama City", 1089 | "country": "Panama", 1090 | "timeZoneName": "America/Panama" 1091 | }, 1092 | { 1093 | "city": "Tahiti", 1094 | "country": "French Polynesia", 1095 | "timeZoneName": "Pacific/Tahiti" 1096 | }, 1097 | { 1098 | "city": "Paramaribo", 1099 | "country": "Surinam", 1100 | "timeZoneName": "America/Paramaribo" 1101 | }, 1102 | { 1103 | "city": "Paris", 1104 | "country": "France", 1105 | "timeZoneName": "Europe/Paris" 1106 | }, 1107 | { 1108 | "city": "Perm", 1109 | "country": "Russia", 1110 | "timeZoneName": "Asia/Yekaterinburg" 1111 | }, 1112 | { 1113 | "city": "Perth", 1114 | "country": "Australia", 1115 | "timeZoneName": "Australia/Perth" 1116 | }, 1117 | { 1118 | "city": "Petaluma", 1119 | "country": "U.S.A.", 1120 | "timeZoneName": "US/Pacific" 1121 | }, 1122 | { 1123 | "city": "Philadelphia", 1124 | "country": "U.S.A.", 1125 | "timeZoneName": "US/Eastern" 1126 | }, 1127 | { 1128 | "city": "Phnom Penh", 1129 | "country": "Cambodia", 1130 | "timeZoneName": "Asia/Phnom_Penh" 1131 | }, 1132 | { 1133 | "city": "Phoenix", 1134 | "country": "U.S.A.", 1135 | "timeZoneName": "America/Phoenix" 1136 | }, 1137 | { 1138 | "city": "Pittsburgh", 1139 | "country": "U.S.A.", 1140 | "timeZoneName": "US/Eastern" 1141 | }, 1142 | { 1143 | "city": "Pleasanton", 1144 | "country": "U.S.A.", 1145 | "timeZoneName": "US/Pacific" 1146 | }, 1147 | { 1148 | "city": "Podgorica", 1149 | "country": "Montenegro", 1150 | "timeZoneName": "Europe/Podgorica" 1151 | }, 1152 | { 1153 | "city": "Ponta Delgada", 1154 | "country": "Portugal", 1155 | "timeZoneName": "Atlantic/Azores" 1156 | }, 1157 | { 1158 | "city": "Port Louis", 1159 | "country": "Mauritius", 1160 | "timeZoneName": "Indian/Mauritius" 1161 | }, 1162 | { 1163 | "city": "Port-au-Prince", 1164 | "country": "Haiti", 1165 | "timeZoneName": "America/Port-au-Prince" 1166 | }, 1167 | { 1168 | "city": "Portland", 1169 | "country": "U.S.A.", 1170 | "timeZoneName": "US/Pacific" 1171 | }, 1172 | { 1173 | "city": "Prague", 1174 | "country": "Czech Republic", 1175 | "timeZoneName": "Europe/Prague" 1176 | }, 1177 | { 1178 | "city": "Pyongyang", 1179 | "country": "North Korea", 1180 | "timeZoneName": "Asia/Pyongyang" 1181 | }, 1182 | { 1183 | "city": "Quito", 1184 | "country": "Ecuador", 1185 | "timeZoneName": "America/Guayaquil" 1186 | }, 1187 | { 1188 | "city": "Rabat", 1189 | "country": "Morocco", 1190 | "timeZoneName": "Africa/Casablanca" 1191 | }, 1192 | { 1193 | "city": "Rangoon", 1194 | "country": "Burma", 1195 | "timeZoneName": "Asia/Rangoon" 1196 | }, 1197 | { 1198 | "city": "Recife", 1199 | "country": "Brazil", 1200 | "timeZoneName": "America/Recife" 1201 | }, 1202 | { 1203 | "city": "Redwood City", 1204 | "country": "U.S.A.", 1205 | "timeZoneName": "US/Pacific" 1206 | }, 1207 | { 1208 | "city": "Regina", 1209 | "country": "Canada", 1210 | "timeZoneName": "America/Regina" 1211 | }, 1212 | { 1213 | "city": "Reykjavik", 1214 | "country": "Iceland", 1215 | "timeZoneName": "Atlantic/Reykjavik" 1216 | }, 1217 | { 1218 | "city": "Riga", 1219 | "country": "Latvia", 1220 | "timeZoneName": "Europe/Riga" 1221 | }, 1222 | { 1223 | "city": "Rio de Janeiro", 1224 | "country": "Brazil", 1225 | "timeZoneName": "America/Sao_Paulo" 1226 | }, 1227 | { 1228 | "city": "Riyadh", 1229 | "country": "Saudi Arabia", 1230 | "timeZoneName": "Asia/Riyadh" 1231 | }, 1232 | { 1233 | "city": "Rome", 1234 | "country": "Italy", 1235 | "timeZoneName": "Europe/Rome" 1236 | }, 1237 | { 1238 | "city": "Saint-Denis", 1239 | "country": "Reunion Island", 1240 | "timeZoneName": "Indian/Reunion" 1241 | }, 1242 | { 1243 | "city": "Salt Lake City", 1244 | "country": "U.S.A.", 1245 | "timeZoneName": "US/Mountain" 1246 | }, 1247 | { 1248 | "city": "Samara", 1249 | "country": "Russia", 1250 | "timeZoneName": "Europe/Samara" 1251 | }, 1252 | { 1253 | "city": "San Diego", 1254 | "country": "U.S.A.", 1255 | "timeZoneName": "US/Pacific" 1256 | }, 1257 | { 1258 | "city": "San Antonio", 1259 | "country": "U.S.A.", 1260 | "timeZoneName": "US/Central" 1261 | }, 1262 | { 1263 | "city": "San Bruno", 1264 | "country": "U.S.A.", 1265 | "timeZoneName": "US/Pacific" 1266 | }, 1267 | { 1268 | "city": "San Carlos", 1269 | "country": "U.S.A.", 1270 | "timeZoneName": "US/Pacific" 1271 | }, 1272 | { 1273 | "city": "San Francisco", 1274 | "country": "U.S.A.", 1275 | "timeZoneName": "US/Pacific" 1276 | }, 1277 | { 1278 | "city": "San Jose", 1279 | "country": "U.S.A.", 1280 | "timeZoneName": "US/Pacific" 1281 | }, 1282 | { 1283 | "city": "San José", 1284 | "country": "Costa Rica", 1285 | "timeZoneName": "America/Costa_Rica" 1286 | }, 1287 | { 1288 | "city": "San Juan", 1289 | "country": "Puerto Rico", 1290 | "timeZoneName": "America/Puerto_Rico" 1291 | }, 1292 | { 1293 | "city": "San Leandro", 1294 | "country": "U.S.A.", 1295 | "timeZoneName": "US/Pacific" 1296 | }, 1297 | { 1298 | "city": "San Salvador", 1299 | "country": "El Salvador", 1300 | "timeZoneName": "America/El_Salvador" 1301 | }, 1302 | { 1303 | "city": "San Marino", 1304 | "country": "Italy", 1305 | "timeZoneName": "Europe/Rome" 1306 | }, 1307 | { 1308 | "city": "San Mateo", 1309 | "country": "U.S.A.", 1310 | "timeZoneName": "US/Pacific" 1311 | }, 1312 | { 1313 | "city": "San Pablo", 1314 | "country": "U.S.A.", 1315 | "timeZoneName": "US/Pacific" 1316 | }, 1317 | { 1318 | "city": "San Rafael", 1319 | "country": "U.S.A.", 1320 | "timeZoneName": "US/Pacific" 1321 | }, 1322 | { 1323 | "city": "San Ramon", 1324 | "country": "U.S.A.", 1325 | "timeZoneName": "US/Pacific" 1326 | }, 1327 | { 1328 | "city": "Santa Clara", 1329 | "country": "U.S.A.", 1330 | "timeZoneName": "US/Pacific" 1331 | }, 1332 | { 1333 | "city": "Santa Cruz", 1334 | "country": "U.S.A.", 1335 | "timeZoneName": "US/Pacific" 1336 | }, 1337 | { 1338 | "city": "Sanaa", 1339 | "country": "Yemen", 1340 | "timeZoneName": "Asia/Aden" 1341 | }, 1342 | { 1343 | "city": "Santiago", 1344 | "country": "Chile", 1345 | "timeZoneName": "America/Santiago" 1346 | }, 1347 | { 1348 | "city": "Santo Domingo", 1349 | "country": "Dominican Republic", 1350 | "timeZoneName": "America/Santo_Domingo" 1351 | }, 1352 | { 1353 | "city": "São Paulo", 1354 | "country": "Brazil", 1355 | "timeZoneName": "America/Sao_Paulo" 1356 | }, 1357 | { 1358 | "city": "Seattle", 1359 | "country": "U.S.A.", 1360 | "timeZoneName": "US/Pacific" 1361 | }, 1362 | { 1363 | "city": "Seoul", 1364 | "country": "South Korea", 1365 | "timeZoneName": "Asia/Seoul" 1366 | }, 1367 | { 1368 | "city": "Shanghai", 1369 | "country": "China", 1370 | "timeZoneName": "Asia/Shanghai" 1371 | }, 1372 | { 1373 | "city": "Shenzhen", 1374 | "country": "China", 1375 | "timeZoneName": "Asia/Shanghai" 1376 | }, 1377 | { 1378 | "city": "Singapore", 1379 | "country": "Singapore", 1380 | "timeZoneName": "Asia/Singapore" 1381 | }, 1382 | { 1383 | "city": "Sioux Falls", 1384 | "country": "U.S.A.", 1385 | "timeZoneName": "US/Central" 1386 | }, 1387 | { 1388 | "city": "Skopje", 1389 | "country": "Macedonia", 1390 | "timeZoneName": "Europe/Skopje" 1391 | }, 1392 | { 1393 | "city": "Sofia", 1394 | "country": "Bulgaria", 1395 | "timeZoneName": "Europe/Sofia" 1396 | }, 1397 | { 1398 | "city": "St. John's", 1399 | "country": "Canada", 1400 | "timeZoneName": "America/St_Johns" 1401 | }, 1402 | { 1403 | "city": "St. Louis", 1404 | "country": "U.S.A.", 1405 | "timeZoneName": "US/Central" 1406 | }, 1407 | { 1408 | "city": "St. Petersburg", 1409 | "country": "Russia", 1410 | "timeZoneName": "Europe/Moscow" 1411 | }, 1412 | { 1413 | "city": "Sunnyvale", 1414 | "country": "U.S.A.", 1415 | "timeZoneName": "US/Pacific" 1416 | }, 1417 | { 1418 | "city": "Stockholm", 1419 | "country": "Sweden", 1420 | "timeZoneName": "Europe/Stockholm" 1421 | }, 1422 | { 1423 | "city": "Suva", 1424 | "country": "Fiji", 1425 | "timeZoneName": "Pacific/Fiji" 1426 | }, 1427 | { 1428 | "city": "Sydney", 1429 | "country": "Australia", 1430 | "timeZoneName": "Australia/Sydney" 1431 | }, 1432 | { 1433 | "city": "Taipei", 1434 | "country": "", 1435 | "timeZoneName": "Asia/Taipei" 1436 | }, 1437 | { 1438 | "city": "Tallinn", 1439 | "country": "Estonia", 1440 | "timeZoneName": "Europe/Tallinn" 1441 | }, 1442 | { 1443 | "city": "Tashkent", 1444 | "country": "Uzbekistan", 1445 | "timeZoneName": "Asia/Tashkent" 1446 | }, 1447 | { 1448 | "city": "Tegucigalpa", 1449 | "country": "Honduras", 1450 | "timeZoneName": "America/Tegucigalpa" 1451 | }, 1452 | { 1453 | "city": "Tehran", 1454 | "country": "Iran", 1455 | "timeZoneName": "Asia/Tehran" 1456 | }, 1457 | { 1458 | "city": "Ho Chi Minh City", 1459 | "country": "Vietnam", 1460 | "timeZoneName": "Asia/Saigon" 1461 | }, 1462 | { 1463 | "city": "Tianjin", 1464 | "country": "China", 1465 | "timeZoneName": "Asia/Shanghai" 1466 | }, 1467 | { 1468 | "city": "Tokyo", 1469 | "country": "Japan", 1470 | "timeZoneName": "Asia/Tokyo" 1471 | }, 1472 | { 1473 | "city": "Toronto", 1474 | "country": "Canada", 1475 | "timeZoneName": "America/Toronto" 1476 | }, 1477 | { 1478 | "city": "Tréhet", 1479 | "country": "France", 1480 | "timeZoneName": "Europe/Paris" 1481 | }, 1482 | { 1483 | "city": "Tripoli", 1484 | "country": "Libya", 1485 | "timeZoneName": "Africa/Tripoli" 1486 | }, 1487 | { 1488 | "city": "Tunis", 1489 | "country": "Tunisia", 1490 | "timeZoneName": "Africa/Tunis" 1491 | }, 1492 | { 1493 | "city": "Turin", 1494 | "country": "Italy", 1495 | "timeZoneName": "Europe/Rome" 1496 | }, 1497 | { 1498 | "city": "Ulaanbaatar", 1499 | "country": "Mongolia", 1500 | "timeZoneName": "Asia/Ulaanbaatar" 1501 | }, 1502 | { 1503 | "city": "UTC", 1504 | "country": "", 1505 | "timeZoneName": "UTC" 1506 | }, 1507 | { 1508 | "city": "Vaduz", 1509 | "country": "Liechtenstein", 1510 | "timeZoneName": "Europe/Vaduz" 1511 | }, 1512 | { 1513 | "city": "Vallejo", 1514 | "country": "U.S.A.", 1515 | "timeZoneName": "US/Pacific" 1516 | }, 1517 | { 1518 | "city": "Valletta", 1519 | "country": "Malta", 1520 | "timeZoneName": "Europe/Malta" 1521 | }, 1522 | { 1523 | "city": "Vancouver", 1524 | "country": "Canada", 1525 | "timeZoneName": "America/Vancouver" 1526 | }, 1527 | { 1528 | "city": "Verona", 1529 | "country": "Italy", 1530 | "timeZoneName": "Europe/Rome" 1531 | }, 1532 | { 1533 | "city": "Victoria", 1534 | "country": "Seychelles", 1535 | "timeZoneName": "Indian/Mahe" 1536 | }, 1537 | { 1538 | "city": "Vienna", 1539 | "country": "Austria", 1540 | "timeZoneName": "Europe/Vienna" 1541 | }, 1542 | { 1543 | "city": "Vilnius", 1544 | "country": "Lithuania", 1545 | "timeZoneName": "Europe/Vilnius" 1546 | }, 1547 | { 1548 | "city": "Vladivostok", 1549 | "country": "Russia", 1550 | "timeZoneName": "Asia/Vladivostok" 1551 | }, 1552 | { 1553 | "city": "Volgograd", 1554 | "country": "Russia", 1555 | "timeZoneName": "Europe/Moscow" 1556 | }, 1557 | { 1558 | "city": "Walnut Creek", 1559 | "country": "U.S.A.", 1560 | "timeZoneName": "US/Pacific" 1561 | }, 1562 | { 1563 | "city": "Warsaw", 1564 | "country": "Poland", 1565 | "timeZoneName": "Europe/Warsaw" 1566 | }, 1567 | { 1568 | "city": "Washington, D.C.", 1569 | "country": "U.S.A.", 1570 | "timeZoneName": "US/Eastern" 1571 | }, 1572 | { 1573 | "city": "Wellington", 1574 | "country": "New Zealand", 1575 | "timeZoneName": "Pacific/Auckland" 1576 | }, 1577 | { 1578 | "city": "Winnipeg", 1579 | "country": "Canada", 1580 | "timeZoneName": "America/Winnipeg" 1581 | }, 1582 | { 1583 | "city": "Yakutsk", 1584 | "country": "Russia", 1585 | "timeZoneName": "Asia/Yakutsk" 1586 | }, 1587 | { 1588 | "city": "Yamoussoukro", 1589 | "country": "Ivory Coast", 1590 | "timeZoneName": "Africa/Abidjan" 1591 | }, 1592 | { 1593 | "city": "Yaoundé", 1594 | "country": "Cameroon", 1595 | "timeZoneName": "Africa/Douala" 1596 | }, 1597 | { 1598 | "city": "Yekaterinburg", 1599 | "country": "Russia", 1600 | "timeZoneName": "Asia/Yekaterinburg" 1601 | }, 1602 | { 1603 | "city": "Yerevan", 1604 | "country": "Armenia", 1605 | "timeZoneName": "Asia/Yerevan" 1606 | }, 1607 | { 1608 | "city": "Zagreb", 1609 | "country": "Croatia", 1610 | "timeZoneName": "Europe/Zagreb" 1611 | }, 1612 | { 1613 | "city": "Zurich", 1614 | "country": "Switzerland", 1615 | "timeZoneName": "Europe/Zurich" 1616 | }, 1617 | { 1618 | "city": "Decatur", 1619 | "country": "U.S.A.", 1620 | "timeZoneName": "US/Eastern" 1621 | }, 1622 | { 1623 | "city": "Vientiane", 1624 | "country": "Laos", 1625 | "timeZoneName": "Asia/Bangkok" 1626 | }, 1627 | { 1628 | "city": "Lomé", 1629 | "country": "Togo", 1630 | "timeZoneName": "Africa/Accra" 1631 | }, 1632 | { 1633 | "city": "Brazzaville", 1634 | "country": "Congo", 1635 | "timeZoneName": "Africa/Ndjamena" 1636 | }, 1637 | { 1638 | "city": "Mbabane", 1639 | "country": "Swaziland", 1640 | "timeZoneName": "Africa/Mbabane" 1641 | }, 1642 | { 1643 | "city": "Maseru", 1644 | "country": "Lesotho", 1645 | "timeZoneName": "Africa/Maseru" 1646 | }, 1647 | { 1648 | "city": "Andorra la Vella", 1649 | "country": "Andorra", 1650 | "timeZoneName": "Europe/Andorra" 1651 | }, 1652 | { 1653 | "city": "Rio Branco", 1654 | "country": "Brazil", 1655 | "timeZoneName": "America/La_Paz" 1656 | }, 1657 | { 1658 | "city": "Fernando de Noronha", 1659 | "country": "Brazil", 1660 | "timeZoneName": "America/Noronha" 1661 | }, 1662 | { 1663 | "city": "Pristina", 1664 | "country": "Kosovo", 1665 | "timeZoneName": "Europe/Belgrade" 1666 | }, 1667 | { 1668 | "city": "Thimphu", 1669 | "country": "Bhutan", 1670 | "timeZoneName": "Asia/Dhaka" 1671 | }, 1672 | { 1673 | "city": "Berkeley Heights", 1674 | "country": "U.S.A.", 1675 | "timeZoneName": "US/Eastern" 1676 | }, 1677 | { 1678 | "city": "Acton", 1679 | "country": "U.S.A.", 1680 | "timeZoneName": "US/Eastern" 1681 | }, 1682 | { 1683 | "city": "Thessaloniki", 1684 | "country": "Greece", 1685 | "timeZoneName": "Europe/Athens" 1686 | }, 1687 | { 1688 | "city": "Heraklion", 1689 | "country": "Greece", 1690 | "timeZoneName": "Europe/Athens" 1691 | }, 1692 | { 1693 | "city": "Tel Aviv", 1694 | "country": "Israel", 1695 | "timeZoneName": "Asia/Jerusalem" 1696 | }, 1697 | { 1698 | "city": "Frankfurt", 1699 | "country": "Germany", 1700 | "timeZoneName": "Europe/Berlin" 1701 | }, 1702 | { 1703 | "city": "Fort St. John", 1704 | "country": "Canada", 1705 | "timeZoneName": "America/Dawson_Creek" 1706 | }, 1707 | { 1708 | "city": "Yangon", 1709 | "country": "Burma", 1710 | "timeZoneName": "Asia/Rangoon" 1711 | }, 1712 | { 1713 | "city": "Matamoros", 1714 | "country": "Mexico", 1715 | "timeZoneName": "America/Matamoros" 1716 | }, 1717 | { 1718 | "city": "Ojinaga", 1719 | "country": "Mexico", 1720 | "timeZoneName": "America/Ojinaga" 1721 | }, 1722 | { 1723 | "city": "Santa Isabel", 1724 | "country": "Mexico", 1725 | "timeZoneName": "America/Santa_Isabel" 1726 | }, 1727 | { 1728 | "city": "Sarajevo", 1729 | "country": "Bosnia and Herzegovina", 1730 | "timeZoneName": "Europe/Sarajevo" 1731 | }, 1732 | { 1733 | "city": "Salzburg", 1734 | "country": "Austria", 1735 | "timeZoneName": "Europe/Vienna" 1736 | }, 1737 | { 1738 | "city": "Lyon", 1739 | "country": "France", 1740 | "timeZoneName": "Europe/Paris" 1741 | }, 1742 | { 1743 | "city": "Marseille", 1744 | "country": "France", 1745 | "timeZoneName": "Europe/Paris" 1746 | }, 1747 | { 1748 | "city": "Tbilisi", 1749 | "country": "Georgia", 1750 | "timeZoneName": "Asia/Tbilisi" 1751 | }, 1752 | { 1753 | "city": "Saskatoon", 1754 | "country": "Canada", 1755 | "timeZoneName": "America/Regina" 1756 | }, 1757 | { 1758 | "city": "Tórshavn", 1759 | "country": "Faroe Islands", 1760 | "timeZoneName": "Atlantic/Faroe" 1761 | }, 1762 | { 1763 | "city": "Waitangi", 1764 | "country": "New Zealand", 1765 | "timeZoneName": "Pacific/Chatham" 1766 | }, 1767 | { 1768 | "city": "Makassar", 1769 | "country": "Indonesia", 1770 | "timeZoneName": "Asia/Makassar" 1771 | }, 1772 | { 1773 | "city": "Jayapura", 1774 | "country": "Indonesia", 1775 | "timeZoneName": "Asia/Jayapura" 1776 | }, 1777 | { 1778 | "city": "Antwerp", 1779 | "country": "Belgium", 1780 | "timeZoneName": "Europe/Brussels" 1781 | }, 1782 | { 1783 | "city": "Alexandria", 1784 | "country": "Egypt", 1785 | "timeZoneName": "Africa/Cairo" 1786 | }, 1787 | { 1788 | "city": "Chiang Mai", 1789 | "country": "Thailand", 1790 | "timeZoneName": "Asia/Bangkok" 1791 | }, 1792 | { 1793 | "city": "Hamilton", 1794 | "country": "Bermuda", 1795 | "timeZoneName": "Atlantic/Bermuda" 1796 | }, 1797 | { 1798 | "city": "Kraków", 1799 | "country": "Poland", 1800 | "timeZoneName": "Europe/Warsaw" 1801 | }, 1802 | { 1803 | "city": "Tirana", 1804 | "country": "Albania", 1805 | "timeZoneName": "Europe/Tirane" 1806 | }, 1807 | { 1808 | "city": "Windhoek", 1809 | "country": "Namibia", 1810 | "timeZoneName": "Africa/Windhoek" 1811 | }, 1812 | { 1813 | "city": "Nicosia", 1814 | "country": "Cyprus", 1815 | "timeZoneName": "Asia/Nicosia" 1816 | }, 1817 | { 1818 | "city": "Apia", 1819 | "country": "Samoa", 1820 | "timeZoneName": "Pacific/Apia" 1821 | }, 1822 | { 1823 | "city": "Salvador", 1824 | "country": "Brazil", 1825 | "timeZoneName": "America/Bahia" 1826 | }, 1827 | { 1828 | "city": "St. John's", 1829 | "country": "Antigua and Barbuda", 1830 | "timeZoneName": "America/Antigua" 1831 | }, 1832 | { 1833 | "city": "The Valley", 1834 | "country": "Anguilla", 1835 | "timeZoneName": "America/Anguilla" 1836 | }, 1837 | { 1838 | "city": "McMurdo Station", 1839 | "country": "Antarctica", 1840 | "timeZoneName": "Antarctica/McMurdo" 1841 | }, 1842 | { 1843 | "city": "Amundsen-Scott Station", 1844 | "country": "Antarctica", 1845 | "timeZoneName": "Antarctica/South_Pole" 1846 | }, 1847 | { 1848 | "city": "Rothera Station", 1849 | "country": "Antarctica", 1850 | "timeZoneName": "Antarctica/Rothera" 1851 | }, 1852 | { 1853 | "city": "Palmer Station", 1854 | "country": "Antarctica", 1855 | "timeZoneName": "Antarctica/Palmer" 1856 | }, 1857 | { 1858 | "city": "Mawson Station", 1859 | "country": "Antarctica", 1860 | "timeZoneName": "Antarctica/Mawson" 1861 | }, 1862 | { 1863 | "city": "Davis Station", 1864 | "country": "Antarctica", 1865 | "timeZoneName": "Antarctica/Davis" 1866 | }, 1867 | { 1868 | "city": "Casey Station", 1869 | "country": "Antarctica", 1870 | "timeZoneName": "Antarctica/Casey" 1871 | }, 1872 | { 1873 | "city": "Vostok Station", 1874 | "country": "Antarctica", 1875 | "timeZoneName": "Antarctica/Vostok" 1876 | }, 1877 | { 1878 | "city": "Dumont-d'Urville Station", 1879 | "country": "Antarctica", 1880 | "timeZoneName": "Antarctica/DumontDUrville" 1881 | }, 1882 | { 1883 | "city": "Syowa Station", 1884 | "country": "Antarctica", 1885 | "timeZoneName": "Antarctica/Syowa" 1886 | }, 1887 | { 1888 | "city": "Macquarie Island Station", 1889 | "country": "Antarctica", 1890 | "timeZoneName": "Antarctica/Macquarie" 1891 | }, 1892 | { 1893 | "city": "Cordoba", 1894 | "country": "Argentina", 1895 | "timeZoneName": "America/Argentina/Cordoba" 1896 | }, 1897 | { 1898 | "city": "Salta", 1899 | "country": "Argentina", 1900 | "timeZoneName": "America/Argentina/Jujuy" 1901 | }, 1902 | { 1903 | "city": "San Salvador de Jujuy", 1904 | "country": "Argentina", 1905 | "timeZoneName": "America/Argentina/Jujuy" 1906 | }, 1907 | { 1908 | "city": "Tucaman", 1909 | "country": "Argentina", 1910 | "timeZoneName": "America/Argentina/Tucuman" 1911 | }, 1912 | { 1913 | "city": "Catamarca", 1914 | "country": "Argentina", 1915 | "timeZoneName": "America/Argentina/Catamarca" 1916 | }, 1917 | { 1918 | "city": "La Rioja", 1919 | "country": "Argentina", 1920 | "timeZoneName": "America/Argentina/La_Rioja" 1921 | }, 1922 | { 1923 | "city": "San Juan", 1924 | "country": "Argentina", 1925 | "timeZoneName": "America/Argentina/San_Juan" 1926 | }, 1927 | { 1928 | "city": "Mendoza", 1929 | "country": "Argentina", 1930 | "timeZoneName": "America/Argentina/Mendoza" 1931 | }, 1932 | { 1933 | "city": "San Luis", 1934 | "country": "Argentina", 1935 | "timeZoneName": "America/Argentina/San_Luis" 1936 | }, 1937 | { 1938 | "city": "Rio Gallegos", 1939 | "country": "Argentina", 1940 | "timeZoneName": "America/Argentina/Rio_Gallegos" 1941 | }, 1942 | { 1943 | "city": "Ushuaia", 1944 | "country": "Argentina", 1945 | "timeZoneName": "America/Argentina/Ushuaia" 1946 | }, 1947 | { 1948 | "city": "Lord Howe Island", 1949 | "country": "Australia", 1950 | "timeZoneName": "Australia/Lord_Howe" 1951 | }, 1952 | { 1953 | "city": "Currie", 1954 | "country": "Australia", 1955 | "timeZoneName": "Australia/Currie" 1956 | }, 1957 | { 1958 | "city": "Broken Hill", 1959 | "country": "Australia", 1960 | "timeZoneName": "Australia/Broken_Hill" 1961 | }, 1962 | { 1963 | "city": "Lindeman Island", 1964 | "country": "Australia", 1965 | "timeZoneName": "Australia/Lindeman" 1966 | }, 1967 | { 1968 | "city": "Eucla", 1969 | "country": "Australia", 1970 | "timeZoneName": "Australia/Eucla" 1971 | }, 1972 | { 1973 | "city": "Oranjestad", 1974 | "country": "Aruba", 1975 | "timeZoneName": "America/Aruba" 1976 | }, 1977 | { 1978 | "city": "Mariehamn", 1979 | "country": "Åland Islands", 1980 | "timeZoneName": "Europe/Mariehamn" 1981 | }, 1982 | { 1983 | "city": "Bujumbura", 1984 | "country": "Burundi", 1985 | "timeZoneName": "Africa/Bujumbura" 1986 | }, 1987 | { 1988 | "city": "Porto-Novo", 1989 | "country": "Benin", 1990 | "timeZoneName": "Africa/Porto-Novo" 1991 | }, 1992 | { 1993 | "city": "Bandar Seri Begawan", 1994 | "country": "Brunei", 1995 | "timeZoneName": "Asia/Brunei" 1996 | }, 1997 | { 1998 | "city": "Kralendijk", 1999 | "country": "Bonaire", 2000 | "timeZoneName": "America/Kralendijk" 2001 | }, 2002 | { 2003 | "city": "Belem", 2004 | "country": "Brazil", 2005 | "timeZoneName": "America/Belem" 2006 | }, 2007 | { 2008 | "city": "Fortaleza", 2009 | "country": "Brazil", 2010 | "timeZoneName": "America/Fortaleza" 2011 | }, 2012 | { 2013 | "city": "Araguaina", 2014 | "country": "Brazil", 2015 | "timeZoneName": "America/Araguaina" 2016 | }, 2017 | { 2018 | "city": "Maceio", 2019 | "country": "Brazil", 2020 | "timeZoneName": "America/Maceio" 2021 | }, 2022 | { 2023 | "city": "Campo Grande", 2024 | "country": "Brazil", 2025 | "timeZoneName": "America/Campo_Grande" 2026 | }, 2027 | { 2028 | "city": "Cuiaba", 2029 | "country": "Brazil", 2030 | "timeZoneName": "America/Cuiaba" 2031 | }, 2032 | { 2033 | "city": "Santarém", 2034 | "country": "Brazil", 2035 | "timeZoneName": "America/Santarem" 2036 | }, 2037 | { 2038 | "city": "Porto Velho", 2039 | "country": "Brazil", 2040 | "timeZoneName": "America/Porto_Velho" 2041 | }, 2042 | { 2043 | "city": "Boa Vista", 2044 | "country": "Brazil", 2045 | "timeZoneName": "America/Boa_Vista" 2046 | }, 2047 | { 2048 | "city": "Manaus", 2049 | "country": "Brazil", 2050 | "timeZoneName": "America/Manaus" 2051 | }, 2052 | { 2053 | "city": "Eirunepe", 2054 | "country": "Brazil", 2055 | "timeZoneName": "America/Eirunepe" 2056 | }, 2057 | { 2058 | "city": "Nassau", 2059 | "country": "Bahamas", 2060 | "timeZoneName": "America/Nassau" 2061 | }, 2062 | { 2063 | "city": "Glace Bay", 2064 | "country": "Canada", 2065 | "timeZoneName": "America/Glace_Bay" 2066 | }, 2067 | { 2068 | "city": "Moncton", 2069 | "country": "Canada", 2070 | "timeZoneName": "America/Moncton" 2071 | }, 2072 | { 2073 | "city": "Happy Valley-Goose Bay", 2074 | "country": "Canada", 2075 | "timeZoneName": "America/Goose_Bay" 2076 | }, 2077 | { 2078 | "city": "Blanc-Sablon", 2079 | "country": "Canada", 2080 | "timeZoneName": "America/Blanc-Sablon" 2081 | }, 2082 | { 2083 | "city": "Nipigon", 2084 | "country": "Canada", 2085 | "timeZoneName": "America/Nipigon" 2086 | }, 2087 | { 2088 | "city": "Thunder Bay", 2089 | "country": "Canada", 2090 | "timeZoneName": "America/Thunder_Bay" 2091 | }, 2092 | { 2093 | "city": "Iqaluit", 2094 | "country": "Canada", 2095 | "timeZoneName": "America/Iqaluit" 2096 | }, 2097 | { 2098 | "city": "Pangnirtung", 2099 | "country": "Canada", 2100 | "timeZoneName": "America/Pangnirtung" 2101 | }, 2102 | { 2103 | "city": "Resolute", 2104 | "country": "Canada", 2105 | "timeZoneName": "America/Resolute" 2106 | }, 2107 | { 2108 | "city": "Atikokan", 2109 | "country": "Canada", 2110 | "timeZoneName": "America/Atikokan" 2111 | }, 2112 | { 2113 | "city": "Rankin Inlet", 2114 | "country": "Canada", 2115 | "timeZoneName": "America/Rankin_Inlet" 2116 | }, 2117 | { 2118 | "city": "Rainy River", 2119 | "country": "Canada", 2120 | "timeZoneName": "America/Rainy_River" 2121 | }, 2122 | { 2123 | "city": "Swift Current", 2124 | "country": "Canada", 2125 | "timeZoneName": "America/Swift_Current" 2126 | }, 2127 | { 2128 | "city": "Edmonton", 2129 | "country": "Canada", 2130 | "timeZoneName": "America/Edmonton" 2131 | }, 2132 | { 2133 | "city": "Cambridge Bay", 2134 | "country": "Canada", 2135 | "timeZoneName": "America/Cambridge_Bay" 2136 | }, 2137 | { 2138 | "city": "Yellowknife", 2139 | "country": "Canada", 2140 | "timeZoneName": "America/Yellowknife" 2141 | }, 2142 | { 2143 | "city": "Inuvik", 2144 | "country": "Canada", 2145 | "timeZoneName": "America/Inuvik" 2146 | }, 2147 | { 2148 | "city": "Dawson Creek", 2149 | "country": "Canada", 2150 | "timeZoneName": "America/Dawson_Creek" 2151 | }, 2152 | { 2153 | "city": "Whitehorse", 2154 | "country": "Canada", 2155 | "timeZoneName": "America/Whitehorse" 2156 | }, 2157 | { 2158 | "city": "Dawson City", 2159 | "country": "Canada", 2160 | "timeZoneName": "America/Dawson" 2161 | }, 2162 | { 2163 | "city": "Bantam Village", 2164 | "country": "Cocos (Keeling) Islands", 2165 | "timeZoneName": "Indian/Cocos" 2166 | }, 2167 | { 2168 | "city": "Lubumbashi", 2169 | "country": "Democratic Republic of the Congo", 2170 | "timeZoneName": "Africa/Lubumbashi" 2171 | }, 2172 | { 2173 | "city": "Rarotonga", 2174 | "country": "Cook Islands", 2175 | "timeZoneName": "Pacific/Rarotonga" 2176 | }, 2177 | { 2178 | "city": "Harbin", 2179 | "country": "China", 2180 | "timeZoneName": "Asia/Harbin" 2181 | }, 2182 | { 2183 | "city": "Chongqing", 2184 | "country": "China", 2185 | "timeZoneName": "Asia/Chongqing" 2186 | }, 2187 | { 2188 | "city": "Urumqi", 2189 | "country": "China", 2190 | "timeZoneName": "Asia/Urumqi" 2191 | }, 2192 | { 2193 | "city": "Kashgar", 2194 | "country": "China", 2195 | "timeZoneName": "Asia/Kashgar" 2196 | }, 2197 | { 2198 | "city": "Praia", 2199 | "country": "Cape Verde", 2200 | "timeZoneName": "Atlantic/Cape_Verde" 2201 | }, 2202 | { 2203 | "city": "Willemstad", 2204 | "country": "Curacao", 2205 | "timeZoneName": "America/Curacao" 2206 | }, 2207 | { 2208 | "city": "The Settlement", 2209 | "country": "Christmas Island", 2210 | "timeZoneName": "Indian/Christmas" 2211 | }, 2212 | { 2213 | "city": "Roseau", 2214 | "country": "Dominica", 2215 | "timeZoneName": "America/Dominica" 2216 | }, 2217 | { 2218 | "city": "Guayaquil", 2219 | "country": "Ecuador", 2220 | "timeZoneName": "America/Guayaquil" 2221 | }, 2222 | { 2223 | "city": "El-Aaiun", 2224 | "country": "Western Sahara", 2225 | "timeZoneName": "Africa/El_Aaiun" 2226 | }, 2227 | { 2228 | "city": "Ceuta", 2229 | "country": "Spain", 2230 | "timeZoneName": "Africa/Ceuta" 2231 | }, 2232 | { 2233 | "city": "Stanley", 2234 | "country": "Falkland Islands", 2235 | "timeZoneName": "Atlantic/Stanley" 2236 | }, 2237 | { 2238 | "city": "Chuuk", 2239 | "country": "Micronesia", 2240 | "timeZoneName": "Pacific/Chuuk" 2241 | }, 2242 | { 2243 | "city": "Pohnpei", 2244 | "country": "Micronesia", 2245 | "timeZoneName": "Pacific/Pohnpei" 2246 | }, 2247 | { 2248 | "city": "Kosrae", 2249 | "country": "Micronesia", 2250 | "timeZoneName": "Pacific/Kosrae" 2251 | }, 2252 | { 2253 | "city": "Libreville", 2254 | "country": "Gabon", 2255 | "timeZoneName": "Africa/Libreville" 2256 | }, 2257 | { 2258 | "city": "St. Georges", 2259 | "country": "Grenada", 2260 | "timeZoneName": "America/Grenada" 2261 | }, 2262 | { 2263 | "city": "Saint Peter Port", 2264 | "country": "Guernsey", 2265 | "timeZoneName": "Europe/Guernsey" 2266 | }, 2267 | { 2268 | "city": "Gibraltar", 2269 | "country": "Gibraltar", 2270 | "timeZoneName": "Europe/Gibraltar" 2271 | }, 2272 | { 2273 | "city": "Chengdu", 2274 | "country": "China", 2275 | "timeZoneName": "Asia/Chongqing" 2276 | }, 2277 | { 2278 | "city": "Dalian", 2279 | "country": "China", 2280 | "timeZoneName": "Asia/Shanghai" 2281 | }, 2282 | { 2283 | "city": "Hefei", 2284 | "country": "China", 2285 | "timeZoneName": "Asia/Shanghai" 2286 | }, 2287 | { 2288 | "city": "Lhasa", 2289 | "country": "China", 2290 | "timeZoneName": "Asia/Chongqing" 2291 | }, 2292 | { 2293 | "city": "Nanjing", 2294 | "country": "China", 2295 | "timeZoneName": "Asia/Shanghai" 2296 | }, 2297 | { 2298 | "city": "Qingdao", 2299 | "country": "China", 2300 | "timeZoneName": "Asia/Shanghai" 2301 | }, 2302 | { 2303 | "city": "Shenyang", 2304 | "country": "China", 2305 | "timeZoneName": "Asia/Harbin" 2306 | }, 2307 | { 2308 | "city": "Danmarkshavn", 2309 | "country": "Greenland", 2310 | "timeZoneName": "America/Danmarkshavn" 2311 | }, 2312 | { 2313 | "city": "Ittoqqortoormiit", 2314 | "country": "Greenland", 2315 | "timeZoneName": "America/Scoresbysund" 2316 | }, 2317 | { 2318 | "city": "Thule", 2319 | "country": "Greenland", 2320 | "timeZoneName": "America/Thule" 2321 | }, 2322 | { 2323 | "city": "Banjul", 2324 | "country": "Gambia", 2325 | "timeZoneName": "Africa/Banjul" 2326 | }, 2327 | { 2328 | "city": "Pontianak", 2329 | "country": "Indonesia", 2330 | "timeZoneName": "Asia/Pontianak" 2331 | }, 2332 | { 2333 | "city": "Douglas", 2334 | "country": "Isle of Man", 2335 | "timeZoneName": "Europe/Isle_of_Man" 2336 | }, 2337 | { 2338 | "city": "Diego Garcia", 2339 | "country": "British Indian Ocean Territory", 2340 | "timeZoneName": "Indian/Chagos" 2341 | }, 2342 | { 2343 | "city": "St. Helier", 2344 | "country": "Bailiwick of Jersey", 2345 | "timeZoneName": "Europe/Jersey" 2346 | }, 2347 | { 2348 | "city": "Tarawa", 2349 | "country": "Kiribati", 2350 | "timeZoneName": "Pacific/Tarawa" 2351 | }, 2352 | { 2353 | "city": "Kanton Island", 2354 | "country": "Kiribati", 2355 | "timeZoneName": "Pacific/Enderbury" 2356 | }, 2357 | { 2358 | "city": "Kiritimati", 2359 | "country": "Kiribati", 2360 | "timeZoneName": "Pacific/Kiritimati" 2361 | }, 2362 | { 2363 | "city": "Moroni", 2364 | "country": "Comoros", 2365 | "timeZoneName": "Indian/Comoro" 2366 | }, 2367 | { 2368 | "city": "Basseterre", 2369 | "country": "Saint Kitts and Nevis", 2370 | "timeZoneName": "America/St_Kitts" 2371 | }, 2372 | { 2373 | "city": "George Town", 2374 | "country": "Cayman Islands", 2375 | "timeZoneName": "America/Cayman" 2376 | }, 2377 | { 2378 | "city": "Kyzylorda", 2379 | "country": "Kazakhstan", 2380 | "timeZoneName": "Asia/Qyzylorda" 2381 | }, 2382 | { 2383 | "city": "Aqtobe", 2384 | "country": "Kazakhstan", 2385 | "timeZoneName": "Asia/Aqtobe" 2386 | }, 2387 | { 2388 | "city": "Atyrau", 2389 | "country": "Kazakhstan", 2390 | "timeZoneName": "Asia/Aqtau" 2391 | }, 2392 | { 2393 | "city": "Oral", 2394 | "country": "Kazakhstan", 2395 | "timeZoneName": "Asia/Oral" 2396 | }, 2397 | { 2398 | "city": "Castries", 2399 | "country": "Saint Lucia", 2400 | "timeZoneName": "America/St_Lucia" 2401 | }, 2402 | { 2403 | "city": "Monaco", 2404 | "country": "Monaco", 2405 | "timeZoneName": "Europe/Monaco" 2406 | }, 2407 | { 2408 | "city": "Majuro", 2409 | "country": "Marshall Islands", 2410 | "timeZoneName": "Pacific/Majuro" 2411 | }, 2412 | { 2413 | "city": "Kwajalein Atoll", 2414 | "country": "Marshall Islands", 2415 | "timeZoneName": "Pacific/Kwajalein" 2416 | }, 2417 | { 2418 | "city": "Hovd", 2419 | "country": "Mongolia", 2420 | "timeZoneName": "Asia/Hovd" 2421 | }, 2422 | { 2423 | "city": "Choibalsan", 2424 | "country": "Mongolia", 2425 | "timeZoneName": "Asia/Choibalsan" 2426 | }, 2427 | { 2428 | "city": "Saipan", 2429 | "country": "Northern Mariana Islands", 2430 | "timeZoneName": "Pacific/Saipan" 2431 | }, 2432 | { 2433 | "city": "Plymouth", 2434 | "country": "Montserrat", 2435 | "timeZoneName": "America/Montserrat" 2436 | }, 2437 | { 2438 | "city": "Blantyre", 2439 | "country": "Malawi", 2440 | "timeZoneName": "Africa/Blantyre" 2441 | }, 2442 | { 2443 | "city": "Cancun", 2444 | "country": "Mexico", 2445 | "timeZoneName": "America/Cancun" 2446 | }, 2447 | { 2448 | "city": "Mérida", 2449 | "country": "Mexico", 2450 | "timeZoneName": "America/Merida" 2451 | }, 2452 | { 2453 | "city": "Monterrey", 2454 | "country": "Mexico", 2455 | "timeZoneName": "America/Monterrey" 2456 | }, 2457 | { 2458 | "city": "Mazatlán", 2459 | "country": "Mexico", 2460 | "timeZoneName": "America/Mazatlan" 2461 | }, 2462 | { 2463 | "city": "Chihuahua", 2464 | "country": "Mexico", 2465 | "timeZoneName": "America/Chihuahua" 2466 | }, 2467 | { 2468 | "city": "Hermosillo", 2469 | "country": "Mexico", 2470 | "timeZoneName": "America/Hermosillo" 2471 | }, 2472 | { 2473 | "city": "Tijuana", 2474 | "country": "Mexico", 2475 | "timeZoneName": "America/Tijuana" 2476 | }, 2477 | { 2478 | "city": "Puerto Vallarta", 2479 | "country": "Mexico", 2480 | "timeZoneName": "America/Bahia_Banderas" 2481 | }, 2482 | { 2483 | "city": "Kuching", 2484 | "country": "Malaysia", 2485 | "timeZoneName": "Asia/Kuching" 2486 | }, 2487 | { 2488 | "city": "Kingston", 2489 | "country": "Norfolk Island", 2490 | "timeZoneName": "Pacific/Norfolk" 2491 | }, 2492 | { 2493 | "city": "Nauru", 2494 | "country": "Micronesia", 2495 | "timeZoneName": "Pacific/Nauru" 2496 | }, 2497 | { 2498 | "city": "Alofi", 2499 | "country": "Niue", 2500 | "timeZoneName": "Pacific/Niue" 2501 | }, 2502 | { 2503 | "city": "Chatham Island", 2504 | "country": "New Zealand", 2505 | "timeZoneName": "Pacific/Chatham" 2506 | }, 2507 | { 2508 | "city": "Taiohae", 2509 | "country": "French Polynesia", 2510 | "timeZoneName": "Pacific/Marquesas" 2511 | }, 2512 | { 2513 | "city": "Rikitea", 2514 | "country": "French Polynesia", 2515 | "timeZoneName": "Pacific/Gambier" 2516 | }, 2517 | { 2518 | "city": "Port Moresby", 2519 | "country": "Papua New Guinea", 2520 | "timeZoneName": "Pacific/Port_Moresby" 2521 | }, 2522 | { 2523 | "city": "Karachi", 2524 | "country": "Pakistan", 2525 | "timeZoneName": "Asia/Karachi" 2526 | }, 2527 | { 2528 | "city": "Saint-Pierre", 2529 | "country": "Saint Pierre and Miquelon", 2530 | "timeZoneName": "America/Miquelon" 2531 | }, 2532 | { 2533 | "city": "Adamstown", 2534 | "country": "Pitcairn Islands", 2535 | "timeZoneName": "Pacific/Pitcairn" 2536 | }, 2537 | { 2538 | "city": "Gaza", 2539 | "country": "Palestinian Territories", 2540 | "timeZoneName": "Asia/Gaza" 2541 | }, 2542 | { 2543 | "city": "Hebron", 2544 | "country": "Palestinian Territories", 2545 | "timeZoneName": "Asia/Hebron" 2546 | }, 2547 | { 2548 | "city": "Funchal", 2549 | "country": "Madeira", 2550 | "timeZoneName": "Atlantic/Madeira" 2551 | }, 2552 | { 2553 | "city": "Vincennes", 2554 | "country": "U.S.A.", 2555 | "timeZoneName": "America/Indiana/Vincennes" 2556 | }, 2557 | { 2558 | "city": "Koror", 2559 | "country": "Palau", 2560 | "timeZoneName": "Pacific/Palau" 2561 | }, 2562 | { 2563 | "city": "Novokuznetsk", 2564 | "country": "Russia", 2565 | "timeZoneName": "Asia/Novokuznetsk" 2566 | }, 2567 | { 2568 | "city": "Yuzhno-Sakhalinsk", 2569 | "country": "Russia", 2570 | "timeZoneName": "Asia/Sakhalin" 2571 | }, 2572 | { 2573 | "city": "Petropavlovsk-Kamchatsky", 2574 | "country": "Russia", 2575 | "timeZoneName": "Asia/Kamchatka" 2576 | }, 2577 | { 2578 | "city": "Monticello", 2579 | "country": "U.S.A.", 2580 | "timeZoneName": "America/Kentucky/Monticello" 2581 | }, 2582 | { 2583 | "city": "Kigali", 2584 | "country": "Rwanda", 2585 | "timeZoneName": "Africa/Kigali" 2586 | }, 2587 | { 2588 | "city": "Honiara", 2589 | "country": "Solomon Islands", 2590 | "timeZoneName": "Pacific/Guadalcanal" 2591 | }, 2592 | { 2593 | "city": "Jamestown", 2594 | "country": "Saint Helena, Ascension and Tristan da Cunha", 2595 | "timeZoneName": "Atlantic/St_Helena" 2596 | }, 2597 | { 2598 | "city": "Longyearbyen", 2599 | "country": "Norway", 2600 | "timeZoneName": "Arctic/Longyearbyen" 2601 | }, 2602 | { 2603 | "city": "Juba", 2604 | "country": "South Sudan", 2605 | "timeZoneName": "Africa/Juba" 2606 | }, 2607 | { 2608 | "city": "São Tomé", 2609 | "country": "São Tomé and Príncipe", 2610 | "timeZoneName": "Africa/Sao_Tome" 2611 | }, 2612 | { 2613 | "city": "Lower Prince's Quarter", 2614 | "country": "Sint Maarten", 2615 | "timeZoneName": "America/Lower_Princes" 2616 | }, 2617 | { 2618 | "city": "Cockburn Town", 2619 | "country": "Turks and Caicos Islands", 2620 | "timeZoneName": "America/Grand_Turk" 2621 | }, 2622 | { 2623 | "city": "Port-aux-Français", 2624 | "country": "French Southern & Antarctic Lands", 2625 | "timeZoneName": "Indian/Kerguelen" 2626 | }, 2627 | { 2628 | "city": "Fale", 2629 | "country": "Tokelau", 2630 | "timeZoneName": "Pacific/Fakaofo" 2631 | }, 2632 | { 2633 | "city": "Dili", 2634 | "country": "East Timor", 2635 | "timeZoneName": "Asia/Dili" 2636 | }, 2637 | { 2638 | "city": "Winamac", 2639 | "country": "U.S.A.", 2640 | "timeZoneName": "America/Indiana/Winamac" 2641 | }, 2642 | { 2643 | "city": "Marengo", 2644 | "country": "U.S.A.", 2645 | "timeZoneName": "America/Indiana/Marengo" 2646 | }, 2647 | { 2648 | "city": "Petersburg", 2649 | "country": "U.S.A.", 2650 | "timeZoneName": "America/Indiana/Petersburg" 2651 | }, 2652 | { 2653 | "city": "Vevay", 2654 | "country": "U.S.A.", 2655 | "timeZoneName": "America/Indiana/Vevay" 2656 | }, 2657 | { 2658 | "city": "Tell City", 2659 | "country": "U.S.A.", 2660 | "timeZoneName": "America/Indiana/Tell_City" 2661 | }, 2662 | { 2663 | "city": "Knox", 2664 | "country": "U.S.A.", 2665 | "timeZoneName": "America/Indiana/Knox" 2666 | }, 2667 | { 2668 | "city": "Menominee", 2669 | "country": "U.S.A.", 2670 | "timeZoneName": "America/Menominee" 2671 | }, 2672 | { 2673 | "city": "Center", 2674 | "country": "U.S.A.", 2675 | "timeZoneName": "America/North_Dakota/Center" 2676 | }, 2677 | { 2678 | "city": "Beulah", 2679 | "country": "U.S.A.", 2680 | "timeZoneName": "America/North_Dakota/Beulah" 2681 | }, 2682 | { 2683 | "city": "Boise", 2684 | "country": "U.S.A.", 2685 | "timeZoneName": "America/Boise" 2686 | }, 2687 | { 2688 | "city": "Shiprock", 2689 | "country": "U.S.A.", 2690 | "timeZoneName": "America/Shiprock" 2691 | }, 2692 | { 2693 | "city": "Juneau", 2694 | "country": "U.S.A.", 2695 | "timeZoneName": "America/Juneau" 2696 | }, 2697 | { 2698 | "city": "Sitka", 2699 | "country": "U.S.A.", 2700 | "timeZoneName": "America/Sitka" 2701 | }, 2702 | { 2703 | "city": "Yakutat", 2704 | "country": "U.S.A.", 2705 | "timeZoneName": "America/Yakutat" 2706 | }, 2707 | { 2708 | "city": "Nome", 2709 | "country": "U.S.A.", 2710 | "timeZoneName": "America/Nome" 2711 | }, 2712 | { 2713 | "city": "Metlakatla", 2714 | "country": "U.S.A.", 2715 | "timeZoneName": "America/Metlakatla" 2716 | }, 2717 | { 2718 | "city": "Samarkand", 2719 | "country": "Uzbekistan", 2720 | "timeZoneName": "Asia/Samarkand" 2721 | }, 2722 | { 2723 | "city": "Vatican City", 2724 | "country": "", 2725 | "timeZoneName": "Europe/Vatican" 2726 | }, 2727 | { 2728 | "city": "Kingstown", 2729 | "country": "Saint Vincent and the Grenadines", 2730 | "timeZoneName": "America/St_Vincent" 2731 | }, 2732 | { 2733 | "city": "Road Town", 2734 | "country": "British Virgin Islands", 2735 | "timeZoneName": "America/Tortola" 2736 | }, 2737 | { 2738 | "city": "Christiansted", 2739 | "country": "U.S. Virgin Islands", 2740 | "timeZoneName": "America/Virgin" 2741 | }, 2742 | { 2743 | "city": "Efate", 2744 | "country": "Vanuatu", 2745 | "timeZoneName": "Pacific/Efate" 2746 | }, 2747 | { 2748 | "city": "Mata-Utu", 2749 | "country": "Wallis and Futuna", 2750 | "timeZoneName": "Pacific/Wallis" 2751 | }, 2752 | { 2753 | "city": "Aden", 2754 | "country": "Yemen", 2755 | "timeZoneName": "Asia/Aden" 2756 | }, 2757 | { 2758 | "city": "Mamoudzou", 2759 | "country": "Mayotte", 2760 | "timeZoneName": "Indian/Mayotte" 2761 | }, 2762 | { 2763 | "city": "Gothenburg", 2764 | "country": "Sweden", 2765 | "timeZoneName": "Europe/Stockholm" 2766 | }, 2767 | { 2768 | "city": "Malmö", 2769 | "country": "Sweden", 2770 | "timeZoneName": "Europe/Stockholm" 2771 | }, 2772 | { 2773 | "city": "New Salem", 2774 | "country": "U.S.A.", 2775 | "timeZoneName": "America/North_Dakota/New_Salem" 2776 | }, 2777 | { 2778 | "city": "Creston", 2779 | "country": "Canada", 2780 | "timeZoneName": "America/Creston" 2781 | }, 2782 | { 2783 | "city": "Quebec City", 2784 | "country": "Canada", 2785 | "timeZoneName": "America/Montreal" 2786 | }, 2787 | { 2788 | "city": "Nashville", 2789 | "country": "U.S.A.", 2790 | "timeZoneName": "US/Central" 2791 | }, 2792 | { 2793 | "city": "Green Bay", 2794 | "country": "U.S.A.", 2795 | "timeZoneName": "US/Central" 2796 | }, 2797 | { 2798 | "city": "Acapulco", 2799 | "country": "Mexico", 2800 | "timeZoneName": "America/Mexico_City" 2801 | }, 2802 | { 2803 | "city": "Aguascalientes", 2804 | "country": "Mexico", 2805 | "timeZoneName": "America/Mexico_City" 2806 | }, 2807 | { 2808 | "city": "Ciudad Juárez", 2809 | "country": "Mexico", 2810 | "timeZoneName": "America/Chihuahua" 2811 | }, 2812 | { 2813 | "city": "Cuernavaca", 2814 | "country": "Mexico", 2815 | "timeZoneName": "America/Mexico_City" 2816 | }, 2817 | { 2818 | "city": "Guadalajara", 2819 | "country": "Mexico", 2820 | "timeZoneName": "America/Mexico_City" 2821 | }, 2822 | { 2823 | "city": "Guanajuato", 2824 | "country": "Mexico", 2825 | "timeZoneName": "America/Mexico_City" 2826 | }, 2827 | { 2828 | "city": "León", 2829 | "country": "Mexico", 2830 | "timeZoneName": "America/Mexico_City" 2831 | }, 2832 | { 2833 | "city": "Mexicali", 2834 | "country": "Mexico", 2835 | "timeZoneName": "America/Tijuana" 2836 | }, 2837 | { 2838 | "city": "Puebla", 2839 | "country": "Mexico", 2840 | "timeZoneName": "America/Mexico_City" 2841 | }, 2842 | { 2843 | "city": "Querétaro", 2844 | "country": "Mexico", 2845 | "timeZoneName": "America/Mexico_City" 2846 | }, 2847 | { 2848 | "city": "San Luis Potosí", 2849 | "country": "Mexico", 2850 | "timeZoneName": "America/Mexico_City" 2851 | }, 2852 | { 2853 | "city": "Toluca", 2854 | "country": "Mexico", 2855 | "timeZoneName": "America/Mexico_City" 2856 | }, 2857 | { 2858 | "city": "Torreón", 2859 | "country": "Mexico", 2860 | "timeZoneName": "America/Monterrey" 2861 | }, 2862 | { 2863 | "city": "Odessa", 2864 | "country": "Ukraine", 2865 | "timeZoneName": "Europe/Kiev" 2866 | }, 2867 | { 2868 | "city": "Donetsk", 2869 | "country": "Ukraine", 2870 | "timeZoneName": "Europe/Kiev" 2871 | }, 2872 | { 2873 | "city": "Casablanca", 2874 | "country": "Morocco", 2875 | "timeZoneName": "Africa/Casablanca" 2876 | }, 2877 | { 2878 | "city": "Marrakesh", 2879 | "country": "Morocco", 2880 | "timeZoneName": "Africa/Casablanca" 2881 | }, 2882 | { 2883 | "city": "Punta Arenas", 2884 | "country": "Chile", 2885 | "timeZoneName": "America/Punta_Arenas" 2886 | } 2887 | ] 2888 | --------------------------------------------------------------------------------