tz-converter_1.0.1.orig/0000755000175000017500000000000013206501170013607 5ustar davedavetz-converter_1.0.1.orig/tz_converter.egg-info/0000755000175000017500000000000013206477762020050 5ustar davedavetz-converter_1.0.1.orig/tz_converter.egg-info/top_level.txt0000644000175000017500000000001513206477762022576 0ustar davedavetz_converter tz-converter_1.0.1.orig/tz_converter.egg-info/PKG-INFO0000644000175000017500000000161413206477762021147 0ustar davedaveMetadata-Version: 1.1 Name: tz-converter Version: 1.0.1 Summary: Tool for converting the time across time zones Home-page: https://github.com/DMaiorino/tz-converter Author: David Maiorino (Dave) Author-email: maiorinodavid@gmail.com License: GPL-3+ Description: Convert the time and date across time zones This tool provides a simple interface for converting the time and date between two time zones. Written in Python3 and using PyQt5, this interface allows the user to save a certain time zone and restore it after further changes. The timezone information is taken from pytz, supplying seven different regions: Africa, America, Asia, Australia, Europe, Pacific, and US. Keywords: productivity Platform: UNKNOWN Classifier: Operating System :: POSIX :: Linux Classifier: Programming Language :: Python :: 3 Classifier: Intended Audience :: End Users/Desktop tz-converter_1.0.1.orig/tz_converter.egg-info/SOURCES.txt0000644000175000017500000000102113206477762021726 0ustar davedaveAUTHORS LICENSE.md MANIFEST.in README.rst setup.py debian/changelog debian/control debian/copyright debian/py3dist-overrides scripts/tz-converter tz_converter/main_widget.py tz_converter/timezone_info.py tz_converter.egg-info/PKG-INFO tz_converter.egg-info/SOURCES.txt tz_converter.egg-info/dependency_links.txt tz_converter.egg-info/top_level.txt tz_converter/data/tz-converter.desktop tz_converter/data/icons/Saki-NuoveXT-Apps-world-clock.ico tz_converter/data/icons/gnome-set-time.png tz_converter/data/manpages/tz-converter.1tz-converter_1.0.1.orig/tz_converter.egg-info/dependency_links.txt0000644000175000017500000000000113206477762024116 0ustar davedave tz-converter_1.0.1.orig/MANIFEST.in0000644000175000017500000000055313201762633015360 0ustar davedaveinclude LICENSE.md include MANIFEST.in include AUTHORS include debian/changelog include debian/copyright include debian/control include debian/py3dist-overrides recursive-include tz_converter/data/icons * include tz_converter/data/manpages/tz-converter.1 include tz_converter/data/tz-converter.desktop recursive-exclude * __pycache__ recursive-exclude * *.py[co] tz-converter_1.0.1.orig/setup.py0000644000175000017500000000357213201762633015340 0ustar davedavefrom setuptools import setup import os def gen_data_files(*dirs): results = [] for src_dir in dirs: for root, dirs, files in os.walk(src_dir): results.append((root, map(lambda f: root + "/" + f, files))) return results setup(name='tz-converter', version='1.0.1', description="Tool for converting the time across time zones", long_description=("Convert the time and date across time zones\n" "This tool provides a simple interface for converting the time and\n" "date between two time zones. Written in Python3 and using PyQt5,\n" "this interface allows the user to save a certain time zone and\n" "restore it after further changes. The timezone information is\n" "taken from pytz, supplying seven different regions: Africa,\n" "America, Asia, Australia, Europe, Pacific, and US."), author='David Maiorino (Dave)', author_email='maiorinodavid@gmail.com', url='https://github.com/DMaiorino/tz-converter', license='GPL-3+', keywords='productivity', scripts=["scripts/tz-converter"], packages=["tz_converter"], data_files=[('/usr/share/tz-converter/icons', ['tz_converter/data/icons/gnome-set-time.png', 'tz_converter/data/icons/Saki-NuoveXT-Apps-world-clock.ico']), ('/usr/share/man/man1/', ['tz_converter/data/manpages/tz-converter.1']), ('/usr/share/doc/tz-converter', ['AUTHORS', 'debian/copyright']), ], classifiers=['Operating System :: POSIX :: Linux', 'Programming Language :: Python :: 3', 'Intended Audience :: End Users/Desktop', ] ) tz-converter_1.0.1.orig/tz_converter/0000755000175000017500000000000013201762633016343 5ustar davedavetz-converter_1.0.1.orig/tz_converter/main_widget.py0000644000175000017500000002204213201762633021204 0ustar davedave#!/usr/bin/python3 import sys import os icon_path = '/usr/share/tz-converter/icons' from PyQt5.QtWidgets import QWidget, QGroupBox, QVBoxLayout, QHBoxLayout, QTimeEdit, QCalendarWidget, QComboBox, \ QPushButton from PyQt5.QtGui import QIcon from PyQt5.QtCore import QTime, QDate from tz_converter import timezone_info import datetime from pytz import timezone class MainWidget(QWidget): def __init__(self): QWidget.__init__(self) # Set Time One Group self.time_one_calendar = QCalendarWidget() self.time_one_country_combobox = QComboBox() self.time_one_vbox = QVBoxLayout() self.time_one_groupbox = QGroupBox("Time One") self.time_one_bottom_hbox = QHBoxLayout() self.time_one_time_edit = QTimeEdit() self.time_one_default_button = QPushButton() self.time_one_default_button.setIcon(QIcon("%s/gnome-set-time.png" % icon_path)) self.time_one_default_button.setMaximumSize(50, 50) self.time_one_bottom_hbox.addWidget(self.time_one_time_edit) self.time_one_bottom_hbox.addWidget(self.time_one_default_button) self.time_one_vbox.addWidget(self.time_one_country_combobox) self.time_one_vbox.addWidget(self.time_one_calendar) self.time_one_vbox.addLayout(self.time_one_bottom_hbox) self.time_one_groupbox.setLayout(self.time_one_vbox) # Set Time Two Group self.time_two_groupbox = QGroupBox("Time Two") self.time_two_calendar = QCalendarWidget() self.time_two_vbox = QVBoxLayout() self.time_two_country_combobox = QComboBox() self.time_two_bottom_hbox = QHBoxLayout() self.time_two_time_edit = QTimeEdit() self.time_two_default_button = QPushButton() self.time_two_default_button.setIcon(QIcon("%s/gnome-set-time.png" % icon_path)) self.time_two_default_button.setMaximumSize(50, 50) self.time_two_bottom_hbox.addWidget(self.time_two_time_edit) self.time_two_bottom_hbox.addWidget(self.time_two_default_button) self.time_two_vbox.addWidget(self.time_two_country_combobox) self.time_two_vbox.addWidget(self.time_two_calendar) self.time_two_vbox.addLayout(self.time_two_bottom_hbox) self.time_two_groupbox.setLayout(self.time_two_vbox) # Set main layout self.main_layout = QHBoxLayout() self.main_layout.addWidget(self.time_one_groupbox) self.main_layout.addWidget(self.time_two_groupbox) self.setLayout(self.main_layout) # Wire-up your widgets! self.time_one_connect() self.time_two_connect() self.time_one_default_button.clicked.connect(self.set_local_time_one) self.time_two_default_button.clicked.connect(self.set_local_time_two) # Set the local time for time one self.set_local_country() self.set_local_time_one() # Finally, convert the second time based on the first self.convert_timeone_to_timetwo() def set_local_country(self): global_timezone_list = timezone_info.get_global_timezone_list() local_tz_index = global_timezone_list.index(str(self.get_local_timezone())) self.time_one_country_combobox.addItems(global_timezone_list) self.time_one_country_combobox.setCurrentIndex(local_tz_index) self.time_two_country_combobox.addItems(global_timezone_list) # To-do: Current solution works for Debian systems. Need to find repo solution that # allows for something like "from tzlocal import get_localzone" @staticmethod def get_local_timezone(): timezone_file = '/etc/timezone' try: file = open(timezone_file, 'r') system_timezone = file.read().rstrip() except IOError: print("Unable to open %s") & timezone_file system_timezone = 'UTC' return system_timezone @staticmethod def get_local_times(): local_hour = datetime.datetime.now().strftime("%H") local_minute = datetime.datetime.now().strftime("%M") local_current_time = QTime(int(local_hour), int(local_minute), 0, 0) return local_current_time def set_local_time_one(self): # Set time for one time local_current_time = self.get_local_times() self.time_one_time_edit.setTime(local_current_time) # Set date for one calendar self.time_one_calendar.setSelectedDate(QDate.currentDate()) # Convert the second time based on the first self.convert_timeone_to_timetwo() def set_local_time_two(self): # Set time for one time local_current_time = self.get_local_times() self.time_two_time_edit.setTime(local_current_time) # Set date for one calendar self.time_two_calendar.setSelectedDate(QDate.currentDate()) # Convert the first time based on the second self.convert_timetwo_to_timeone() def time_one_connect(self): self.time_one_country_combobox.activated.connect(self.convert_timeone_to_timetwo) self.time_one_calendar.clicked.connect(self.convert_timeone_to_timetwo) self.time_one_calendar.currentPageChanged.connect(self.convert_timeone_to_timetwo) self.time_one_time_edit.timeChanged.connect(self.convert_timeone_to_timetwo) def time_two_connect(self): self.time_two_country_combobox.activated.connect(self.convert_timeone_to_timetwo) self.time_two_calendar.clicked.connect(self.convert_timetwo_to_timeone) self.time_two_calendar.currentPageChanged.connect(self.convert_timetwo_to_timeone) self.time_two_time_edit.timeChanged.connect(self.convert_timetwo_to_timeone) def time_one_disconnect(self): self.time_one_calendar.clicked.disconnect() self.time_one_country_combobox.activated.disconnect() self.time_one_time_edit.timeChanged.disconnect() def time_two_disconnect(self): self.time_two_calendar.clicked.disconnect() self.time_two_country_combobox.activated.disconnect() self.time_two_time_edit.timeChanged.disconnect() def clear_combo_boxes(self): self.time_one_country_combobox.clear() self.time_two_country_combobox.clear() def __amend_country_region(self): """ Used to add the regional header before converting if a region outside of global is used. """ current_region = timezone_info.get_city_region(self.time_one_country_combobox.currentText()) time_one_country = self.time_one_country_combobox.currentText() time_two_country = self.time_two_country_combobox.currentText() if '/' not in time_one_country: time_one_country = current_region+'/'+self.time_one_country_combobox.currentText() time_two_country = current_region+'/'+self.time_two_country_combobox.currentText() return time_one_country, time_two_country def convert_timeone_to_timetwo(self): # Disconnect time two widgets,so that they do not run self.time_two_disconnect() time_one_country, time_two_country = self.__amend_country_region() date_time_one = datetime.datetime(self.time_one_calendar.yearShown(), self.time_one_calendar.monthShown(), self.time_one_calendar.selectedDate().day(), self.time_one_time_edit.time().hour(), self.time_one_time_edit.time().minute()) first_tz = timezone(time_one_country) second_tz = timezone(time_two_country) first_dt = first_tz.localize(date_time_one) second_dt = first_dt.astimezone(second_tz) new_date_two = QDate(second_dt.year, second_dt.month, second_dt.day) self.time_two_calendar.setSelectedDate(new_date_two) new_time_two = QTime(int(second_dt.hour), int(second_dt.minute)) self.time_two_time_edit.setTime(new_time_two) # Reconnect time one widgets. self.time_two_connect() def convert_timetwo_to_timeone(self): # Disconnect time one widgets,so that they do not run self.time_one_disconnect() time_one_country, time_two_country = self.__amend_country_region() date_time_two = datetime.datetime(self.time_two_calendar.yearShown(), self.time_two_calendar.monthShown(), self.time_two_calendar.selectedDate().day(), self.time_two_time_edit.time().hour(), self.time_two_time_edit.time().minute()) first_tz = timezone(time_one_country) second_tz = timezone(time_two_country) second_dt = second_tz.localize(date_time_two) first_dt = second_dt.astimezone(first_tz) new_date_one = QDate(first_dt.year, first_dt.month, first_dt.day) self.time_one_calendar.setSelectedDate(new_date_one) new_time_one = QTime(int(first_dt.hour), int(first_dt.minute)) self.time_one_time_edit.setTime(new_time_one) # Reconnect time one widgets self.time_one_connect() tz-converter_1.0.1.orig/tz_converter/timezone_info.py0000644000175000017500000000516313201762633021567 0ustar davedave#!/usr/bin/python3 """ Contains getters for cities in a specific region. """ import sys import os import pytz import re real_path = os.path.dirname(os.path.realpath(__file__)) sys.path.append(u'%s/lib' % real_path) def get_global_timezone_list(): return pytz.common_timezones def get_africa_timezone_list(): africa_timezone_list = [] for city in pytz.common_timezones: if re.match("^Africa/\w+$", city): africa_timezone_list.append(city.split('/')[1]) return africa_timezone_list def get_america_timezone_list(): america_timezone_list = [] for city in pytz.common_timezones: if re.match("^America/\w+$", city): america_timezone_list.append(city.split('/')[1]) return america_timezone_list def get_asia_timezone_list(): asia_timezone_list = [] for city in pytz.common_timezones: if re.match("^Asia/\w+$", city): asia_timezone_list.append(city.split('/')[1]) return asia_timezone_list def get_australia_timezone_list(): australia_timezone_list = [] for city in pytz.common_timezones: if re.match("^Australia/\w+$", city): australia_timezone_list.append(city.split('/')[1]) return australia_timezone_list def get_europe_timezone_list(): europe_timezone_list = [] for city in pytz.common_timezones: if re.match("^Europe/\w+$", city): europe_timezone_list.append(city.split('/')[1]) return europe_timezone_list def get_pacific_timezone_list(): pacific_timezone_list = [] for city in pytz.common_timezones: if re.match("^Pacific/\w+$", city): pacific_timezone_list.append(city.split('/')[1]) return pacific_timezone_list def get_us_timezone_list(): us_timezone_list = [] for city in pytz.common_timezones: if re.match("^US/\w+$", city): us_timezone_list.append(city.split('/')[1]) return us_timezone_list def get_city_region(current_city): for city in pytz.common_timezones: if re.match("^Africa", city) and current_city in city: return "Africa" if re.match("^America", city) and current_city in city: return "America" if re.match("^Asia", city) and current_city in city: return "Asia" if re.match("^Australia", city) and current_city in city: return "Australia" if re.match("^Europe", city) and current_city in city: return "Europe" if re.match("^Pacific", city) and current_city in city: return "Pacific" if re.match("^US", city) and current_city in city: return "US" return None tz-converter_1.0.1.orig/tz_converter/data/0000755000175000017500000000000013201762633017254 5ustar davedavetz-converter_1.0.1.orig/tz_converter/data/icons/0000755000175000017500000000000013201762633020367 5ustar davedavetz-converter_1.0.1.orig/tz_converter/data/icons/gnome-set-time.png0000644000175000017500000000744013201762633023734 0ustar davedavePNG  IHDR00WIDATxYiPTW6єq23ItbUb"# l(Fh6AT]VQ@PDAfTjbƥϜ{>B&tW߽ww=gw'-^L/ѵ{<@'xmXT;\MIV^&:V_'Nim9> [=q{He) >17>筥cWf-IPZ/`ŚaX r8wp& 7'e-r8[ۇe#  vŀS4 +O݂a}q ٭pC ^L{i%Ukp'6: {L`$YUAyM=u_V WK+&,uma`vKq͒J:!V||ϡ_)x6f qri뽑p9K-p^;tt*~:Z@ MֈP@SIb6lsd5ǦO#E ?Ѷs7zE5rZ bTHuC'F0fP6lD "0gsl (B#"kE)-2hhGAvQX:ò7y5AhtX?埞0.yXARU2dt:m}c h}(& o\`{8<Fl{qCsF^wp8Ǒҭ{Lo8w]NVT:()3J((]h"zW7q{g~3B TW@DM0.J)-mȔyw&]b^Yp*#_ }e@Q.e0q,q9`s2oI_ RT֔zXA8r2p/i s7[`¢u:w! c&BɈ9rNU]9W"_CS1UAM]#h)zcY~fd['ؘq+됖[A{K\qe9'bÖ &*LK|,x?L*pU}-|Sj\m.&qfoUŃWBlzIb=aɌUX24GI$,':f竲YX\@ɛle?`˼OP 7U_ L_L]L}Hvuj]y2Ӌiټ7H+E&XZ"|\=ҁʫ7zN2 䪺+INlu ŵ4qQέl|YpZX:$S _yi(g+K}S?ߡ8ihjCn6|炾̚;W[Y}W'_A5r'(AOvb^GBCrXNڍ407pr+kSo]Hk!(&q ,bi^&;y֮_ `v"> S s K>6:n $"$$"\'P@\&';.#5:|':PF6~VJzͺU KE(d!3fI/8d DHB=D we7?/9. aes p%8XJ@-o4[հs.L,<!v&Hj,y9 te&L-;8𪌞ʆIwTwX,,[L6˖\{$/C? *]y{"` r2е HUB|݁_Bw +`xU]Iv~bVHK&:*RbYkLDž,r [2z@Mٶ}pc+ow䴳UB lVF^:2~$fc'vO=fqDN+sPE~A$@q+ Ju0(őWBC1ɱ@+.!E*TwX8EZ/.KN&{_<Т5UH@M0싖R.4|BW8I[d?ʞBȫ˦{{$\(o0բONO"p+axuO-e=N\iL~w0jHJ*ه5l,y+]q;`%Gp=R7 n jV孁EW$.!PZQ(`0ЖA=ykT ܉t lX.}*>Η+]cU5trJH%( }X,%UU`>V{p~g3얣~h7E|򒔵ׯ7i/ZJΤ;>}#RZ甈a暳Gl[ %M\pX[uU9ac?:Џժ`93p+z;=g8G!aiIs^[ Jɺ9W~f!X.}{aO4-0>Bğ!>Ehk>Wd}q6|WUpϺt_*$1 )9%{lQc{sT ՟zg0o#П`*hIcՉ;;(M!0v ToT"N Sag,ae3_ͩp eO?3d|2~o$`$=b6bb&b8=#:=k<2^xЗxlc`/=x=0X0wNaWIDžYt ӞZ{?6 c@!L?}"wފ K>z}{O1 O5!G-K7ј|=ab:l6X4vK<:1=}Su4l6W,%Fo+jX੶GةVl}6Z !>aC"vbYk~P̵P/˵=6ߦ< 2p( e-BlW|m7dphğz6$dK}dĨw?5hMK7̗nm$IkWҏgo{_tLjQ x3|GS>3%χlp Xɢh`{M`gG >#ID?@WDA0eM>oa$EQh_G|vIENDB`tz-converter_1.0.1.orig/tz_converter/data/icons/Saki-NuoveXT-Apps-world-clock.ico0000644000175000017500000047410613201762633026453 0ustar davedave (`` HH TV@@ (B00 %4  Y Vj hs(        !"#$%%&''(((()))((((''&%%$#"!    "#%&()*+,-./00122222322222100/.-,+*)(&%#"    "$%')+,./12456789::;;<<<===<<<;;::98765321/.,+)'%#!   !#%(*,.023579:;=>?ABCCDEEFFFGGGFFFEEDCCB@?>=;:875320.,*(%#!  !$&)+-02468:<>@ACEFGIJKLMNOOPPR b#k \PPPOONMLKJIGFECA@><:8642/-+)&$!   #%(+-0257:<>@BDGHJLNOQRS e8'B0N8 V>$^E*fJ/mP3pS5pS4pS4pS4mQ3jN1cG,W>$P9 I2?,3# [SRQONLJHFDB@><97520-+(%#   !#&),/2479<?ACFHJMOQSTVW# sI3_C&lN.pS3vZ:jMu[{agnuz|xtqhw_jOsX;hJ,W>"?-fWVTSQOLJHFCA><9741.,)&#    #&),/258:=@CEHKMPRTVXZ-N7cF'lM,sU6fIw\n{|}~~{yyyzz|}jmSqV8[@$E/ qYXVTROMKHEC@=:752/,)&#   "%(+.258:>@CFILOQTVXZ qR9 dG(kL+pP/hKhuwwxyxtrpoqrrstsux{u\pU7]A%F1 dZXVTQOLIFC@=:741.+(%"   #&*-036:=@CFILORUWY[kP9iJ)mM,wW7qUprsttqoj~j~jllmnooprqrt{ky_CaE&@-`[YWTROLIFC?<9630-)&#   #'*-147:>ADGKNQTWY[ dI5hJ*nN,|^>z^pomjh~eycze{e{f}g}h~hjkkllmonoqtiN`G(6'^[YVTQNKGDA>:741-*&#    #&*-147;>BEHLORUXZ_A.fH(nN,tT1tWkfxcvavbvawawawaxaybzc{e{e}e}g~ghijjkmmz~s}cG\B&- ]ZWUROKHEA>;741-*&#  "%)-037:>AEHKORUX[6%bE&mM,qP-dDbxat_u_v`v_v`v`v_w`x`w_x_x`zazbzb}c}e}efgghmz}}}~~}{cqU8U<"  v[XUROKHDA>:730,)%"   $'+.269=@CGKNRUW[M6kL+pO-wW4w[dr]s^s]t^u^u]u^v^v^w^w^w]w]x]x^y_z`{`}b|a}c~d~dlz{{||}}}~~~tkQfJ-4%ZWUQNJGC@<952.+'$   !%),037:>BEILPSV aY?$mM,qP-}\:fhr\r[s\s\t[u\u\u\v\u[v\w\w[w\x\w[x\y]z^{^{_{`cqxyzz{{|||}}|}}}}}~}~~}~{y`u[@F1YVSOLHEA>:730,(%!  "&)-048;?BFIMQT lbE'oO,sR._$\TPMIFB?;740-)%"  "&)-047;?BFIMP3"}gJ)pP-tS/a?eii^qXqXrXsXsXtXuYuXuXvYvXvXwYwXwXwXwWwWxXxXbstÞuÞvßwßwŸxžwŸyxzzyzzyz{zzzz{wzzzzy{cmRaH-dPMIFB?;740-)%"  !%),037:>AEHLD0kL*qP-vS/dAeghi\qWrWrVrVsVtVtVuVuVvWvVvVvVvUvUvUvTvTvT`›oœpÜqÝrĝsÞsĞußuĞußvğwğxŸyxyzxyzyxyyuhoyxxxw|dqXlP6(rLHEA>:63/,(%!   $'+.259<@CGP: mM+qP-wT0_;dffhiiijiihfeda`_^]\^`behÚlÚměněnĜoĝpÜpĝqŞsĞsĞsĞtĞuĞußvßwŸywwxwwwwm|e}evwvvvvy`s[sY?5%|GC@<952.+'$   "%),037:>AG3mM+rQ.wU0}Y3{[dffgiijklmmnmmmšmÚmšlÚlÛkĚjějějějějĚiĚiĚjĚjěkŜlĜlĜmŜnŝoŝpŝqĞrĞsßsĞtĞuÞvžwwvvvvsf~ctuttttpv\sZtZ@'aA=:630,)%"  #&*-047:9(kkL*rQ.wU0}Y2oLbcefghijklmlkk™k™kÚjÚjÚiĚiěiĚhĚhśhśhśhśhŚgŚgŚhěhśiŜiśiŜkŜkŜmŝmĜnĝoĜpĝqĞrÞsÝsÝuvuuuttrtsrrrrrhtZsYmV: K:740-)&#   #&*-04&OjK)qP-wU0}Y2e>`bbdffhijkkjjj™iÙhĚhÚhĚhŚgŚgŚgśfƛeƛeƛeƛeƛeƚdƚdŚdŚdśeƛfƚfƛgƛiśiŜjŜjĝlŜměmĜoĜpÜpÜqsœstsssssrqpppppz`tYqXiP8:30-*&#  #&), 8fH)qP-wT0}Y2^5|Y`bcdffgihhhhg™gØfÙfĚfřeŚeƚeƚdƚdǛdǛcǛcǚbǛbǛbǛbǛbǛbǚaǙaƚcǛcǛcŚc^WbƛhŜjśkěkĜmÛlÛnÛo›p›pndbdlqpnnnnnlvZtYpWaI2/,)&"  !%)aE'pO-vT/|X2\4kD__acdeghggffe—eØeØdędřcƙbǚbǚbǛbǛbțbțaɛaɛaț`ț_ț_Ț_Ț_Ț_Ț_Ț_ǚ`]}KoFoHpHO\ěfŚhĚiěkÛjÛll_vUvUvWuWtW_kmmmlll|auYsYmUXB,($!   [A$nN,tS/{W1\4`6yT^_`bceeeeec–c—cėbŘbřbƙaƙaǚ`ǚ`ț`Ț_ɛ_ɛ_ɚ^ɛ^ɛ^ɛ]ʛ]ʛ]ʚ\ʚ\ɚ\ɚ\ɚ\ęZxDlBlBmCnDnEnG|LX_ddZwQsPtQtRtStTsUsU}ZjkkjjjfvYtYqX~fMC/Z  O8ZlM+sR.zV1[3`6h=\]_abccccbb•a–a×aŘ_Ř_ƙ_Ǚ_Ț_Ț^Ț]ɛ]ʛ]ʛ\ʛ\˛\˜\˜\˛[˛[˛[˛Z˛Z˛ZʚYʙYMij?k@kAlBmCmDnEnEoGoHpJpKqLpMrOqOrQrQqSqS[jjihhgy\uXsXpWpV;$*   gJ)qP-xU0Z3_5c8tK[]_`bbaa`_•_–_×^ŗ^Ƙ]Ƙ]Ǚ]ș\ɚ\ʚ\ɚ[ʚ[˛[˛Z̜Z̜Z̛Y̜Z̜Z˜Z̜Z̛Y˛Y˛Y˚W˚W|?h:g:h;ik>k@kAlBmCnElEnHnHnInJoLoLoMpNpPoP`hhffe~avXtXqWmT_G, _C%fnN,vS/|X2]5b7f:WZ]_```_^^]Õ\Ė\Ŗ\Ɨ\ǘ\ǘZșZəYʙY˚Y˛Y˛Y˜Z̛Y̜Z̜Z̜Y͝Z͝Z̜Y̜Y̜Y̜X̜X̛W˚Wl;f7f7f7g7g9g:h;ij>j@kAkAkClDlElFmHnInInKnLnN~SgfdccbxXuWrWpWybHF3(M3 jK*sR.zW1\4a7f9m@Y[\^]]]\\\”ZĕZŖZƖZǗYȘYșXəX˚X˚W̛X̛X̛X̜Y̜X̝Y͝Y͜Y͜Y͜Y͝Y͝Y͝Y̜X̛W̛WɚUf6f6e6e6d6e5f7f7f8g9g9h;i=h=i>i@iAiBjDkElGlGlHlJlKcddaa`zYvWsVqWnUoV=gK*tpO-wU0Z3_6d8i;sEXZ\\\[ZZZ“YĔXŕXƖWǗVȘVəVʙVʙV˚W˚W̛X̛X͜X͜X͝Y͜X͝Y͝Y͝X͝XΝXΝXΝX͜W͜W͜W͛Vl8d5c4c3c3c2d3d5d4e6e6e7f9g;f:gh@iAiCiDiDjFjH_bb__^|YwWuVrVoTiOaG%/`@0lM+tR.|X2]5b7g:m=xIXZZZZXXWWÔWŕWƕUǖUȗUɗTʘT˙T̚U̚V̛V̜W͜W͜W͜WΝXΝXΞYϞYΝXΝXΞYΞXΞXΝWΝWΝW͜VkA^_^][Z~YzWwVtUpTmRx`FZ?#AaF,lM+tR.|X2^5c8i;n>sAPVVVUUTS‘SĒQŔQǕQȕQɗQʘRʘS˙S˚T̛U͜V͝WΜVΝWϞXϞWϟXϟXϟXϟXϟXПWПWОWОWОWϞVϞVϞVΝT<`/_.^-^-^,^,]+\*]+^,^._.`/`0a2a2a4b5b7a7b9c;{D\\\\ZY~X|WwVtUrTmRkRbH*gH*pO-xU0[3a7f:l=q@vCQTTSRRQQÒPœPǓOȕOɖPʖPʘR˙R̚S͛T̛T͜UΜUΝVϞWϟWϞWПXПXПWѠXѠXПWПWПWПWПWПWПVϟVϝTΜS@f/],],]+\*\*[)Z([*\*\+s2CIG@i3`2`4`5`7FYZ[[[YX|WxUvTsSoRkQoV;Y?%EkL+sR.|X2^5c8i\A$fD+nN,wU0[4b7h;n>tBzE~FFEIHGFÎFŏEƐFǒHȔJɕK˗M̗M͙OΚPΜQϝRОSџTѠUҡVӢWӢWԣXԤYԤYեZեZեZ֦[֦[֦[֦[֦[֦[֦[եZեZդYԤYԤYԣXӢWӡVҡVѠUџTОSϝRɚNAėK̘M˗LʕKɕKɔJȔKǒJƑJÐJ"%iJ*sR.}Y2`6f:mnN,xU0]4rg0Cs Gv"Kx#Nz$P|$Q}$R}$k+CCčCƏDǑFɓHʕJ˗L͙NΛPϜQОSѠUҡVӢWԤYեZ֦[ק\ר]ة^٪_٪_ګ`ڬaڬaۭbۭbۭbۮcۮcRs8`/`/`/_/e2æW٫`٪_ة^ة^ר]֧\֦[եZԤYӢWҡVѠUОSϝRΛP͙N̘M˖KɔIȓIǒHƑHĐHÏJLMOPSTUS}QxOtMoKkIfIoS6]B%dF)WpO-zV1]4Eo Dt Iv"Ly$O{$P|$Q}$R~#T#2ÌCŎCǑFȓHʕJ˗L̙NΚOϜQОSѠUҡVӣXԤYեZ֧\ר]ة^٪_٫`ڬaڬaۭbۮcܮcܯdܯdܯdY|)iI(sQ.}Y2nf.Br Gu!Kx#Nz$P|$Q}$R~$S#U#V#f'ǑFȓHʕJ̗L͚OΜQОSџTҡVԣXդY֦[ק\ة^٪_ګ`ڬaۮcܮcܯdݰeޱfޱf޲g߲gMa2a2a2a2a2a2b2w;GTۯdݰeݰeܯdۮcۭbڬa٫`ت_ب]ק\֦[ԤYӣXҡVџTОSϜQ͚O̘M˖KɔIȒGƐFŏEÎGHJMMPQR~PyMtKnHiFeEqS4aD&X="CjK*tS/Z3{e2Cs Gv"Ky#N{$P|$Q}$R~#T#U#V#W#?ɔI˗L̙NΛPϝRџTҡVӣXդY֦[ר]ة^٪_ڬaۭbܮcܯdݰeޱf޲g߳h߳h޳hGb3b3b3b3y=P\سfii߳h߳h޲gޱfݱfݰeܯdۮcڬaګ`٪_ة^ק\֦[ԤYӢWҡVџTНRΛP͙N˗LʕJȓHǑFŏEÎEFIJMMPQ~NyMtKoIiFdDpS3bE'Y=$\jK*vS/[4c6Ds Hv"My$O{$P|$R}$S~#T#V#W#X$=ʖK̘M͚OϜQОSҠUӢWդY֦[ר]ة^٫`ڬaۮcܯdݰeޱf޲g߳hijٳfBb3c4c4c4Vllllkkjji߳h߲gޱfݰeܯdܮcۭbڬa٪_ة^ק\֦[ԤYӢWҠUОSϜQΚO̘M˖KɔIȒGƐEčDEGIKLNP~NyKtInGiEdBrS2bF'Y?#vkL+vT/\4d7Dt Iw"Mz$O{$P}$R~$S#U#V#W#X$@˗L͙NΛPОSѠUӢWԤY֦[ק\ة^٫`ڬaۮcܯdݱf޲g߳hijkԲez>c4c4c4c4Dnnnnnmmllkji߳h޲gޱfݰeܮcۭbڬa٪_ة^ק\եZԣXӢWѠUОSϜQ͚O̗LʕJȓHǑFŎCŒDEGJJMNNyKsInFiDcAqQ1cF'W>$kL+wU0]5e7Et!Iw"Nz$P|$Q}$R~#T#U#V#W$X%C̘M͚OϝRџTҡVԣXեZק\ة^٫`ڬaܮcݰeޱf߲gߴijklϲdq:c4c5c5c5c5Fppppooonmmlkji߳hޱfݰeܯdۭbڬa٪_ب]֧\եZԣXҡVџTϝRΛP̘M˖KɔIǑFƏDÍCDFGJKMMyJsGnEiCb@qR0cF'Y?#]F. kL+wU0]5g6Et!Jx#Nz$P|$Q}$R~#T#V#W#X$Z&ÔH͙NΛPОSҠUӢWդY֧\ة^٪_ڬaܮcݰeޱf߳hijkmصitrrrrqqpponnmlki߳h޲gݰeܯdۭbګ`ר^ӥ[ѢYΟV̜TəQǗOƕMĒJÑIÐGÎECBBDFHIKLyIsFmDgBa>nN,cF'Y?#`@+kL+xU0a9i:Fu!Kx#Nz$P|$Q}$S~#T#V#W#X$x0˗L͚OϜQџTҡVԤY֦[ר]٪_ڬaۮcݰeޱf߳hiklmnEd5d6d6d6e6e7e7g8tuuttsrrqponmlj۱g֫cҨaϤ^̢\ȞYśW˜TRPMKJHECB@><~<}>|?|B{Cz>}Hw$Kx#N{$P|$R}$S#U#V#W$X$<̘MΛPОSҠUӢWեZק\ة^ګ`ۭbܯdޱf߳hiklno_d6d6e6e7e8e8e8e8e8ֺoxxwwvutsrpmڱjծgѩc̥aȡ^Ý[YVSQNMIGED~B|@{>y}[7nN,cF'X>"kL+wU0kEqDO{+Nz'N{$P|$R}$S#U#V#W$\&ĕH͙NϜQОSҡVԤY֦[ب]٪_ۭbܯdݱf߳hikmnoqFe6e7e8e8e9e9e9e:e:Ķi{{{zyxwsݶoزkӭhͨeȣaß^[XVSPMKI~F{DxAv?t>rm;k:i8g6f5d3d2b1a/a.a.`/`0?\<]<^=`iM&zY*{Y*|Y+wX+6T7V7V8X7Y6[5Z>YcF(\A%U^;]6Y0V*T#V#W#^&ƕH̘MΛPОSҡVԤY֧\ة^ڬaܮcݱf߳hjlnpqsvYe:f:f;ff>SDžDžÁ޼|ٸyӱuˬoƦlfc^YUPL{IvFrCgf?f?f@g@g@g@gAlĆ޾ָ~вyɬtæoje`[VR|MlY7 653JJI444$$$000...222;;;DDDNNNSSSKKKBBB888---111)))(((A@@IHG /K.L-L+M*MS=!O8I3 E$`F$MnN,ggmQmNkHiCf=c6`0]+Y'<͙NϝRҠUԣX֦[ة^ڬaܯdޱfiknpruy|~Jf=f>f?f?g@gAgAgAgAgBgBQĈݿֹг{ȫvqlfa\WoG ,+)FFE###222///III]]]hhhmmmnnnqqq~~~nnnnnnkkkbbbXXX:::111***222HHG $ ,K*L1JS;!L6F12& `@%0kL+gmxYrTqOnIkCh=e7b1^-4͚OНRҠUԤY֧\٪_ۭbݰe߲gjmoqtx{~ŁRf>f?g@gAgAgBgBgCgCgCgCfBȻ{׺Ѵ~ɮyçtoid_kZ;  LKJ&&&333???^^^jjjuuunnneeeVVV...''&998AB@ )L:GQ: K5B/,%hJ+ꛁgsbvZvUsPpJmCj=g8c4f1˛QНRҡVԤYק\٪_ۮcݰe߳hknpsvz}ŁDŽ_f?g@gAgBgCgChChDhDhDhDhDuL۾ӸͲ}ƬxsnhMB, >=;00/000888]]]mmmeeePPP111###IJI F;P9 J4<*)" eG)~cxj{a{\xVuPrJoDl>i:e6MПVҡVդYר]٫`ܮcޱfiloquy|ŀƃȆ~jBgAgBgChDhEhEhEhEhFhFhEgD}QѾھӸ̱~ūyt0) LKJ&&&000[[[kkksssbbb???**)ABA=+I31!q#`F$MpT}sfb}]yWvPtKqEm@i+,U9 {_B}lhc^|WyQuKrGoB~EӤ_Ԧ_֧^ب]ڬaܯd߲gknptx|ŁDŽɈˌ̏ΑghEhFhFhGhHhHhHhHhHhHhHhHhHeEW`T< NML''':::cccnnnXXX111,,,)(& hL,unjd]}XzRwMsHpDʥaըcשc٪bڬaܯd߳hknquz~ƃȆʊ̎ΑϔЕWhGhHhHhIhIiJiJiJiJiJhIhIhHhHdsB LLJ###<<>>(((oW>ö˼ϽӿŤȤǟŚÖǚ͡ΡСѡҡӣԣӟʑ}kkmoqrstuuvuuu^R 998000iiiYYY***BBBJ5 |gɽ;ҿůζ̯ʨɡȟˤΩϨϧЦҥӦզ֧ԥjlnoqtuwwyzzz{zz;P500/:::nnn]]]333KKKU9!6̿ϿïѿѻжваЮЮЬѫҫӪԩթثɕxpssvxz{|}~#.*,)&'&CCCnnnaaa:::KKK\F+]ϾӾҹҵҴҲӱӰԯԮ֯׮ٮő~vxz|~$564###KKKeee999GGG(hP6³ȸԼԸԷյյճ׳ײٲڲΟώŒ|}=><)))VVVMMMjjj111@@@5s\Eƹô־ֹֻ׹ַ׷ضٶ۵׮ǖƔŒđŒÍÎÎÍAB@,,,\\\gggDD99\\lll///:::<@+ oX>´˾ؾؽؼٻٺڹ۹ݹФʚɘȗǕđÎĐőƓƓŒő!:<:'''RRRYYYZZiii555BBB0H0 gM2뼭ٿھھ۽ܼݽ۷̠˝˝ʛɚǗÎÍďŒƔǖǗȘǗǖ )575$$$JJJ}}}zzzttfff<<@CFILNPRh*=,V?%bK0oW=yaFgMmSqWtZrXlS}eMt^EiR;ZD-?.(hUQOLIFDA>;741-)&"   %(,147<?BFJMPSU_. F1]B'pT7hL{bmswwxy{z{}}zukkSfP8I5, `VSPMJGC@<941.)%"   $(-159=@EILQSVb" N6kM.wY:lOmuuutrpnoqqssu|w_u[@YA) cWTQNIFB=961-*%!   %).26:?CGLOSW[ zE1hK,|_@sWhnmkki}h}hjklmmpoqz}hw`FH7$  ZWTPLID?<73/*&!   $*.27;?DHMQUX i?-_C&vW6uVce~d|czbxaxaybzd{e}f}g~hijkmr||js]D<+ kYURNIEA<83/*&!   $(.26;@DIMRV d7&hI)tT3iG`u_t^u_u_v_v_w_w^w^x_yaza|c|d~efhr{|}}~~yanU:=+ dWSNJE@<82.*$  !&*/48>BFLPT jD0iJ*{[9vW`r\r\s\t\t\u]u\v\w\w\w\x]y^{_{`|afpyz{{||}}}~}}~~~|ohNH6" lVQLHC>:50,&"  "'+059?CHMR aT:!mM+xX5{^ew\qZrZsZtZtZuZuZvZvYwZwYwYxZy\z]ervxyzzzz{{{|||||||{ulSXC-nRNID@;61-'#  "'+159?CHQ)_C%sR/`>|^hcuYqWrWsWtWtWuWvXvWvXvWvWvVwV{XbrsÝuÞvžvžvŸxxyyyyzzyyytxyytx_rY?#{RID@;61-'#  !&*/48=BF4%cF'rP-_<{\fhe``__]][[ZYXYZ\blÛoÛoĜqÝqÝsĞtÞtÞuÞvžwxwxxwxtimwwvqx`oW@4&NC>:40,&"  #(-16;?'khJ)sQ.yV1wWdeghijkkkjjihhggghiÚjÚjÚkĜlÜmĜnĝoĝpĝrÝsÞtÞuvwvvvshgttttnsYt\D.!y@<72.*$   $)-28'ebE&tS/|Y2mJbceghiklkjj™jÚiÚiĚhĚhĚgśgśgśgŚfŚfĚgśgśhśiśjŜlĜlĜnĜoĝpÝrÜrœttttsrsrqqqftZybG_83.*&!   %)- MY?#rP-{X1f?}Zbcefhiiihh˜gÙgęfęfŚeŚeƚdƛdƚcƚcƚcƚbŚbƚbƚdƚdŚebc›hśkělÛnÛn›p›qqmjlpponnlz_sXfQ< R.*%!   $(U<"qP-yU0^6sN^acdgggffe˜eØdędřbƙbƚbƚbǚațaȚaǚ`Ǜ_ǚ_ǚ_Ǚ_ǚ`Ù_T}K}MSaĚgĚiÛkšklaY}Y~Z_jmmllevZnU^J6 :$    %L6pP-xU0[3h?Y^`bddddb–bėaŘař`ƙ`ǚ_ǚ_Ț^ɛ^ɚ]ɛ]ɛ]ʛ\ʛ\ʚ[ʚ[ɚ[řZLmAkAlBmDpGNW\Y{QrOsPsQsSrTxWgjjigy\sXmSZD.      0#ViK*wT/Z2`6sI\^`bba``•_Ö_ŗ^Ř]Ƙ]ș]ș\Ț[ʚ\ʛZ˛Z˛Z˛Z˛Z˛Z˚YʚYʚXS{@h;i=i>j?l@lBlCnEnFnHoJoKoMpNpOpQYfhgf}`uXqW~eK1%M  *+ #rP-|X2^5d8~U[^``_^]”]Ö\Ŗ\Ɨ\ƘZȘZəYʚYʚY˛Z˛Y˛Y̛Y̜Y̜Y̜Y˛X˛X˛WPk9f7f8g9g:ikAkAkClElFmHnInJnLtP^fdcbvWsWoVcN5 '0%0&Y= UoO,yV0^5d8l?Y[]\\[[“ZĔYŖYƖXȘXșWʙW˚W̛X̛X̜X̜X̜X͜Y͜X͜X͝X͜X̛W̛WMf6d5d5d4e5e6f7f8g:htBLRRQPO‘OƓNǔNɖOʖPʘQ˙R̛T͛TΜUΝVΞVϞWϟWПWѠWРWПVПWПVПVПVϞUΝSL?<;j.Z(Y'Z(\)8GIF=i4_4l:OXZZYWzUvTrRmQy`EcH-RsU.kL*sR.[3b7i;r@yDJPONMLđKǓLȔMʖN˘P̙Q̚R͛SΜTϝTϞVОVПVѠWѠWѡXѡWѠWҠWѠWѠWѠVОUОTОS͜QʛPɚNDr/Z'Y&g*BȓJȒJǑKJ@g4n9OVYZXW|UwSrRnQhMmQ4rW.$mM+xU0_6f9n>wC|EGLKKJďIƑIȓKȕLʗM˙O̙P͛QΜSϝTϞTПVѠVѡVҡWҢWӢWӢXӢWӢWӢWӢWӡVҡVҠUѠUџTОSНRϜQÙK7](j+DɔJȔJȒJƑJJ;p7MTVXYW}UyStQnPiMiP3oT5$lP,DpP-|X2b7i;q@zD~EEIHGÎFŏFƑHȓJɕK˗M̙O͚PΜQϝSОTџUҡVҡVӢWӣXԣXԤYԤYԤYեZԤYԤYԤYԣXӣXӣXҡVҠUѠUОSϝRțN;9HʕKɔJȔJǒJőJF;MRTVXVUzStPoOjMpV9rU5ViI*tS.[3e8l=tA}EEEFFDčDƏEǒGɔI˖L̘MΚPϜQϝRџTҡVҡVԣWԤYեZեZ֦[֦[֧\֧\ק\֧\֧\֦[զ[եZեZԤYӣXӢVҡVѠUОS̛PșM̙N˗LʕKɔJȓJƑIŐIINPRTVVU{RuPpNjMv[?bF(|]>jZ,lL+xU0^5i7yq3lx.u|1~9BCCŒBŏDǑFȓH˖K̘MΚOϜQОSҠUӡVӣXդYեZ֦[ק\ר]ب]ة^ة^ت_٪_թ^ͦZȥW̦Yԧ\ק\֧\եZդYԣXҡVҠUџTϝRΛP͙N˗LʕKɔJǓIƑHďIKMPRTVT|RvPpMkKy^B_E)y[;"aM)oN,{W1~b3Wp&Iv"Ly#O{$V|%1CBčCǑFȓHʕJ̘M͚OϜQПTѠUӢWԤYեZ֦[ר]ة^٩^٪_٫`ڬaڬaڬa˨[I>|:=Oթ^ب]ר]֧\եZԤYӣXҡVПTϝRΛP̙N˗LʕJȓIǑHŐHIKNPRTS}QvOpLkI|`CdH,z\;7eL)#{iP*xU0_4So%Iv"Mz#O{$R}#S~#U#W#0G̘M͚OϝRҠUӢWեZק\ة^٫`ۭbܯdݰeޱf߳hߴiʮ_Ae4b3@[Բeܵijjiߴh޲gޱfݰeܮcۭbګ`ة^ק\եZӣXҠUОSΛP̘M˖KȓHƐEčDEHJLONwKqHjE~_>iL,[@$iR+yV0`5Tp%Jw"Nz#O|#R~#T"U"W#2ÕI͙NϜQПTӢWեZק\ة^٫`ۮcܯdݱf߳hi޵ií^o9b4c4k8Ynnnmmlkj߳h޲gޱfܯdۭbګ`ة^ק\եZӢWѠUНRΛP̗LɔIǒGŎCDEHJMMwJpGjD}^@~C|B}@v@nCgA|[7hJ)Z@$kh3jS-|Y4j?Zu,Ly$N{#Q|#S#U"V#m+F͚OОSҡVԤYק\٪_ۭbܯd޲gikmoPd6d6d7d8e8d8Svxwwusq߷mٱjҬf̥aƠ]ZVROLIF~C{Ay>wpa?c>e>d ^\,kM,`D&U̘MϜQҠUԤY֧\٫`ۭbݰeߴikmoqͶhe8e9e9e:f;f;f;LؿxĀ~{ڷvӰo̪jád_ZTPL{GvDrAh:eO,E68+3'4'<-R=lO'}[+~Z+{Z,8V8W9Y8[6\AY cF'Y?#J4 )!iR-n_=}XlE_;\4X,U$V#^%ȖI͙NϝRҢWեZר]ڬaܯd޲gjmoru_e:e:ftFϽwŃ~ٸyϮsǨmgaZUN{InAjV2M>$")('..,,+)"! 2$R;0C2N3P1R0S/TY@#R: <* hQ.W}]<_rMeCb;^4Z+X%^&ŖI͚OОSӢW֦[ة^ۮcݰeilnqux[e;ee>f?f?g@jÄۻӴyɫrlf_XSxJhU38-$"$#!&&%;;;433333555:::888444333988100"!'%# , ,F.M,N*NS=!M6. z  fR->z[:eyTkKhCef>f?f@g@g@gAR†ٻѴ{ƪtng_YxM4+$ 21/+++444;;;SSS\\\```kkkvvvbbb^^^WWWFFF555222,,+ "  5+K.KQ: I4 h#lZ6vY:j`rTpMlFh=d5`/:ΛPџTԤYר]ڬaݰe߳hlorw|Ā`f>f?gAfAgBgCgCgCfBuڽӶȭxrk`q`?%!,+)776888UUUiii999443898$ 5AO8E1 X" sV8ҡmix\vUsNnEj=f7{:ǛQѠUդYר]ڭbޱfimquzƃɻtg@f@gBgCgChDgDgDhD}Qxֻγ~ūxr_Q7+( 0/.555KKKwwwUUU777453 G2?, A lQ1is~c|]xVtMqFl?u>QҢXեZة^ۭb޲gknrx}ƂȆȈ[gBgDgDgEhFgFgFhFhFzPqֻϴtdF!554---ZZZtttAAA111)(' -% gQ0>y_mg`|WxOtIrCRӦ_ק_٪_ۮc߳hlouzŀDžʊ̎Ɋ^iGhFhGhHhHhHhHhHhHfF\xT)&=<<999mmmMMM000#"! 87/{S!mSñxoh_}WzQtJRϧcتe٬cۮc߳hlpv|ƂȈˍΑЕń{ShHhIhIhJhJiJhJhIhIV};/3#542333rrrKKJ110|W y`Fvph`YzQSȩf٭jگiܰgߴimqw~DŽʊ̐ϔҙӛvhIhKiKhKhKiKhKhKiJ /')&..-```===333 "" vSWy궩zqib]Wd۲sܳr޴pmnrzŁȇ̎Γјԝ֡ЗiLiMjMjNjNjNjMiMGl3898TTTiii444---KJH ]|bzrkidcصy޷z߹yxuw~ƅʋΒИӝ֢ئԠmQmQmRmSlSmSlRaI+675;;;}}}MMM555//.NtbEZzuupjy߼ὁ俁|łȊ̐Зӝ֢ب۬ҟqXqXrYqYqZqZqYCd5).'///TTT~~~777/// NNMu±}xwнŒċƋȉLjˎϕҝբبܮݱƋw`wawbwbwbwbo[1H(463>>>WWW'''QQQ3iRǶ}ÑǒȒ˒ˑ̒ЙԠצڬܰМs{f|g|h{h{h|heU"*()'NNNzzz444"""***Rkuaɺ˜ʚ˚ΚКϘҜ֣קϛrllmnonn^Q(+'343qqq777 y\@˼оæɧǠŚÕÕǛ΢ϢѢӢԣϚrlnqstuvvvvB[:!# 333NNN888ls_Gpξ®Ϲͱ̧̪ΪϪШѧӧէҢpoptvxy{||||*7&%&$999TTT@@@EEEv mVôоҽѸѳѱҰҮӭխ׬ϟwvy{~") *+*???YYY@@@~kĶʻԼԸնյִ׳ٳժǕÏ~$343LLLbbj}}\\\777)w_1wbּֿ׺׹ظٷڵϢǖƔЌÎĐĐď %343KKKrr\\\888(cN;;zdķؿٽٽڻܻٴ˝ʛɚǖόÏđƔƖƖƕ$+"-.-BBB[[[AAAcO6G{gPŷ޿ְΤ̠̞͡ȘƔǕɘɛʜɚ3=0&'%;;;WWWBBB222v`9kTõܾԮШϦΤͣ˞ɚəʜʜʛTeM$%$666MMM777jT=ۼ԰ҫѩЧϥ΢̟ɛɚɚzn,-+888|||999!!!`I4}zgƺֶԱӮҫѨϦ΢˞ɚ06,/0/XXX<<<&&&L} wcZ{jWɴ˿۾ٺֳӮѪϧΤ̠OZEBCALLLfff333]]]1³|i'TB1x{hƹ۾ٺմүϧˡjw]462DDDrrrPPPCCCZZZudRraO|lۭپؼԶɫKE;TTS]]\hhhLLL???Iq`8^O@vgWʚ{Ÿ̽ԾҺз.-+XXWxxx[[[AAA]]]%sfWFM>0tdTޑqɼµĶŶƶǶƵŴ±B>9KJJaaacccWWW"G<3+PE4u_P?aRB[L=j[KtdU|m^sd|m]tdTUH;PPOlllzzzZZZ,,,[xi`Rj_P(g[L8bXIH`VGZ^TGZ]THK[TJ8,)%Zjjjwwwppp333"""ttt}wS111mmmzzzuuu>>>wwwF\\\ooo555{yvHGF;SSS}}}[[[///$$$d|||uts# nnn󐐐8882~~~\\\&&&dddsss򁁁rrrttt999 &&&HyyyLLL0OOOf~444SSSSSSPPPMMMNNNRRRTTTHHH (((rNNNM___}}}xxx,{{{8>EIGA~~~:{{{5vvv?????????(H `T     "%')+,./000000.-,*(&$!   %(,/2579<>?@AABBA@@>=;9631.+'$  "'+/48;?BEIKN ^ q%+ 1$A09).!'! x iTMJHDA>:62.*%! #(.37<AEIMQY u4$XA(qX93-'!  #)/5;AGMSZ&\A$w[9Wcv`u`v`w`w`yazc|d}fghmx}~zlSC2 lVQKE?93-'!  &,39?ELR aB.nO-mM^s]s\u]u]u]v]w\w\x^z_{`}bjwz{|}~}~~~~}llU=%VPJC=71*$ !(.5;AGNiO7sR0pPeu[rYsYtYuYuZvYvYwYwYxZ}]juwxyzz{z{{{{{{q|dL3&TKE?82,% !'-4:@F n[@$vU1pPgd{ZyYyXyXyXyXyWyWzW|VXe›qÝrÝtÞuÞuÞwxxxyyxvnxxpmT?0SE?81+%  %+17> ZgI)uS/lJefhijkjhgfdefhÚjÚkělÜmĜoĝqĝrÞsÞuvwvvrdtutnoUH7%F;5/)#  &,2 K_C%vT/e?^cfhjkkj™iÙiÙhĚhĚgŚfŚfŚfřeĚfśgśhśjĜkĜmĜoÝqœrttsrsqqq~dnS>0!60*$  % 8Q9!uR.\5zVaceghgg˜fÙeřdƚdƚcǛcǚbǚaǚaǚaǙ`ƚaÚaZW`šhěkÛl›nkcahmmmlx\hO3'q)#  "E1rQ-~Y2jB\`cdedc×bĘbřaƙ`ǚ_Ț_ɚ^ɛ^ɛ]ɛ]ɚ\ɚ\ƙ[NnBmCtGPZ`Z}StQsSuU^jjj~bsXybJ E    *OnN+|W1`6xO]`ba`_–_ŗ^Ƙ]Ǚ]ɚ\ɚ[ʛ[˛Z˛Z˛Z˛Z˛Y˚XTt>h;i=j?k@lBmEmGnIoKoMpNrQ_hfcwYqVcN7  8'3#eG'xU0^5g:Y\^^]\Õ[ŖZǗZǘXəX˚X˛X˛X̜Y̜Y̜Y̜X̜X˛WPg7e6e6f8g9h;i>i?jAjCkFlHlJzPdcazZsVlRK:&LC5&^B'PsQ.[3d8pAX[[YX“XŕWǖVȘUʙU˚V˛W̛W͜X͜X͝X͝XΝX͜W͜WPi6b2b2c2c3d4d6e8f:ghAhCqI``]|YuVpUv^B^J3_D' kL+zW1`6j;wFWWWU‘TēSǕRɗSʘS˙T̛V͛V͜WΝWΝWϞXϞWϞWϝWΝVțS<`0_/_.^-_.`/a1b3c5c7c:d˗LΛPџTӣW֦[ש^٫`ۮcݰe޲g߳hϰbAd4q:]ٴhkjj߳h޲gݰeۮcڬaة^֧\ԤYҠUϝR͙NʖKȒGĎDEILO{LrHhDtV5\A$hZ-JvT/b4Fu!Nz#P}#S~#U#W$B͙NОSҡVեZר]٫`ܮcݱf߳hjαc|?c4c4Doonnmlj߳hޱfܮcڬaة^զ[ӢXОT͛P˗LȓHŏDCFIL{KqFhBtU3]A$dI,ZvT0e6Hv!Nz#Q}#S~#V#`'GΛPѠUԤYר]٫`ܮcޱfߴikصhBc5d5d6y@ssrqpnmkݲg׬cӧ_ϣ[ɝWŘSNKGDA>@D}D{BpCe@rR0]B%k`1MxV2l?Kx%N{$Q}#T"V#1ɘLϝRҢW֦[٪_ۭbݱfߴilnUd6d7d8d8r?ܽsxxvsoذiϨdơ^YUPLG}Cz@w=t:r7p5o6l0Jj"Em#Rk(y^6nN-[A$mb4>xW4uJT0R~(R~$T#W#=͚OџTԤYר]ڬaݰeߴilooFe8e9e:e:o@ϻq~|x׳pͩiàb[UPJyEr@}b6kS-gN)fM(lP({Z,_-_.P[ ;\;^:`TW'bE'Q9 2*nd70yY7}T]<[3V)U#[$ĕHΛPҠUեZت_ܮc޲gknqӹlvAe:e;f"C/ 0"pe:"vW6ۗ^fGc>^3Z)[%ŖJϜQӢWק\ڬaݰejmqv̸mp@ff?f?]ַ|ʭtkbYPwb<4+*)&'&&776666999CCC???888988.--*)(* -H,M5JP93$ rg=rT4ΟgpRmIh?c4]+AϝRӣXר]ۭb޲glpt{ʺonAf?f@fAfAfBnFؿոɭwndVH=(&$!332;;;QQQhhhHHH555()'7:EL6 "|Ou`>m`vUqKl@f7?ΞSԣXة^ܯdinsy{{JgAgBgCgDgDgD\һϴév]81$/.,=<\O@WJ2WWWmmm555;;;Jfc^hhhvvv:::>>>oheb WWWwww444FFFX|zy 776|===uuucccJJJ2bbb/000===xxx󉉉|||eee---'''bnnn___,GGGY'''HHH===:::;;;FFFBBBxWWWIiiiOOOQQQ PPP ???????????????(@ B   "%')*+-----,+)(&#!  "'*.147:<>?@ABAA@>=;863/,($   #(-27;?CFJLS n)1#8)G4 <,3%)" u ]NKHDA=94/+&   $*06;@EJOS `,R;"w[>qUhqu{|zxnsZlV>8) pUQLHC>82-'!")/5;AGMSW uQ9 tV7rWqtrpnnprry~flT;*ZUPJD>82,% #*07>DKQW lI4vX7~[hf|cxbzd|f}g~ijlmzqlV>" YTNGA:4-&  !(/6=DKRW;)mN,nLy_t^u^u_v^w^w^y`{a|c~egw|}}~{cWA+ fTNG@92+$#*19@GNZM6tS0y\_rZsZt[u[u[vZw[wZx[z]fuyzz{|{|||}}ts[C sQJC<5.& #*18@G _]B%wV3z\hyZqWrWtWuWvWvWvVvVvUbœrÝtÞužvŸwyyyzyyswyrhN*JC<5.&  !(/6= UgI)wT0xWfhijjigfdcehÚjĚlĜmÜnĝpĝrĞsÞužvwvvjluunmT4&@92+$#)0 =_C%wU0kGbegikkj™iÚiĚhĚgŚfśfŚfŚeĚfśgśiŜkĜlĜnÝqÜrttssrqq~dkQ c3-& "(R:!vT/_7]bdgggf˜eędřcƚcǚcǛbǚaǛ`ǚ`Ǚ`ǚa[PXeĚjÛkmd\_jmmlv[~fM B%   E1sR.[3pH^acdcb×aŘ`ƙ`ǚ^Ț^ɛ]ʛ]ʛ\ʛ\ʚ[ɚZWm@kAlCqFPU|PrNrPrRtUfji}`sXnV>  '  $oN,}Y2b7~U^``_]Ö]Ɨ\ǘ[əZʚZʛZ˛Y̛Y̜Z˜Y˛X˛WJf8g9h;i=j?lBlDmFmInJoM~TgdbuWpVG7#r ( cF&xV0`6k>Y\\[ZÔYƖXȘWəW˚W̛X̛X̜X͜Y͜X͝X͜X̛WFd5c4d4e6f7g:ghAjDjEkHba_xXrV~gMYE. `C)&rQ-\4f9tDXYWV’UƕTȖTɘS˙T̛V̛V͜WΝWΞXΝXΞXΝWΝVLa1`0`/`.a0a1b4d6d8e;e>gA^^[{XuUnSiQ7iJ+zV0b7m={IUTSQœPȕPɗQ˙R̚T͜UΝVϞWϟXϟWПWОWОWϞVΝU?`-],\*[)\+c.;;c4`6r?Z[Y}WvUpRv]BoU:qS- pP-\4g:sAIPOMÐLǓLɕN˘P̙R͛TΝTϞVПVРWѠWѠWѠWѠWРVОUϝSțPǙN:Z'Y&;ȓJǑKGi5|>VYYWxTqRiNsW:_oS-RwT/a7m=yDFKJŽIƑIȓKʖM˙O͛QϝSϞTѠVѡVҢWӢWӣXӣXӣXӢWҢWҡVџTОSϜQB^(>ɔJȓJƑJBŎDȓH˗LΚOОSҡVԣX֦[ר]٪_ګ`ڭbۮcԬ`He1`/a0T٪_ة^֧\եZӢWџTϜQ͙NʕJȓHŐGŽIMPTQvNlJy\>eK+iT*?wT/Yk'Hv!Nz$Q}$S#m)ǑFʕJ͚OНRҡVդYק\ة^ڬaۮcܯdݰeέ`u:a1a1f3?ĩZۮcڬa٪_ר]եZӢWџTϜQ̘MɔIƑFÎFJMQQvLlGy\<[@#iV+XzV1ak*Iw"O{$R}#T#W#D̘MϜQҠUԤYק\٪_ۭbܯdޱf߳hƭ^n8b3Lʯa޵ii߳hޱfݰeۭbګ`ب]եZӢWОSΚO˖KȒGĎDFJMOvKkFy[:]A%iX,r|X2el+Kx#P|$R~#U#W$G͚OџTԣXק\٪_ۮcݰe߳hj[h6c4ut:q7p5n6hj*Ek!El#qc4qQ/\A$k\2`c@t|@U.R}%T#W#AΛPҡV֦[٫`ܯdߴiloڹme8e9e:f;f;ɹo|۷uϬlĢd\UN|HuCh;aL*R?"O<WA qS)],\-:X:[9]A[!bF'P8$l]3FiG{L`;Z0V$]%ʗKϝRӣXר]ۭb޲gkosôfe:fgÃٸz̬qh_UMk?I;"% &%#"! (('**)$#"#" "6'+>2O0Q.SW>"@-  l^5-hIXiHd<_0Y&GОSԤY٪_ܯdinrydf=f>f?f@g@Pӵ|Ũrh^QJ=%#!554444HHHRRRccclllUUUJJJ888988##!'A,LP9-! vmC fIfsToIi=b2AўSեZګ`ޱflpw}mf?gAgBgCgCgCuչǬxnU/* 321;;;rrrBBB333+5M7 }  y^At}axVrJl?AѡX֦[ڬa߳hms{Ƃdž|MgChEhEhFhFlHsӸb&#110XXXvvv;;:"!2# 6 p\:kmc|WvLtDѥ`ר`ۭbiovȇ̎ȈoJhGhHhIhIhHgG[2.&544qqq:::D10*viF|~pdYxOa٭iܯfipyƂʋΓҙ{hJiKiKiKiKiJ%4110bbb888::6v^ʳ|qe^`۳u޵ror}ȇ̐јԟӝjMjNjOjOjNJq6)+(LLLhhh000zZOtriζ|ἀ{ŃˎЗՠ٨֤qWqXpYpYpX#.666<<<HGG}{zōȌȊΕӟبݰ˔xbxcxcxccQ#&"LLLnnn///777l}`;»ʘ͘ϘК֤գƌlkmmmD_:665}}}555o[̽©ʪƞřɞΣѣԤΚylpsuwxw-=(444DDD###o {ѾѷѱѯҭԬ׬‹{uy|'-%565NNN$$$555y#̾սոն״ٳ˜Ð)-(AAAeeMMM777lXB@ؾټۺٴʛəĒÏŒƕƔ*/)999PPP###888jX@KկΣ͡ʜǕȘʜʛ/7,666KKK&&&UUU*ye԰ѪЧΤ˞ʛɚP_I=>=888jVBɽظԯҫЧΣʜ}n,-+aaaAAA|ól\I]sȻ۾׶Ӱϧʟ03.OOO```+++<<<2vfUsqȻ׽ԷvfIHGOOO weUeVIu𶧗ôɺʺ˹ɷIJ><9cccccc333@@@*|tiXDubxC6+TF8_QCdVG\M>6,!776qqqQQQ!!!j%$"QRRR}}}]]]%%%$#"H777郃^^^$$$lkj/eee򔔔uuu---$$$IKKKLNNN섄RRR333'''iooouuu PPP`)))ryz***uRRRlNNN????????????(0` %  !"###"!  $)-158:<=>=<:851.)$ &-4:@EJS t6(E6%P?.^K7QB1G8)8+ uTJF@:4.'  &/7>FMU zF3rY?v[nssvw{}qlWN>- }VNG?7/( )2;DLTrN8 ~jIbhf}f}gjlnvk\K8 rUMD<3*! '1:CMY;*y[;}Yt]u]u^w]w]y_|aeq{|~~~~~yaC4#[MD;1(   )3<E \M7`?dsYrXtYuYvXvXwX]ovxyzz{{yzm[I5 [G>3*! '0: M\A$ׁ_q:n5k3~h/Eg Hi$oX1]B%tX4~JY2U&X#•IџT֦[ۭb߳hmrNe:e;f<`Àٷwɨk`T|Ixa8SC)7.1*/(;-Q<MK5T4WKM L6 0$qW4YgC_3['×JҠUר]ܰekqxJe=f?f@O޿ͯwj\}hA=5%*)(<<;HHHVVVQQQHHH332&&"*)G?D8' ub>zhtTmEe6EӢW٪_޲gnvTf@gBgCgCqдriZ>.,)LLL}}}>>>";2(  wkE1oezVrGIԥ\ګaiq|ȆrJhFhGhGlJf|mN320kkkPPP'$! ` "[ hԕxhXPҪfۮejtĀʌϕzhIhJhKhJRz9.0*nnnNNM>=8cyj`m޶urxdžΓӝԟkOkPkQhM-;&QQQ999('&xi𦵌}ytݾ†ńˏӝبԢt\t^t^U}D342oooSSSr·ɖ͖Ϙ֤ў{~j~k~kCZ;GGG+++>>>@sˬȠʡϥӥ͚uotwyy-7)```GGG555xv1пӺӴԱװ˚{(+&uuuKKKv`MôؼٺײəŒÎŒŒ),(wwwLLLs\UհΣ̟Șɚɛ4<1dddGGG333w{7׵ҬЧ͠ɛZgQOOO///???@tb÷ع԰ϦvABA$$$bbbu(vgʼ־е\VOoooTTT///n{kYvhZyۛ}槗瀞wk^EDD{{{...cccrxh yob-voe!975````???ccc*=<;SRRR喖>>>jjj(ddc(DDDggg锔TTT999{lllqqq%OOO`PPP'''000eeeLLLHttt??????????( @    &,1567640+%  !,6@I `4&ZI6iYEoeLgYFUF6)TG>4))6COuZH/΄|WkkknuiL?0aL?3% %4BQ?,qMt\u\v\w\z_jy|}}~v_%L>0" %3FS:!ȒsSe`_^]bÜoÝrÞuwxsti8,>0")L6hCcgh˜gęeƚdƚcƚcc`›k›pjkoy_-#p%    3%mZ3VaaÖ_ǘ]ɚ\ʛ[˛[ʚYFj>tDzKoKqPcdkQ , M6 tR.ib2c3d7f;g@R^vWr[AmN,j_5vDROǔNʘQ͛TϞVПWПWПVO=i-l.Cx9KZzUjMtY=sS.i;}EHŏGɕL͚PПTҢWԤYդZԤYӣXҠUƛO@ɔJHJVUoOtX:jkV, uX/[t(m~-BȓHΚOҠUեZة^٫`ȧZCNר]ԤYџT͙NȓIJPSqLpT6kX,%k`,Kx#R~#5̙NҠUק\ڬaݰeVu:KZܯd٫`եZПT˗LŐFJOqIkN0jX.>qc/Nz#T#7ОS֦[ۮc߳hWe5Upnkܰeէ^͞VƕMECHpDkM-na46yl;Q}'U#EӢWڬaߴinl;e9U{ݷrʦdWKn=x[0^.e1HbLb%`D&@4se;xMb<[(əN֦[ݱfoҹmeMܼ¤mYbR461(887HHG9982-'$3,LE1 vM{YvUj>Kة^ju}lDgDgDlsG?1___mmm'+ , |_p~XUڬdl|ˍyhIhJhIDL3yyy761eFrfڷywƅИբmRmTRz>QQPddd322cɒ͔գǏ|g|h@R9(((t-ó̯̦Ѩϝuv{|/5-666MMMwTƶ׿׹֯ŒŒď363777DDD wYձΣʜɛGYsSoVlU,R[l'T}$?͚OӣXة^ڭbK|<ɨZר]ҡV̘MŐHNzOtW8nX.k\q(S~#<ҡV٫`޳gIJnkܰeԦ\˚QÏFEzHsT3s`6eg{7U$Jר]߳hıbe9NzͪiUm?hR0eM*lW'=_YG%4)xhAGVc5ĜOۭbpff@mE̵z]ME7rrreed(46.yTm|WWݱfxɉUhIqMSOF('$*(${{o}Ƅӝ{pWGc:887Xx$ØșϛĊtrFNC999Zָ̺ԭŒOQO111^Ǹֳ͢ʜPUM:::,ʹԵnGGGVaxyl`_^SSSaaaljgdddYYYttt ooo!fffKmmmJnnn(  @ "#  %=sTO8rwTz]wfT:1'H.mpV-pv5F͛PԣYҧ[PѢV˜KIScCl]-P|#C֧\ҮaGɰaܰeҢXƒII_;xk>Y+ɝQ޲gTyFضvRhV:^N7KJ#GI"{Xd{WXrrhGW~{?=6kﱵ{ƈћt]ap[777J]ͳӫ@@@a̹׷ΣCCCfrxqfMMM jjiUƥہhhhtz-converter_1.0.1.orig/tz_converter/data/tz-converter.desktop0000644000175000017500000000052713201762633023315 0ustar davedave[Desktop Entry] Name=tz-converter Comment=Multiple terminals in one window TryExec=tz-converter Exec=tz-converter Type=Application Categories=Utility; StartupNotify=true X-Ubuntu-Gettext-Domain=tz-converter X-Ayatana-Desktop-Shortcuts=NewWindow; Keywords=time;tz;time zone; Icon=/usr/share/tz-converter/icons/Saki-NuoveXT-Apps-world-clock.ico tz-converter_1.0.1.orig/tz_converter/data/manpages/0000755000175000017500000000000013201762633021047 5ustar davedavetz-converter_1.0.1.orig/tz_converter/data/manpages/tz-converter.10000644000175000017500000000242613201762633023577 0ustar davedaveNAME .TH tz-converter 1 2014-08-05 .SH NAME tz-converter \- convert the time and date across time zones. .SH SYNOPSIS .B tz-converter [ .BI - options ] .SH DESCRIPTION .B tz-converter is a simple interface for converting the time and date between two time zones. Written in Python3 and using Pyside, this interface allows the user to save a certain time zone and restore it after further changes. The timezone information is taken from pytz, supplying seven different regions: Africa, America, Asia, Australia, Europe, Pacific, and US. .SH OPTIONS This program currently has no documented commandline options. .SH COPYRIGHT Copyright © 2014 by David Maiorino. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . .SH AUTHOR David Maiorino. tz-converter_1.0.1.orig/AUTHORS0000644000175000017500000000053413201762633014671 0ustar davedaveTZ Converter is written and maintained by David Maiorino: Development Lead ```````````````` - David Maiorino Other Contributions ```````````````` For Saki-NuoveXT-Apps-world-clock.ico: Alexandre Moore For gnome-set-time.png: Red Hat Inc. Sid Vicious Free Software Foundation Sun Microsystems, Inc. Kristian Rietveld tz-converter_1.0.1.orig/scripts/0000755000175000017500000000000013201762633015306 5ustar davedavetz-converter_1.0.1.orig/scripts/tz-converter0000755000175000017500000003137413201762633017706 0ustar davedave#!/usr/bin/python3 import sys import os from tz_converter import main_widget from tz_converter import timezone_info from PyQt5.QtWidgets import QMainWindow, QApplication, QMessageBox, QAction, qApp from PyQt5.QtGui import QIcon, QPixmap from PyQt5.QtCore import QSettings, Qt class TzInterface(QMainWindow): def __init__(self): QMainWindow.__init__(self) self.icon_path = '/usr/share/tz-converter/icons' self.setWindowTitle("Time Zone Converter") self.setGeometry(100, 100, 500, 300) self.settings = QSettings("Application", "TZ Converter") self.setup_menu() self.central_widget = main_widget.MainWidget() self.setCentralWidget(self.central_widget) # Set Icon self.appIcon = QIcon('%s/Saki-NuoveXT-Apps-world-clock.ico' % self.icon_path) self.setWindowIcon(self.appIcon) # Set Default as Global self.set_global.setChecked(True) def setup_menu(self): """ # Setup the menu """ self.create_actions() self.create_menus() # File menu self.file_menu.addAction(self.action_reset) self.file_menu.addAction(self.action_load) self.file_menu.addAction(self.action_save) self.file_menu.addSeparator() self.file_menu.addAction(self.action_quit) # Region Menu self.region_menu.addAction(self.set_africa) self.region_menu.addAction(self.set_america) self.region_menu.addAction(self.set_asia) self.region_menu.addAction(self.set_australia) self.region_menu.addAction(self.set_europe) self.region_menu.addAction(self.set_global) self.region_menu.addAction(self.set_pacific) self.region_menu.addAction(self.set_us) # Help menu self.help_menu.addAction(self.action_about_qt) self.help_menu.addAction(self.action_help) def about_help(self): help_box = QMessageBox() help_box.setTextFormat(Qt.RichText) help_box.setWindowTitle("TZ Converter") help_box.setIconPixmap(QPixmap('%s/Saki-NuoveXT-Apps-world-clock.ico' % self.icon_path)) help_box.setText("TZ Converter 1.0
A simple application for converting the time across time zones.") help_box.setInformativeText("Copyright 2014 David Maiorino

" "Fork me on Github!

" "Icon by Alexandre Moore: " "" "Iconarchive

" "This program comes with ABSOLUTELY NO WARRANTY
" "" "http://www.gnu.org/licenses/gpl.html") help_box.exec_() @staticmethod def quit_application(): sys.exit() def reset_setting(self): self.set_timezone_region_global() self.central_widget.set_local_country() self.central_widget.set_local_time_one() # Create Actions for the menu def create_actions(self): self.action_help = QAction('About TZ Converter', self, statusTip="About Time Zone Converter", triggered=self.about_help) self.action_about_qt = QAction('About Qt', self, statusTip="Show the Qt Library's About Box", triggered=qApp.aboutQt) self.action_reset = QAction('Reset', self, statusTip="Reset Save/Load", shortcut="Ctrl+R", triggered=self.reset_setting) self.action_save = QAction('Save', self, statusTip="Save current times", shortcut="Ctrl+S", triggered=self.write_setting) self.action_load = QAction('Load', self, statusTip="Load saved times", shortcut="Ctrl+L", triggered=self.restore_setting) self.action_quit = QAction('Quit', self, statusTip="Quit Time Zone Converter", shortcut="Ctrl+Q", triggered=self.quit_application) self.set_us = QAction('US', self, statusTip="Set for US region", shortcut="Ctrl+U", triggered=self.set_timezone_region_us, checkable=True) self.set_america = QAction('America', self, statusTip="Set for America region", shortcut="Ctrl+M", triggered=self.set_timezone_region_america, checkable=True) self.set_asia = QAction('Asia', self, statusTip="Set for Asia region", shortcut="Ctrl+A", triggered=self.set_timezone_region_asia, checkable=True) self.set_africa = QAction('Africa', self, statusTip="Set for Africa region", shortcut="Ctrl+f", triggered=self.set_timezone_region_africa, checkable=True) self.set_australia = QAction('Australia', self, statusTip="Set for Australia region", shortcut="Ctrl+S", triggered=self.set_timezone_region_australia, checkable=True) self.set_europe = QAction('Europe', self, statusTip="Set for Europe region", shortcut="Ctrl+E", triggered=self.set_timezone_region_europe, checkable=True) self.set_pacific = QAction('Pacific', self, statusTip="Set for Pacific region", shortcut="Ctrl+P", triggered=self.set_timezone_region_pacific, checkable=True) self.set_global = QAction('Global', self, statusTip="Set for Global region", shortcut="Ctrl+G", triggered=self.set_timezone_region_global, checkable=True) # Actual menu bar item creation def create_menus(self): """ Create the actual menu bar """ self.file_menu = self.menuBar().addMenu("File") self.region_menu = self.menuBar().addMenu("Region") self.help_menu = self.menuBar().addMenu("Help") # Set Region functions def set_timezone_region_us(self): self.remove_all_checks() self.central_widget.clear_combo_boxes() self.central_widget.time_one_country_combobox.addItems(timezone_info.get_us_timezone_list()) self.central_widget.time_two_country_combobox.addItems(timezone_info.get_us_timezone_list()) self.central_widget.convert_timeone_to_timetwo() self.set_us.setChecked(True) def set_timezone_region_america(self): self.remove_all_checks() self.central_widget.clear_combo_boxes() self.central_widget.time_one_country_combobox.addItems(timezone_info.get_america_timezone_list()) self.central_widget.time_two_country_combobox.addItems(timezone_info.get_america_timezone_list()) self.central_widget.convert_timeone_to_timetwo() self.set_america.setChecked(True) def set_timezone_region_asia(self): self.remove_all_checks() self.central_widget.clear_combo_boxes() self.central_widget.time_one_country_combobox.addItems(timezone_info.get_asia_timezone_list()) self.central_widget.time_two_country_combobox.addItems(timezone_info.get_asia_timezone_list()) self.central_widget.convert_timeone_to_timetwo() self.set_asia.setChecked(True) def set_timezone_region_africa(self): self.remove_all_checks() self.central_widget.clear_combo_boxes() self.central_widget.time_one_country_combobox.addItems(timezone_info.get_africa_timezone_list()) self.central_widget.time_two_country_combobox.addItems(timezone_info.get_africa_timezone_list()) self.central_widget.convert_timeone_to_timetwo() self.set_africa.setChecked(True) def set_timezone_region_australia(self): self.remove_all_checks() self.central_widget.clear_combo_boxes() self.central_widget.time_one_country_combobox.addItems(timezone_info.get_australia_timezone_list()) self.central_widget.time_two_country_combobox.addItems(timezone_info.get_australia_timezone_list()) self.central_widget.convert_timeone_to_timetwo() self.set_australia.setChecked(True) def set_timezone_region_europe(self): self.remove_all_checks() self.central_widget.clear_combo_boxes() self.central_widget.time_one_country_combobox.addItems(timezone_info.get_europe_timezone_list()) self.central_widget.time_two_country_combobox.addItems(timezone_info.get_europe_timezone_list()) self.central_widget.convert_timeone_to_timetwo() self.set_europe.setChecked(True) def set_timezone_region_pacific(self): self.remove_all_checks() self.central_widget.clear_combo_boxes() self.central_widget.time_one_country_combobox.addItems(timezone_info.get_pacific_timezone_list()) self.central_widget.time_two_country_combobox.addItems(timezone_info.get_pacific_timezone_list()) self.central_widget.convert_timeone_to_timetwo() self.set_pacific.setChecked(True) def set_timezone_region_global(self): self.remove_all_checks() self.central_widget.clear_combo_boxes() self.central_widget.time_one_country_combobox.addItems(timezone_info.get_global_timezone_list()) self.central_widget.time_two_country_combobox.addItems(timezone_info.get_global_timezone_list()) self.central_widget.convert_timeone_to_timetwo() self.set_global.setChecked(True) def get_checked_region(self): if self.set_africa.isChecked(): return "Africa" elif self.set_us.isChecked(): return "US" elif self.set_america.isChecked(): return "America" elif self.set_asia.isChecked(): return "Asia" elif self.set_australia.isChecked(): return "Australia" elif self.set_europe.isChecked(): return "Europe" elif self.set_pacific.isChecked(): return "Pacific" else: return "Global" def set_checked_region(self, region): self.remove_all_checks() if region == "Africa": self.set_timezone_region_africa() elif region == "US": self.set_timezone_region_us() elif region == "America": self.set_timezone_region_america() elif region == "Asia": self.set_timezone_region_asia() elif region == "Australia": self.set_timezone_region_australia() elif region == "Europe": self.set_timezone_region_europe() elif region == "Pacific": self.set_timezone_region_pacific() else: self.set_timezone_region_global() def remove_all_checks(self): self.set_africa.setChecked(False) self.set_us.setChecked(False) self.set_america.setChecked(False) self.set_asia.setChecked(False) self.set_australia.setChecked(False) self.set_europe.setChecked(False) self.set_pacific.setChecked(False) self.set_global.setChecked(False) def write_setting(self): self.settings = QSettings("Application", "TZ Converter") self.settings.beginGroup("Time") self.settings.setValue("selected region", self.central_widget.time_one_time_edit.time()) self.settings.setValue("time_one", self.central_widget.time_one_time_edit.time()) self.settings.setValue("time_one_calender", self.central_widget.time_one_calendar.selectedDate()) self.settings.setValue("Combo One", self.central_widget.time_one_country_combobox.currentIndex()) self.settings.setValue("region", self.get_checked_region()) self.settings.setValue("Combo Two", self.central_widget.time_two_country_combobox.currentIndex()) self.settings.endGroup() def restore_setting(self): self.settings.beginGroup("Time") self.set_checked_region(self.settings.value("region")) self.central_widget.time_one_country_combobox.setCurrentIndex(int(self.settings.value("Combo One"))) self.central_widget.time_two_country_combobox.setCurrentIndex(int(self.settings.value("Combo Two"))) self.central_widget.time_one_time_edit.setTime(self.settings.value("time_one")) self.central_widget.time_one_calendar.setSelectedDate(self.settings.value("time_one_calender")) self.settings.endGroup() # Once values are set, run the time conversion. self.central_widget.convert_timeone_to_timetwo() if __name__ == '__main__': try: my_app = QApplication(sys.argv) main_window = TzInterface() main_window.show() my_app.exec_() sys.exit(0) except NameError: print("Name Error:", sys.exc_info()[1]) except SystemExit: print("Closing Window...") tz-converter_1.0.1.orig/README.rst0000644000175000017500000000066513201762633015315 0ustar davedavetz-converter -------- Convert the time and date across time zones. This tool provides a simple interface for converting the time and date between two time zones. Written in Python3 and using Pyside, this interface allows the user to save a certain time zone and restore it after further changes. The timezone information is taken from pytz, supplying seven different regions: Africa, America, Asia, Australia, Europe, Pacific, and US. tz-converter_1.0.1.orig/LICENSE.md0000644000175000017500000010446113201762633015231 0ustar davedaveGNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. {one line to give the program's name and a brief idea of what it does.} Copyright (C) {year} {name of author} This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: {project} Copyright (C) {year} {fullname} This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . tz-converter_1.0.1.orig/doc/0000755000175000017500000000000013201763475014371 5ustar davedavetz-converter_1.0.1.orig/doc/man/0000755000175000017500000000000013201763475015144 5ustar davedavetz-converter_1.0.1.orig/doc/man/tz-converter.10000644000175000017500000000242613201762633017667 0ustar davedaveNAME .TH tz-converter 1 2014-08-05 .SH NAME tz-converter \- convert the time and date across time zones. .SH SYNOPSIS .B tz-converter [ .BI - options ] .SH DESCRIPTION .B tz-converter is a simple interface for converting the time and date between two time zones. Written in Python3 and using Pyside, this interface allows the user to save a certain time zone and restore it after further changes. The timezone information is taken from pytz, supplying seven different regions: Africa, America, Asia, Australia, Europe, Pacific, and US. .SH OPTIONS This program currently has no documented commandline options. .SH COPYRIGHT Copyright © 2014 by David Maiorino. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . .SH AUTHOR David Maiorino. tz-converter_1.0.1.orig/stdeb.cfg0000644000175000017500000000130413206476564015411 0ustar davedave[DEFAULT] Source: tz-converter Maintainer: David Maiorino Section: python Depends3: python3-qtpy, python3-tz, python3-dateutil Build-Depends: dh-python, python, python3-all, python3-setuptools X-Python3-Version: >= 3.5 Package: python3-tz-converter Description: Convert the time and date across time zones This tool provides a simple interface for converting the time and date between two time zones. Written in Python3 and using QtPy5, this interface allows the user to save a certain time zone and restore it after further changes. The timezone information is taken from pytz, supplying seven different regions: Africa, America, Asia, Australia, Europe, Pacific, and US. tz-converter_1.0.1.orig/debian/0000755000175000017500000000000013206501114015027 5ustar davedavetz-converter_1.0.1.orig/debian/tz-converter.manpages0000644000175000017500000000002713201762633021217 0ustar davedavedoc/man/tz-converter.1 tz-converter_1.0.1.orig/debian/upstream/0000755000175000017500000000000013201762633016701 5ustar davedavetz-converter_1.0.1.orig/debian/upstream/signing-key.asc0000644000175000017500000000327713201762633021626 0ustar davedave-----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1 mQENBFUhCTABCAC/H8MRAfUcVCpDbCqdjXEzyrloovw7Gef7t3dtKFnu1vyXQ2xh Hbcb7xX9v6+1BpuQGG8Jx5BUqQomvwLRQI/sDDyGYb+plkAv9BlZxnrsjsLrazcp wPAxYMR6j3Hhbfmvn9l/rpTYeFvnn4nk+o6Acoo0LP24ZQ/Ft5h39didL+LZGwR+ wMtLS/jcaEE/Hj6ACEKI/q+lhN/Uub5fD81qi7gWDZqozeSQHfDIc23C68TPT+9W 0K8O12c790IyzIXhdRLObtxtdPhhH3T3L8nhuZPHFX7a2GXoWnjHzT7ifbQF7KS6 shZH+UXfoCF6W/39Yo5deMRXvtt0c+o5R23PABEBAAG0KERhdmlkIE1haW9yaW5v IDxtYWlvcmlub2RhdmlkQGdtYWlsLmNvbT6JAT4EEwEKACgFAlUhCTACGwMFCQPJ Q0AGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJEIRIMYqe5kWVHt8H/iolOKqB MnGdCZtDL26Q2THbs2XOrfHMEVtJblR2YOjYoUY4lbJq7M1fBX1Gx9lbrgh0P5f5 gKEVZYr9ZKbn2u9PXncUypltDOQePTVbiOhpnWD7uFZrYhLD/kjJYXi490DlQmPz NzOlrNPmFkxNdJokOAmw4kimlD1s4cILfV/JGhVCPFmeMUJefGw84oEpWihKgaes RXE2JJruU+7W9ZMH4cL85iWDzQVp97D/noXscY8C4XzPuZ4ym8XBHYkab0eXTer3 /bnD0tskQ4Ags3CvdK0dYgTqaxIZXMP8VOUTNtaLwP1ePKlhWPll1Vt9lSmS8q58 vlgmjvP7UJGQP2m5AQ0EVSEJMAEIALrY6g5k7DUGskxL4lfagEsOMDY10Sb46j0p 3ZxeRvhwuRpWzTlgTdD/4/B+6e9Iahn4fKKgoNgYuwMTe4xTIMMYZEi3oAXHwkps KWy5+OkOe6WY+qZpyexzDqE2sD2ScodcocwsxbaqH1tOA9yfjBsjJQwV6/JqCV6H qKCKQGkvi948Fo9MRqrjjXkSYDL8Y+EX/gN0Vk3KhevjZSmy5rwAfsfFzud5bi1t x7NDrLNvIgI3kkqFrpGDBwwSYl3rj7x/L9qIo3QOzvRD5M7V+cT2v3KI3NK4vtt7 rJhexT+ds0JgEi6FB4o6aDzpbIYLrV+3/Xac9bHAU5eInDZgSa0AEQEAAYkBJQQY AQoADwUCVSEJMAIbDAUJA8lDQAAKCRCESDGKnuZFlb3sB/9T/roMjcB1alAw71qa +u0BfufArHm1MfBcnn3auRqxVO/UwZP4RuIFGVVEJ1zAP40iZ2yiI5koCIWFVmq6 yoaOQBsnDgJe7coNzrP+7QnohADx1876f16MH+GAklbQz+sJq7A+ttZUcFR79Xz1 kdVZUFTektO5CxqnpNgeigeyrTQhsou5bmOHGgtki05wiRlSTiJ7mc+dZ7rdJIZa VE23Fwt3M8es0GnV5AqHEYPu3OYhpLBLxO3XvurJRlj1aWDGm+Sovkvw2xs85Ai7 PJUHYEaImR8a1VqWh9vbup6kSn7mjWHZpspKmmNwsxBXuwWticzNf8W9s6RpeRbF 9xEF =A/6z -----END PGP PUBLIC KEY BLOCK----- tz-converter_1.0.1.orig/debian/watch0000644000175000017500000000021313201762633016066 0ustar davedaveversion=3 options=pgpsigurlmangle=s/$/.sig/ \ https://github.com/DMaiorino/tz-converter/tags .*/archive/([0-9])\.([0-9])\.([0-9])\.tar\.gz tz-converter_1.0.1.orig/debian/install0000644000175000017500000000004413201762633016430 0ustar davedavetz_converter/data/icons/ usr/share/ tz-converter_1.0.1.orig/debian/compat0000644000175000017500000000000313206477233016244 0ustar davedave10 tz-converter_1.0.1.orig/debian/source/0000755000175000017500000000000013206476304016343 5ustar davedavetz-converter_1.0.1.orig/debian/source/format0000644000175000017500000000001413201762633017547 0ustar davedave3.0 (quilt) tz-converter_1.0.1.orig/debian/source/options0000644000175000017500000000004013201762633017751 0ustar davedaveextend-diff-ignore="\.egg-info$"tz-converter_1.0.1.orig/debian/control0000644000175000017500000000153213206477263016454 0ustar davedaveSource: tz-converter Maintainer: David Maiorino Section: utils Priority: optional Build-Depends: debhelper (>=10), dh-python, python3-all, python3-setuptools Standards-Version: 4.1.1 X-Python3-Version: >= 3.5 Homepage: https://github.com/DMaiorino/tz-converter Package: tz-converter Architecture: all Depends: python3-dateutil, python3-pyqt5, python3-tz, ${misc:Depends}, ${python3:Depends} Description: Convert the time and date across time zones This tool provides a simple interface for converting the time and date between two time zones. Written in Python3 and using QtPy5, this interface allows the user to save a certain time zone and restore it after further changes. The timezone information is taken from pytz, supplying seven different regions: Africa, America, Asia, Australia, Europe, Pacific, and US. tz-converter_1.0.1.orig/debian/py3dist-overrides0000644000175000017500000000006013206476440020362 0ustar davedavepython3_qtpy python3-qtpy python3_tz python3-tz tz-converter_1.0.1.orig/debian/changelog0000644000175000017500000000046513201762633016720 0ustar davedavetz-converter (1.0.1-1) unstable; urgency=low * Migrate to PyQt5 -- David Maiorino Sun, 3 Sep 2017 23:16:33 +0900 tz-converter (1.0.0-1) unstable; urgency=low * Initial release (closes: #754287) -- David Maiorino Sun, 12 Apr 2015 21:32:45 +0900 tz-converter_1.0.1.orig/debian/copyright0000644000175000017500000000405413206476377017013 0ustar davedaveFormat: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: tz-converter Upstream-Contact: David Maiorino Source: https://github.com/DMaiorino/tz-converter Files: * Copyright: 2017 David Maiorino License: GPL-3+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the full text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/GPL-3'. Files: tz_converter/data/icons/Saki-NuoveXT-Apps-world-clock.ico Copyright: Alexandre Moore License: GPL-2+ Files: tz_converter/data/icons/gnome-set-time.png Copyright: 1999, 2000 Red Hat Inc. 2001 Sid Vicious 1999 Free Software Foundation 2002, Sun Microsystems, Inc. 2003, Kristian Rietveld License: GPL-2+ License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. tz-converter_1.0.1.orig/debian/rules0000755000175000017500000000033213206501051016105 0ustar davedave#!/usr/bin/make -f %: dh $@ --with python3 --buildsystem=pybuild override_dh_installman: mkdir -p doc/man cp -auxf tz_converter/data/manpages/tz-converter.1 doc/man dh_installman --language=C override_dh_icons: tz-converter_1.0.1.orig/.gitignore0000644000175000017500000000106113201762633015605 0ustar davedave# Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] # C extensions *.so # Distribution / packaging .Python env/ build/ develop-eggs/ dist/ eggs/ lib/ lib64/ parts/ sdist/ var/ *.egg-info/ .installed.cfg *.egg .pc/ share/ # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .coverage .cache nosetests.xml coverage.xml # Translations *.mo # Mr Developer .mr.developer.cfg .project .pydevproject # Rope .ropeproject # Django stuff: *.log *.pot # Documentation doc # Debian pybuild .pybuild