From 90e2008b1efe507270b3d721229ef6094040a415 Mon Sep 17 00:00:00 2001 From: Trevor Batley Date: Sat, 7 Sep 2024 20:22:36 +1000 Subject: [PATCH] initial commit of file from CVS for smeserver-egroupware on Sat Sep 7 20:22:36 AEST 2024 --- .gitignore | 4 + Makefile | 21 + README.md | 21 +- contriborbase | 1 + createlinks | 8 + .../db/accounts/defaults/egroupware/type | 1 + .../configuration/defaults/egroupware/DbName | 1 + .../configuration/defaults/egroupware/DbUser | 1 + .../configuration/defaults/egroupware/HTTPS | 1 + .../db/configuration/defaults/egroupware/Name | 1 + .../defaults/egroupware/PublicAccess | 1 + .../db/configuration/defaults/egroupware/type | 1 + .../db/configuration/migrate/85egroupware | 35 + root/etc/e-smith/events/.gitignore | 0 .../etc/e-smith/sql/init/80egw_mysql.sql | 1 + .../etc/e-smith/sql/init/81egw_default | 1 + .../etc/e-smith/sql/init/81egw_domain.sql | 1 + .../etc/e-smith/sql/init/80egw_mysql.sql | 34 + .../etc/e-smith/sql/init/81egw_default | 3 + .../etc/e-smith/sql/init/81egw_domain.sql | 17 + .../etc/httpd/conf/httpd.conf/98egroupware | 107 + .../VirtualHosts/60redir-egroupware | 12 + root/usr/share/doc/eGroupWare-1.8.005/LICENSE | 342 + .../eGW-Full-Uninstall.sh | 28 + .../Sources/Gallery2/config.php | 194 + .../Sources/egroupware-1.8.005.sql | 38472 ++++++++++++++++ .../eGroupWare-1.8.005/Sources/header.inc.php | 126 + .../Sources/phpSysInfo/Redhat.png | Bin 0 -> 2889 bytes .../Sources/phpSysInfo/config.php | 91 + root/usr/share/egroupware_sess/.gitignore | 0 root/usr/share/egroupware_tmp/.gitignore | 0 smeserver-egroupware.spec | 385 + 32 files changed, 39909 insertions(+), 2 deletions(-) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 contriborbase create mode 100644 createlinks create mode 100644 root/etc/e-smith/db/accounts/defaults/egroupware/type create mode 100644 root/etc/e-smith/db/configuration/defaults/egroupware/DbName create mode 100644 root/etc/e-smith/db/configuration/defaults/egroupware/DbUser create mode 100644 root/etc/e-smith/db/configuration/defaults/egroupware/HTTPS create mode 100644 root/etc/e-smith/db/configuration/defaults/egroupware/Name create mode 100644 root/etc/e-smith/db/configuration/defaults/egroupware/PublicAccess create mode 100644 root/etc/e-smith/db/configuration/defaults/egroupware/type create mode 100644 root/etc/e-smith/db/configuration/migrate/85egroupware create mode 100644 root/etc/e-smith/events/.gitignore create mode 100644 root/etc/e-smith/templates.metadata/etc/e-smith/sql/init/80egw_mysql.sql create mode 100644 root/etc/e-smith/templates.metadata/etc/e-smith/sql/init/81egw_default create mode 100644 root/etc/e-smith/templates.metadata/etc/e-smith/sql/init/81egw_domain.sql create mode 100644 root/etc/e-smith/templates/etc/e-smith/sql/init/80egw_mysql.sql create mode 100644 root/etc/e-smith/templates/etc/e-smith/sql/init/81egw_default create mode 100644 root/etc/e-smith/templates/etc/e-smith/sql/init/81egw_domain.sql create mode 100644 root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/98egroupware create mode 100644 root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/VirtualHosts/60redir-egroupware create mode 100644 root/usr/share/doc/eGroupWare-1.8.005/LICENSE create mode 100644 root/usr/share/doc/eGroupWare-1.8.005/Sources/DO_NOT_USE_OR_DELETE/eGW-Full-Uninstall.sh create mode 100644 root/usr/share/doc/eGroupWare-1.8.005/Sources/Gallery2/config.php create mode 100644 root/usr/share/doc/eGroupWare-1.8.005/Sources/egroupware-1.8.005.sql create mode 100644 root/usr/share/doc/eGroupWare-1.8.005/Sources/header.inc.php create mode 100644 root/usr/share/doc/eGroupWare-1.8.005/Sources/phpSysInfo/Redhat.png create mode 100644 root/usr/share/doc/eGroupWare-1.8.005/Sources/phpSysInfo/config.php create mode 100644 root/usr/share/egroupware_sess/.gitignore create mode 100644 root/usr/share/egroupware_tmp/.gitignore create mode 100644 smeserver-egroupware.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3aa8108 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.rpm +*.log +*spec-20* +*.tgz diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0905866 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: smeserver-egroupware +# $Id: Makefile,v 1.1 2021/01/18 10:41:45 brianr Exp $ +NAME := smeserver-egroupware +SPECFILE = $(firstword $(wildcard *.spec)) + +define find-makefile-common +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attept a checkout +define checkout-makefile-common +test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 +endef + +MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) +endif + +include $(MAKEFILE_COMMON) diff --git a/README.md b/README.md index 1b5bc01..042a37a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,20 @@ -# smeserver-egroupware +# smeserver-egroupware -SMEServer Koozali developed git repo for smeserver-egroupware smecontribs \ No newline at end of file +SMEServer Koozali developed git repo for smeserver-egroupware smecontribs + +## Wiki +
https://wiki.koozali.org/Egroupware/fr +
https://wiki.koozali.org/Egroupware +
https://wiki.koozali.org/Egroupware/de +
https://wiki.koozali.org/Server_eGroupWare +
https://wiki.koozali.org/Egroupware-repository +
https://wiki.koozali.org/Egroupware_repository + +## Bugzilla +Show list of outstanding bugs: [here](https://bugs.koozali.org/buglist.cgi?component=smeserver-egroupware&product=SME%20Contribs&query_format=advanced&limit=0&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=CONFIRMED) + +## Description + +
*This description has been generated by an LLM AI system and cannot be relied on to be fully correct.* +*Once it has been checked, then this comment will be deleted* +
diff --git a/contriborbase b/contriborbase new file mode 100644 index 0000000..9b7fd51 --- /dev/null +++ b/contriborbase @@ -0,0 +1 @@ +contribs10 diff --git a/createlinks b/createlinks new file mode 100644 index 0000000..1158c7b --- /dev/null +++ b/createlinks @@ -0,0 +1,8 @@ +#!/usr/bin/perl -w + +use esmith::Build::CreateLinks qw(:all); + + +templates2events("/etc/e-smith/sql/init/80egw_mysql.sql", qw(bootstrap-console-save post-install post-upgrade )); +templates2events("/etc/e-smith/sql/init/81egw_domain.sql", qw(bootstrap-console-save post-install post-upgrade )); +templates2events("/etc/e-smith/sql/init/81egw_default", qw(bootstrap-console-save post-install post-upgrade )); diff --git a/root/etc/e-smith/db/accounts/defaults/egroupware/type b/root/etc/e-smith/db/accounts/defaults/egroupware/type new file mode 100644 index 0000000..123f60c --- /dev/null +++ b/root/etc/e-smith/db/accounts/defaults/egroupware/type @@ -0,0 +1 @@ +reserved diff --git a/root/etc/e-smith/db/configuration/defaults/egroupware/DbName b/root/etc/e-smith/db/configuration/defaults/egroupware/DbName new file mode 100644 index 0000000..2882192 --- /dev/null +++ b/root/etc/e-smith/db/configuration/defaults/egroupware/DbName @@ -0,0 +1 @@ +egroupware diff --git a/root/etc/e-smith/db/configuration/defaults/egroupware/DbUser b/root/etc/e-smith/db/configuration/defaults/egroupware/DbUser new file mode 100644 index 0000000..65a500b --- /dev/null +++ b/root/etc/e-smith/db/configuration/defaults/egroupware/DbUser @@ -0,0 +1 @@ +egwuser diff --git a/root/etc/e-smith/db/configuration/defaults/egroupware/HTTPS b/root/etc/e-smith/db/configuration/defaults/egroupware/HTTPS new file mode 100644 index 0000000..b3d8640 --- /dev/null +++ b/root/etc/e-smith/db/configuration/defaults/egroupware/HTTPS @@ -0,0 +1 @@ +on diff --git a/root/etc/e-smith/db/configuration/defaults/egroupware/Name b/root/etc/e-smith/db/configuration/defaults/egroupware/Name new file mode 100644 index 0000000..801ed07 --- /dev/null +++ b/root/etc/e-smith/db/configuration/defaults/egroupware/Name @@ -0,0 +1 @@ +eGroupWare diff --git a/root/etc/e-smith/db/configuration/defaults/egroupware/PublicAccess b/root/etc/e-smith/db/configuration/defaults/egroupware/PublicAccess new file mode 100644 index 0000000..b47d0eb --- /dev/null +++ b/root/etc/e-smith/db/configuration/defaults/egroupware/PublicAccess @@ -0,0 +1 @@ +global diff --git a/root/etc/e-smith/db/configuration/defaults/egroupware/type b/root/etc/e-smith/db/configuration/defaults/egroupware/type new file mode 100644 index 0000000..96cdd3b --- /dev/null +++ b/root/etc/e-smith/db/configuration/defaults/egroupware/type @@ -0,0 +1 @@ +url diff --git a/root/etc/e-smith/db/configuration/migrate/85egroupware b/root/etc/e-smith/db/configuration/migrate/85egroupware new file mode 100644 index 0000000..5ae21ee --- /dev/null +++ b/root/etc/e-smith/db/configuration/migrate/85egroupware @@ -0,0 +1,35 @@ +{ + my $rec = $DB->get('egroupware') + || $DB->new_record('egroupware', {type => 'service'}); + + my $pw = $rec->prop('DbPassword'); + + return "" if $pw; + if (not $pw or length($pw) < 25) + { + use MIME::Base64 qw(encode_base64); + + $pw = "not set due to error"; + + if ( open( RANDOM, "/dev/urandom" ) ) + { + my $buf; + if ( read( RANDOM, $buf, 25 ) != 25 ) + { + warn("Short read from /dev/random: $!"); + } + else + { + $pw = encode_base64($buf); + chomp $pw; + } + close RANDOM; + } + else + { + warn "Could not open /dev/urandom: $!"; + } + + $rec->set_prop('DbPassword', $pw); + } +} diff --git a/root/etc/e-smith/events/.gitignore b/root/etc/e-smith/events/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/root/etc/e-smith/templates.metadata/etc/e-smith/sql/init/80egw_mysql.sql b/root/etc/e-smith/templates.metadata/etc/e-smith/sql/init/80egw_mysql.sql new file mode 100644 index 0000000..6a29f37 --- /dev/null +++ b/root/etc/e-smith/templates.metadata/etc/e-smith/sql/init/80egw_mysql.sql @@ -0,0 +1 @@ +PERMS=0540 diff --git a/root/etc/e-smith/templates.metadata/etc/e-smith/sql/init/81egw_default b/root/etc/e-smith/templates.metadata/etc/e-smith/sql/init/81egw_default new file mode 100644 index 0000000..6a29f37 --- /dev/null +++ b/root/etc/e-smith/templates.metadata/etc/e-smith/sql/init/81egw_default @@ -0,0 +1 @@ +PERMS=0540 diff --git a/root/etc/e-smith/templates.metadata/etc/e-smith/sql/init/81egw_domain.sql b/root/etc/e-smith/templates.metadata/etc/e-smith/sql/init/81egw_domain.sql new file mode 100644 index 0000000..6a29f37 --- /dev/null +++ b/root/etc/e-smith/templates.metadata/etc/e-smith/sql/init/81egw_domain.sql @@ -0,0 +1 @@ +PERMS=0540 diff --git a/root/etc/e-smith/templates/etc/e-smith/sql/init/80egw_mysql.sql b/root/etc/e-smith/templates/etc/e-smith/sql/init/80egw_mysql.sql new file mode 100644 index 0000000..974226e --- /dev/null +++ b/root/etc/e-smith/templates/etc/e-smith/sql/init/80egw_mysql.sql @@ -0,0 +1,34 @@ +# eGroupWare MySQL init template +# +# This files creates/updates eGroupWare's MySQL database + + +USE mysql; + +CREATE DATABASE IF NOT EXISTS { $egroupware{DbName} }; + +REPLACE INTO user ( + host, + user, + password) + VALUES ( + 'localhost', + '{ $egroupware{DbUser} }', + PASSWORD ('{ $egroupware{DbPassword} }')); + +REPLACE INTO db ( + host, + db, + user, + select_priv, insert_priv, update_priv, delete_priv, + create_priv, alter_priv, index_priv, drop_priv, create_tmp_table_priv, + grant_priv, lock_tables_priv, references_priv) + VALUES ( + 'localhost', + '{ $egroupware{DbName} }', + '{ $egroupware{DbUser} }', + 'Y', 'Y', 'Y', 'Y', + 'Y', 'Y', 'Y', 'Y', 'Y', + 'N', 'Y', 'Y'); + +FLUSH PRIVILEGES; diff --git a/root/etc/e-smith/templates/etc/e-smith/sql/init/81egw_default b/root/etc/e-smith/templates/etc/e-smith/sql/init/81egw_default new file mode 100644 index 0000000..3e283d8 --- /dev/null +++ b/root/etc/e-smith/templates/etc/e-smith/sql/init/81egw_default @@ -0,0 +1,3 @@ +#!/bin/sh + +/usr/bin/mysql { $egroupware{DbName} } +{ + my $egwsec = $egroupware{'HTTPS'} || "off"; + if ($egwsec eq "off") + { + $OUT .= " # SSLRequireSSL on"; + } else { + $OUT .= " SSLRequireSSL on"; + } +} + AddType application/x-httpd-php .php .php3 .phtml + AddType text/xml .xml + Options FollowSymLinks ExecCGI + AllowOverride None +{ + my $egw = $egroupware{'PublicAccess'} || "local"; + if ($egw eq "local") + { + $OUT .= " Require ip $localAccess"; + } else { + $OUT .= " Require all granted"; + } +} + DirectoryIndex index.html index.php + AddHandler cgi-script .cgi + AddDefaultCharset Off + php_flag file_uploads on + php_flag log_errors on + php_flag magic_quotes_gpc off + php_flag magic_quotes_runtime off + php_flag register_globals off + php_flag short_open_tag on + php_flag track_vars on + php_flag display_errors off + # E_ALL & ~E_NOTICE & ~E_STRICT = 8191 - 8 - 2048 = 6135 + # php_value error_reporting 6135 + php_value error_reporting 'E_ALL & ~E_NOTICE' + php_value max_execution_time 90 + php_value mbstring.func_overload 7 + php_value memory_limit 128M + php_value session.gc_maxlifetime 14400 + php_value session.save_path /usr/share/egroupware_sess + php_value include_path .:/usr/share/pear + php_value open_basedir /usr/share/egroupware:/var/lib/egroupware:/usr/share/pear:/usr/bin/zip:/usr/share/jpgraph:/usr/bin/tnef:/usr/bin/aspell:/usr/share/fonts:/usr/share/egroupware_sess:/usr/share/egroupware_tmp + php_admin_value upload_tmp_dir /usr/share/egroupware_tmp + php_value upload_max_filesize 65M + php_value max_input_vars 3000 + + Require all denied + + + + + php_value open_basedir / + + + + php_admin_value upload_tmp_dir /usr/share/egroupware_tmp + php_admin_value open_basedir /usr/share/egroupware:/var/lib/egroupware:/tmp:/usr/share/pear:/usr/bin:/bin:/usr/share/egroupware_tmp + + + + + Script PUT /opt/egroupware/html/icalsrv.php + AddHandler ical/ics .ics + Action ical/ics /opt/egroupware/html/icalsrv.php +{ + my $egw = $egroupware{'PublicAccess'} || "local"; + if ($egw eq "local") + { + $OUT .= " Require ip $localAccess"; + } else { + $OUT .= " Require all granted"; + } +} + + + + php_value mbstring.func_overload 0 +{ + my $egw = $egroupware{'PublicAccess'} || "local"; + if ($egw eq "local") + { + $OUT .= " Require ip $localAccess"; + } else { + $OUT .= " Require all granted"; + } +} + + + + php_admin_value mbstring.func_overload 7 + php_value display_errors Off + + +#-------------------------------------------------------------- diff --git a/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/VirtualHosts/60redir-egroupware b/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/VirtualHosts/60redir-egroupware new file mode 100644 index 0000000..aa2a000 --- /dev/null +++ b/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/VirtualHosts/60redir-egroupware @@ -0,0 +1,12 @@ +{ + if ($port eq "80") + { + my $egwsec = $egroupware{'HTTPS'} || "off"; + if ($egwsec eq "off") + { $OUT = ' #'; } + else + { $OUT = ' RewriteRule ^/egroupware(/.*|$) https://%{HTTP_HOST}/egroupware$1 [L,R]'; } + } + else + { $OUT = ' #'; } +} diff --git a/root/usr/share/doc/eGroupWare-1.8.005/LICENSE b/root/usr/share/doc/eGroupWare-1.8.005/LICENSE new file mode 100644 index 0000000..8a53d82 --- /dev/null +++ b/root/usr/share/doc/eGroupWare-1.8.005/LICENSE @@ -0,0 +1,342 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 19yy + + 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision 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, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This 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 Library General +Public License instead of this License. + + diff --git a/root/usr/share/doc/eGroupWare-1.8.005/Sources/DO_NOT_USE_OR_DELETE/eGW-Full-Uninstall.sh b/root/usr/share/doc/eGroupWare-1.8.005/Sources/DO_NOT_USE_OR_DELETE/eGW-Full-Uninstall.sh new file mode 100644 index 0000000..85eccaa --- /dev/null +++ b/root/usr/share/doc/eGroupWare-1.8.005/Sources/DO_NOT_USE_OR_DELETE/eGW-Full-Uninstall.sh @@ -0,0 +1,28 @@ +#!/bin/sh +# Use this file to finish eGroupware removal ONLY if you don't want to keep it on your system. + +clear +echo "WARNING!!!" +echo "This script will delete:" +echo " - eGroupware MySQL database" +echo " - eGroupware MySQL User" +echo " - eGroupware DB entries..." +echo " - All Install files" +echo -n "ARE YOU SURE YOU WANT TO DELETE PERMANENTLY EGROUPWARE? (y/n) [n] " +read del +if [ "$del" = "y" -o "$del" = "Y" ]; then + echo "Deleting MySQL database..." + mysql -u root -e "DROP DATABASE egroupware" + echo "Deleting MySQL User..." + mysql -u root -e "REVOKE ALL PRIVILEGES ON egroupware.* FROM 'egwuser'@'localhost';" + mysql -u root -e "DROP USER egwuser@localhost;" + echo "Removing SME DB entries..." + /sbin/e-smith/config delete egroupware + echo "Removing Install files..." + rm -rf /usr/share/egroupware + rm -rf /usr/share/egroupware_sess + rm -rf /usr/share/egroupware_tmp + rm -rf /var/lib/egroupware + echo "Done!" + rm -f /root/eGW-Full-Uninstall.sh +fi diff --git a/root/usr/share/doc/eGroupWare-1.8.005/Sources/Gallery2/config.php b/root/usr/share/doc/eGroupWare-1.8.005/Sources/Gallery2/config.php new file mode 100644 index 0000000..f733e0a --- /dev/null +++ b/root/usr/share/doc/eGroupWare-1.8.005/Sources/Gallery2/config.php @@ -0,0 +1,194 @@ +setConfig('setup.password', 'A PASSWORD'); + * + * Choose something random and enter it in plain text. You don't have to + * remember it because you can always refer to this file. You'll only be asked + * for this password when you run Gallery's lib/tools code. We don't provide a + * default password because we want you to choose one of your own (which + * lessens the chance that you'll get hacked). + */ +$gallery->setConfig('setup.password', ''); + +/* + * In order for Gallery to manage your data, you must provide it with + * a directory that it can write to. Gallery is a webserver application, + * so the directory that you create must be writeable by the + * webserver, not just by you. + * + * Create an empty directory anywhere you please. Gallery will fill this + * directory with its own files (that you shouldn't mess with). This directory + * can be anywhere on your filesystem. For security purposes, it's better + * if the directory is not accessible via your webserver (ie, it should + * not be in your DocumentRoot). If you *do* make it available via your + * web server then you probably won't have any security for your data files. + * + * Don't make this the same as your gallery directory! + */ +$gallery->setConfig('data.gallery.base', '/var/lib/egroupware/default/files/g2data/'); + +/* + * Gallery can store its data in multiple different back ends. Currently we + * support MySQL, PostgreSQL and Oracle. Enter the hostname where your + * database lives, and the username and password you use to connect to it. + * + * You must specify the name of a database that already exists. Gallery will + * not create the database for you, because it's very difficult to do that in + * a reliable, database-neutral fashion. The user that you use should have + * the following permissions: + * + * SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER + * + * You must specify a table and column prefix. This is a few characters that + * is prepended to any table or column name to avoid conflicting with reserved + * words in the database or other tables you have in the same database. In + * fact, it's fine to let Gallery uses the same database as other applications + * (including other instances of Gallery itself); the prefix is enough + * to distinguish Gallery's tables from other applications. + * + * We provide some reasonable default prefixes below. If you modify these + * after Gallery has created its various tables, it will stop working until + * you modify it back. + * + * The possible database types are: + * mysqlt MySQL (3.23.34a and newer) + * mysqli MySQL (4.1 and newer) with PHP mysqli extension + * mysql Older MySQL (no transactions) + * postgres7 PostgreSQL 7.x and newer + * postgres PostgreSQL 6.x (not tested) + * oci8po Oracle 9i and newer + * db2 IBM DB2 9 and newer + * ado_mssql Microsoft SQL Server (2005 and newer) + */ +$storeConfig['type'] = 'mysqlt'; +$storeConfig['hostname'] = 'localhost'; +$storeConfig['database'] = 'egroupware'; +$storeConfig['username'] = 'egwuser'; +$storeConfig['password'] = 'egwpass'; +$storeConfig['tablePrefix'] = 'g2_'; +$storeConfig['columnPrefix'] = 'g_'; +$storeConfig['usePersistentConnections'] = false; +$gallery->setConfig('storage.config', $storeConfig); + +/* + * Put Gallery into debug mode. Useful for tracking down problems with the + * application. Not a good idea to leave it this way, though. Possible debug + * choices are: 'buffered', 'logged', 'immediate' or false. Don't forget to + * use the quotes for any value but false! + * + * If you choose 'immediate', you'll see debugging information as soon as + * Gallery generates it. This can be useful at times, but it'll screw up some + * parts of the application flow. + * + * If you choose 'buffered', Gallery will display debug information in a table + * as part of the application. You won't necessarily get *all* the debug + * information but the application should work normally. + * + * If you choose 'logged', you must also specify: + * $gallery->setDebugLogFile('/path/to/writeable/file'); + * and all debug output will get printed into that file. You'll get all the + * debug output and the application will work normally. + * + * For best debugging output use this line: + * + * $gallery->setDebug('buffered'); + * + */ +$gallery->setDebug(false); + +/* + * Profiling mode. You can enable profiling for different parts of G2 to get an + * idea of what's fast and slow. Right now the only options are to enable SQL + * profiling: + * + * $gallery->setProfile(array('sql')); + * + */ +$gallery->setProfile(false); + +/* + * Maintenance mode. You can disable access to the site for anyone but + * site administrators by setting this flag. Set value below to: + * true (without quotes) - to use a basic notification page; themed + * view with admin login link when codebase is up to date, but a + * plain unstyled page when codebase has been updated but upgrader + * has not yet been run. + * url (with quotes) - provide a url where requests are redirected in + * either case described above. Example: '/maintenance.html' + * false (without quotes) - maintenance mode off + */ +$gallery->setConfig('mode.maintenance', false); + +/* + * Embedded mode. You can disable direct access to main.php (standalone G2) + * by setting this flag. Set value below to: + * true (without quotes) - block direct requests + * url (with quotes) - redirect requests to this url + * false (without quotes) - allow direct requests + */ +$gallery->setConfig('mode.embed.only', false); + +/* + * Allow a particular IP address to access the session (it still must know the + * session id) even though it doesn't match the address/user agent that created + * the session. Put the address of validator.w3.org ('133.27.228.132') here to allow + * validation of non-public Gallery pages from the links at the bottom of the page. + */ +$gallery->setConfig('allowSessionAccess', false); + +/* + * URL of Gallery codebase; required only for multisite install. + */ +$gallery->setConfig('galleryBaseUrl', ''); + +/* + * This setting can be used to override Gallery's auto-detection of the domain-name, + * protocol (http/https), URL path, and of the file & query string. + * Most users can leave this empty. If the server is misconfigured or for very special + * setups, this setting can be quite handy. + * Examples (the positions of the slashes ('/') are important): + * override the path: $gallery->setConfig('baseUri', '/another/path/'); + * override the host + path: $gallery->setConfig('baseUri', 'example.com/gallery2/'); + * override the protocol + host + path + file: + * $gallery->setConfig('baseUri', 'https://example.com:8080/gallery2/index.php'); + */ +$gallery->setConfig('baseUri', ''); +?> diff --git a/root/usr/share/doc/eGroupWare-1.8.005/Sources/egroupware-1.8.005.sql b/root/usr/share/doc/eGroupWare-1.8.005/Sources/egroupware-1.8.005.sql new file mode 100644 index 0000000..1871015 --- /dev/null +++ b/root/usr/share/doc/eGroupWare-1.8.005/Sources/egroupware-1.8.005.sql @@ -0,0 +1,38472 @@ +SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; +SET time_zone = "+00:00"; + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; + + +CREATE TABLE IF NOT EXISTS `egw_access_log` ( + `sessionid` int(11) NOT NULL auto_increment, + `loginid` varchar(64) NOT NULL, + `ip` varchar(40) NOT NULL, + `li` bigint(20) NOT NULL, + `lo` bigint(20) default NULL, + `account_id` int(11) NOT NULL default '0', + `session_dla` bigint(20) default NULL, + `session_action` varchar(64) default NULL, + `session_php` varchar(64) NOT NULL, + `notification_heartbeat` bigint(20) default NULL, + PRIMARY KEY (`sessionid`), + KEY `egw_access_log_li` (`li`), + KEY `egw_access_log_lo` (`lo`), + KEY `egw_access_log_session_dla` (`session_dla`), + KEY `egw_access_log_notification_heartbeat` (`notification_heartbeat`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_accounts` ( + `account_id` int(11) NOT NULL auto_increment, + `account_lid` varchar(64) NOT NULL default '', + `account_pwd` varchar(128) NOT NULL, + `account_lastlogin` int(11) default NULL, + `account_lastloginfrom` varchar(255) default NULL, + `account_lastpwd_change` int(11) default NULL, + `account_status` char(1) NOT NULL default 'A', + `account_expires` int(11) default NULL, + `account_type` char(1) default NULL, + `account_primary_group` int(11) NOT NULL default '0', + `account_challenge` varchar(100) default NULL, + `account_response` varchar(100) default NULL, + PRIMARY KEY (`account_id`), + UNIQUE KEY `egw_accounts_account_lid` (`account_lid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; + +INSERT INTO `egw_accounts` (`account_id`, `account_lid`, `account_pwd`, `account_lastlogin`, `account_lastloginfrom`, `account_lastpwd_change`, `account_status`, `account_expires`, `account_type`, `account_primary_group`, `account_challenge`, `account_response`) VALUES +(1, 'Default', '', NULL, NULL, NULL, 'A', -1, 'g', 0, NULL, NULL); + +CREATE TABLE IF NOT EXISTS `egw_acl` ( + `acl_appname` varchar(50) NOT NULL default '', + `acl_location` varchar(255) NOT NULL default '', + `acl_account` int(11) NOT NULL default '0', + `acl_rights` int(11) default NULL, + PRIMARY KEY (`acl_appname`,`acl_location`,`acl_account`), + KEY `egw_acl_account` (`acl_account`), + KEY `egw_acl_location_account` (`acl_location`,`acl_account`), + KEY `egw_acl_appname_account` (`acl_appname`,`acl_account`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +INSERT INTO `egw_acl` (`acl_appname`, `acl_location`, `acl_account`, `acl_rights`) VALUES +('addressbook', '-1', -1, 15), +('resources', 'run', -1, 1), +('resources', 'L', -1, 399), +('resources', 'L1', -1, 399); + +CREATE TABLE IF NOT EXISTS `egw_addressbook` ( + `contact_id` int(11) NOT NULL auto_increment, + `contact_tid` char(1) default 'n', + `contact_owner` bigint(20) NOT NULL default '0', + `contact_private` tinyint(4) default '0', + `cat_id` varchar(255) default NULL, + `n_family` varchar(64) default NULL, + `n_given` varchar(64) default NULL, + `n_middle` varchar(64) default NULL, + `n_prefix` varchar(64) default NULL, + `n_suffix` varchar(64) default NULL, + `n_fn` varchar(128) default NULL, + `n_fileas` varchar(255) default NULL, + `contact_bday` varchar(12) default NULL, + `org_name` varchar(128) default NULL, + `org_unit` varchar(64) default NULL, + `contact_title` varchar(64) default NULL, + `contact_role` varchar(64) default NULL, + `contact_assistent` varchar(64) default NULL, + `contact_room` varchar(64) default NULL, + `adr_one_street` varchar(64) default NULL, + `adr_one_street2` varchar(64) default NULL, + `adr_one_locality` varchar(64) default NULL, + `adr_one_region` varchar(64) default NULL, + `adr_one_postalcode` varchar(64) default NULL, + `adr_one_countryname` varchar(64) default NULL, + `contact_label` text, + `adr_two_street` varchar(64) default NULL, + `adr_two_street2` varchar(64) default NULL, + `adr_two_locality` varchar(64) default NULL, + `adr_two_region` varchar(64) default NULL, + `adr_two_postalcode` varchar(64) default NULL, + `adr_two_countryname` varchar(64) default NULL, + `tel_work` varchar(40) default NULL, + `tel_cell` varchar(40) default NULL, + `tel_fax` varchar(40) default NULL, + `tel_assistent` varchar(40) default NULL, + `tel_car` varchar(40) default NULL, + `tel_pager` varchar(40) default NULL, + `tel_home` varchar(40) default NULL, + `tel_fax_home` varchar(40) default NULL, + `tel_cell_private` varchar(40) default NULL, + `tel_other` varchar(40) default NULL, + `tel_prefer` varchar(32) default NULL, + `contact_email` varchar(128) default NULL, + `contact_email_home` varchar(128) default NULL, + `contact_url` varchar(128) default NULL, + `contact_url_home` varchar(128) default NULL, + `contact_freebusy_uri` varchar(128) default NULL, + `contact_calendar_uri` varchar(128) default NULL, + `contact_note` text, + `contact_tz` varchar(8) default NULL, + `contact_geo` varchar(32) default NULL, + `contact_pubkey` text, + `contact_created` bigint(20) default NULL, + `contact_creator` int(11) NOT NULL default '0', + `contact_modified` bigint(20) NOT NULL default '0', + `contact_modifier` int(11) default NULL, + `contact_jpegphoto` longblob, + `account_id` int(11) default NULL, + `contact_etag` int(11) default '0', + `contact_uid` varchar(255) default NULL, + `adr_one_countrycode` varchar(2) default NULL, + `adr_two_countrycode` varchar(2) default NULL, + `carddav_name` varchar(64) default NULL, + PRIMARY KEY (`contact_id`), + UNIQUE KEY `egw_addressbook_account_id` (`account_id`), + KEY `egw_addressbook_contact_owner` (`contact_owner`), + KEY `egw_addressbook_cat_id` (`cat_id`), + KEY `egw_addressbook_n_fileas` (`n_fileas`), + KEY `egw_addressbook_n_family_n_given` (`n_family`,`n_given`), + KEY `egw_addressbook_n_given_n_family` (`n_given`,`n_family`), + KEY `egw_addressbook_org_name_n_family_n_given` (`org_name`,`n_family`,`n_given`), + KEY `egw_addressbook_contact_uid` (`contact_uid`), + KEY `egw_addressbook_carddav_name` (`carddav_name`), + KEY `egw_addressbook_contact_modified` (`contact_modified`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_addressbook2list` ( + `contact_id` int(11) NOT NULL default '0', + `list_id` int(11) NOT NULL default '0', + `list_added` bigint(20) default NULL, + `list_added_by` int(11) default NULL, + PRIMARY KEY (`contact_id`,`list_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_addressbook_extra` ( + `contact_id` int(11) NOT NULL default '0', + `contact_owner` bigint(20) default NULL, + `contact_name` varchar(255) NOT NULL default '', + `contact_value` text, + PRIMARY KEY (`contact_id`,`contact_name`), + KEY `egw_addressbook_extra_contact_name_contact_value` (`contact_name`,`contact_value`(32)) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_addressbook_lists` ( + `list_id` int(11) NOT NULL auto_increment, + `list_name` varchar(80) NOT NULL default '', + `list_owner` int(11) NOT NULL default '0', + `list_created` bigint(20) default NULL, + `list_creator` int(11) default NULL, + PRIMARY KEY (`list_id`), + UNIQUE KEY `egw_addressbook_lists_list_owner_list_name` (`list_owner`,`list_name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_admin_queue` ( + `cmd_id` int(11) NOT NULL auto_increment, + `cmd_uid` varchar(255) NOT NULL, + `cmd_creator` int(11) NOT NULL, + `cmd_creator_email` varchar(128) NOT NULL, + `cmd_created` bigint(20) NOT NULL, + `cmd_type` varchar(32) NOT NULL default 'admin_cmd', + `cmd_status` tinyint(4) default NULL, + `cmd_scheduled` bigint(20) default NULL, + `cmd_modified` bigint(20) default NULL, + `cmd_modifier` int(11) default NULL, + `cmd_modifier_email` varchar(128) default NULL, + `cmd_error` varchar(255) default NULL, + `cmd_errno` int(11) default NULL, + `cmd_requested` int(11) default NULL, + `cmd_requested_email` varchar(128) default NULL, + `cmd_comment` varchar(255) default NULL, + `cmd_data` longblob, + `remote_id` int(11) default NULL, + PRIMARY KEY (`cmd_id`), + UNIQUE KEY `egw_admin_queue_cmd_uid` (`cmd_uid`), + KEY `egw_admin_queue_cmd_status` (`cmd_status`), + KEY `egw_admin_queue_cmd_scheduled` (`cmd_scheduled`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_admin_remote` ( + `remote_id` int(11) NOT NULL auto_increment, + `remote_name` varchar(64) NOT NULL, + `remote_hash` varchar(32) NOT NULL, + `remote_url` varchar(128) NOT NULL, + `remote_domain` varchar(64) NOT NULL, + PRIMARY KEY (`remote_id`), + UNIQUE KEY `egw_admin_remote_name` (`remote_name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_api_content_history` ( + `sync_appname` varchar(60) NOT NULL default '', + `sync_contentid` varchar(60) NOT NULL default '', + `sync_added` datetime default NULL, + `sync_modified` datetime default NULL, + `sync_deleted` datetime default NULL, + `sync_id` int(11) NOT NULL auto_increment, + `sync_changedby` int(11) NOT NULL default '0', + PRIMARY KEY (`sync_id`), + KEY `egw_api_content_history_sync_added` (`sync_added`), + KEY `egw_api_content_history_sync_modified` (`sync_modified`), + KEY `egw_api_content_history_sync_deleted` (`sync_deleted`), + KEY `egw_api_content_history_sync_changedby` (`sync_changedby`), + KEY `egw_api_content_history_sync_appname_sync_contentid` (`sync_appname`,`sync_contentid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_applications` ( + `app_id` int(11) NOT NULL auto_increment, + `app_name` varchar(25) NOT NULL default '', + `app_enabled` int(11) NOT NULL default '0', + `app_order` int(11) NOT NULL default '0', + `app_tables` text, + `app_version` varchar(20) NOT NULL default '0.0', + `app_icon` varchar(32) default NULL, + `app_icon_app` varchar(25) default NULL, + `app_index` varchar(64) default NULL, + PRIMARY KEY (`app_id`), + UNIQUE KEY `egw_applications_name` (`app_name`), + KEY `egw_applications_enabled_order` (`app_enabled`,`app_order`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=37 ; + +INSERT INTO `egw_applications` (`app_id`, `app_name`, `app_enabled`, `app_order`, `app_tables`, `app_version`, `app_icon`, `app_icon_app`, `app_index`) VALUES +(1, 'phpgwapi', 3, 1, 'egw_config,egw_applications,egw_acl,egw_accounts,egw_preferences,egw_access_log,egw_hooks,egw_languages,egw_lang,egw_nextid,egw_categories,egw_log,egw_log_msg,egw_interserv,egw_history_log,egw_async,egw_api_content_history,egw_links,egw_addressbook,egw_addressbook_extra,egw_addressbook_lists,egw_addressbook2list,egw_sqlfs,egw_index_keywords,egw_index,egw_cat2entry,egw_locks,egw_sqlfs_props', '1.8.005', NULL, NULL, NULL), +(2, 'admin', 1, 1, 'egw_admin_queue,egw_admin_remote', '1.8', NULL, NULL, NULL), +(3, 'preferences', 2, 1, '', '1.8', NULL, NULL, NULL), +(4, 'egw-pear', 0, 99, '', '1.8', NULL, NULL, NULL), +(5, 'home', 1, 1, '', '1.8', NULL, NULL, NULL), +(35, 'groupdav', 2, 1, '', '1.8', 'groupdav', 'phpgwapi', NULL), +(7, 'bookmarks', 1, 12, 'egw_bookmarks', '1.8', NULL, NULL, NULL), +(8, 'developer_tools', 1, 61, '', '1.8', NULL, NULL, 'developer_tools.uilangfile.index'), +(9, 'emailadmin', 2, 10, 'egw_emailadmin,egw_mailaccounts', '1.9.006', NULL, NULL, 'emailadmin.emailadmin_ui.listProfiles'), +(10, 'etemplate', 1, 60, 'egw_etemplate', '1.8', NULL, NULL, 'etemplate.editor.edit'), +(11, 'filemanager', 1, 6, '', '1.8', NULL, NULL, 'filemanager.filemanager_ui.index'), +(36, 'phpfreechat', 4, 4, 'egw_phpfreechat', '1.8', NULL, NULL, NULL), +(14, 'news_admin', 1, 16, 'egw_news,egw_news_export', '1.8.001', NULL, NULL, 'news_admin.uinews.index'), +(15, 'phpbrain', 1, 25, 'egw_kb_articles,egw_kb_comment,egw_kb_questions,egw_kb_ratings,egw_kb_related_art,egw_kb_search,egw_kb_urls', '1.8', NULL, NULL, 'phpbrain.uikb.index'), +(16, 'phpsysinfo', 2, 99, '', '1.2_2.5.2rc1', NULL, NULL, NULL), +(17, 'polls', 1, 17, 'egw_polls,egw_polls_answers,egw_polls_votes', '1.8', NULL, NULL, 'polls.uipolls.index'), +(18, 'registration', 2, 40, 'egw_reg_accounts,egw_reg_fields', '1.8', NULL, NULL, NULL), +(19, 'sambaadmin', 1, 99, '', '1.8', NULL, NULL, 'sambaadmin.uisambaadmin.listWorkstations'), +(20, 'syncml', 2, 99, 'egw_contentmap,egw_syncmldevinfo,egw_syncmlsummary,egw_syncmldeviceowner', '1.8', NULL, NULL, NULL), +(21, 'addressbook', 1, 4, '', '1.8', NULL, NULL, NULL), +(22, 'calendar', 1, 3, 'egw_cal,egw_cal_holidays,egw_cal_repeats,egw_cal_user,egw_cal_extra,egw_cal_dates,egw_cal_timezones', '1.9.004', NULL, NULL, 'calendar.calendar_uiviews.index'), +(23, 'felamimail', 1, 2, 'egw_felamimail_displayfilter,egw_felamimail_accounts,egw_felamimail_signatures', '1.8', NULL, NULL, 'felamimail.uifelamimail.viewMainScreen'), +(24, 'importexport', 2, 2, 'egw_importexport_definitions', '1.8', NULL, NULL, NULL), +(25, 'infolog', 1, 5, 'egw_infolog,egw_infolog_extra', '1.9.003', NULL, NULL, NULL), +(26, 'notifications', 2, 1, 'egw_notificationpopup', '1.8', NULL, NULL, NULL), +(27, 'projectmanager', 1, 5, 'egw_pm_projects,egw_pm_extra,egw_pm_elements,egw_pm_constraints,egw_pm_milestones,egw_pm_roles,egw_pm_members,egw_pm_pricelist,egw_pm_prices', '1.8', NULL, NULL, NULL), +(28, 'resources', 1, 5, 'egw_resources,egw_resources_extra', '1.9.001', NULL, NULL, NULL), +(29, 'sitemgr', 1, 14, 'egw_sitemgr_pages,egw_sitemgr_pages_lang,egw_sitemgr_categories_state,egw_sitemgr_categories_lang,egw_sitemgr_modules,egw_sitemgr_blocks,egw_sitemgr_blocks_lang,egw_sitemgr_content,egw_sitemgr_content_lang,egw_sitemgr_active_modules,egw_sitemgr_properties,egw_sitemgr_sites,egw_sitemgr_notifications,egw_sitemgr_notify_messages', '1.8', NULL, NULL, NULL), +(30, 'timesheet', 1, 5, 'egw_timesheet,egw_timesheet_extra', '1.8', NULL, NULL, NULL), +(31, 'tracker', 1, 5, 'egw_tracker,egw_tracker_replies,egw_tracker_votes,egw_tracker_bounties,egw_tracker_assignee,egw_tracker_escalations,egw_tracker_escalated,egw_tracker_extra', '1.8', NULL, NULL, 'tracker.tracker_ui.index'), +(32, 'wiki', 1, 11, 'egw_wiki_links,egw_wiki_pages,egw_wiki_rate,egw_wiki_interwiki,egw_wiki_sisterwiki,egw_wiki_remote_pages', '1.8', NULL, NULL, NULL), +(33, 'manual', 4, 5, '', '1.8', NULL, NULL, NULL), +(34, 'sitemgr-link', 1, 9, '', '1.8', 'sitemgr-link', 'sitemgr', '/sitemgr/sitemgr-link.php'); + +CREATE TABLE IF NOT EXISTS `egw_async` ( + `async_id` varchar(255) NOT NULL default '', + `async_next` int(11) NOT NULL default '0', + `async_times` varchar(255) NOT NULL default '', + `async_method` varchar(80) NOT NULL default '', + `async_data` text, + `async_account_id` int(11) NOT NULL default '0', + PRIMARY KEY (`async_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +INSERT INTO `egw_async` (`async_id`, `async_next`, `async_times`, `async_method`, `async_data`, `async_account_id`) VALUES +('##last-check-run##', 0, 'a:0:{}', 'none', 'a:3:{s:6:"run_by";s:7:"crontab";s:5:"start";i:1386863403;s:3:"end";i:1386863403;}', 0); + +CREATE TABLE IF NOT EXISTS `egw_bookmarks` ( + `bm_id` int(11) NOT NULL auto_increment, + `bm_owner` int(11) default NULL, + `bm_access` varchar(255) default NULL, + `bm_url` varchar(255) default NULL, + `bm_name` varchar(255) default NULL, + `bm_desc` text, + `bm_keywords` varchar(255) default NULL, + `bm_category` int(11) default NULL, + `bm_rating` int(11) default NULL, + `bm_info` varchar(255) default NULL, + `bm_visits` int(11) default NULL, + PRIMARY KEY (`bm_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_cal` ( + `cal_id` int(11) NOT NULL auto_increment, + `cal_uid` varchar(255) NOT NULL, + `cal_owner` int(11) NOT NULL, + `cal_category` varchar(30) default NULL, + `cal_modified` bigint(20) default NULL, + `cal_priority` smallint(6) NOT NULL default '2', + `cal_public` smallint(6) NOT NULL default '1', + `cal_title` varchar(255) NOT NULL default '1', + `cal_description` text, + `cal_location` varchar(255) default NULL, + `cal_reference` int(11) NOT NULL default '0', + `cal_modifier` int(11) default NULL, + `cal_non_blocking` smallint(6) default '0', + `cal_special` smallint(6) default '0', + `cal_etag` int(11) default '0', + `cal_creator` int(11) NOT NULL, + `cal_created` bigint(20) NOT NULL, + `cal_recurrence` bigint(20) NOT NULL default '0', + `tz_id` int(11) default NULL, + `cal_deleted` bigint(20) default NULL, + `caldav_name` varchar(64) default NULL, + PRIMARY KEY (`cal_id`), + KEY `egw_cal_uid` (`cal_uid`), + KEY `egw_cal_owner` (`cal_owner`), + KEY `egw_cal_deleted` (`cal_deleted`), + KEY `egw_cal_caldav_name` (`caldav_name`), + KEY `egw_cal_modified` (`cal_modified`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_cal_dates` ( + `cal_id` int(11) NOT NULL default '0', + `cal_start` bigint(20) NOT NULL, + `cal_end` bigint(20) NOT NULL, + PRIMARY KEY (`cal_id`,`cal_start`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_cal_extra` ( + `cal_id` int(11) NOT NULL default '0', + `cal_extra_name` varchar(40) NOT NULL default '', + `cal_extra_value` varchar(255) NOT NULL default '', + PRIMARY KEY (`cal_id`,`cal_extra_name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_cal_holidays` ( + `hol_id` int(11) NOT NULL auto_increment, + `hol_locale` varchar(2) NOT NULL default '', + `hol_name` varchar(50) NOT NULL default '', + `hol_mday` bigint(20) NOT NULL default '0', + `hol_month_num` bigint(20) NOT NULL default '0', + `hol_occurence` bigint(20) NOT NULL default '0', + `hol_dow` bigint(20) NOT NULL default '0', + `hol_observance_rule` bigint(20) NOT NULL default '0', + PRIMARY KEY (`hol_id`), + KEY `egw_cal_holidays_hol_locale` (`hol_locale`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_cal_repeats` ( + `cal_id` int(11) NOT NULL default '0', + `recur_type` smallint(6) NOT NULL default '0', + `recur_enddate` bigint(20) default NULL, + `recur_interval` smallint(6) default '1', + `recur_data` smallint(6) default '1', + `recur_exception` text, + PRIMARY KEY (`cal_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_cal_timezones` ( + `tz_id` int(11) NOT NULL auto_increment, + `tz_tzid` varchar(128) NOT NULL, + `tz_alias` int(11) default NULL, + `tz_latitude` int(11) default NULL, + `tz_longitude` int(11) default NULL, + `tz_component` text, + PRIMARY KEY (`tz_id`), + UNIQUE KEY `egw_cal_timezones_tz_tzid` (`tz_tzid`), + KEY `egw_cal_timezones_tz_alias` (`tz_alias`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=609 ; + +INSERT INTO `egw_cal_timezones` (`tz_id`, `tz_tzid`, `tz_alias`, `tz_latitude`, `tz_longitude`, `tz_component`) VALUES +(1, 'Africa/Abidjan', NULL, 51900, -40200, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Abidjan\r\nX-LIC-LOCATION:Africa/Abidjan\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(2, 'Africa/Accra', NULL, 53300, 1300, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Accra\r\nX-LIC-LOCATION:Africa/Accra\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(3, 'Africa/Addis_Ababa', NULL, 90200, 384200, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Addis_Ababa\r\nX-LIC-LOCATION:Africa/Addis_Ababa\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:EAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(4, 'Africa/Algiers', NULL, 364700, 30300, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Algiers\r\nX-LIC-LOCATION:Africa/Algiers\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(5, 'Africa/Asmara', NULL, 152000, 385300, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Asmara\r\nX-LIC-LOCATION:Africa/Asmara\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:EAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(6, 'Africa/Bamako', NULL, 123900, -80000, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Bamako\r\nX-LIC-LOCATION:Africa/Bamako\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(7, 'Africa/Bangui', NULL, 42200, 183500, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Bangui\r\nX-LIC-LOCATION:Africa/Bangui\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0100\r\nTZNAME:WAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(8, 'Africa/Banjul', NULL, 132800, -163900, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Banjul\r\nX-LIC-LOCATION:Africa/Banjul\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(9, 'Africa/Bissau', NULL, 115100, -153500, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Bissau\r\nX-LIC-LOCATION:Africa/Bissau\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(10, 'Africa/Blantyre', NULL, -154700, 350000, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Blantyre\r\nX-LIC-LOCATION:Africa/Blantyre\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:CAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(11, 'Africa/Brazzaville', NULL, -41600, 151700, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Brazzaville\r\nX-LIC-LOCATION:Africa/Brazzaville\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0100\r\nTZNAME:WAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(12, 'Africa/Bujumbura', NULL, -32300, 292200, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Bujumbura\r\nX-LIC-LOCATION:Africa/Bujumbura\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:CAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(13, 'Africa/Cairo', NULL, 300300, 311500, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Cairo\r\nX-LIC-LOCATION:Africa/Cairo\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(14, 'Africa/Casablanca', NULL, 333900, -73500, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Casablanca\r\nX-LIC-LOCATION:Africa/Casablanca\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0000\r\nTZNAME:WET\r\nDTSTART:19700927T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=9\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0100\r\nTZNAME:WEST\r\nDTSTART:19700426T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=4\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(15, 'Africa/Ceuta', NULL, 355300, -51900, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Ceuta\r\nX-LIC-LOCATION:Africa/Ceuta\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(16, 'Africa/Conakry', NULL, 93100, -134300, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Conakry\r\nX-LIC-LOCATION:Africa/Conakry\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(17, 'Africa/Dakar', NULL, 144000, -172600, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Dakar\r\nX-LIC-LOCATION:Africa/Dakar\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(18, 'Africa/Dar_es_Salaam', NULL, -64800, 391700, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Dar_es_Salaam\r\nX-LIC-LOCATION:Africa/Dar_es_Salaam\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:EAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(19, 'Africa/Djibouti', NULL, 113600, 430900, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Djibouti\r\nX-LIC-LOCATION:Africa/Djibouti\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:EAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(20, 'Africa/Douala', NULL, 40300, 94200, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Douala\r\nX-LIC-LOCATION:Africa/Douala\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0100\r\nTZNAME:WAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(21, 'Africa/El_Aaiun', NULL, 270900, -131200, 'BEGIN:VTIMEZONE\r\nTZID:Africa/El_Aaiun\r\nX-LIC-LOCATION:Africa/El_Aaiun\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:WET\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(22, 'Africa/Freetown', NULL, 83000, -131500, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Freetown\r\nX-LIC-LOCATION:Africa/Freetown\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(23, 'Africa/Gaborone', NULL, -243900, 255500, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Gaborone\r\nX-LIC-LOCATION:Africa/Gaborone\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:CAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(24, 'Africa/Harare', NULL, -175000, 310300, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Harare\r\nX-LIC-LOCATION:Africa/Harare\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:CAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(25, 'Africa/Johannesburg', NULL, -261500, 280000, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Johannesburg\r\nX-LIC-LOCATION:Africa/Johannesburg\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:SAST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(26, 'Africa/Juba', NULL, 45100, 313600, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Juba\r\nX-LIC-LOCATION:Africa/Juba\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:EAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(27, 'Africa/Kampala', NULL, 1900, 322500, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Kampala\r\nX-LIC-LOCATION:Africa/Kampala\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:EAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(28, 'Africa/Khartoum', NULL, 153600, 323200, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Khartoum\r\nX-LIC-LOCATION:Africa/Khartoum\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:EAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(29, 'Africa/Kigali', NULL, -15700, 300400, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Kigali\r\nX-LIC-LOCATION:Africa/Kigali\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:CAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(30, 'Africa/Kinshasa', NULL, -41800, 151800, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Kinshasa\r\nX-LIC-LOCATION:Africa/Kinshasa\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0100\r\nTZNAME:WAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(31, 'Africa/Lagos', NULL, 62700, 32400, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Lagos\r\nX-LIC-LOCATION:Africa/Lagos\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0100\r\nTZNAME:WAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(32, 'Africa/Libreville', NULL, 2300, 92700, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Libreville\r\nX-LIC-LOCATION:Africa/Libreville\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0100\r\nTZNAME:WAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(33, 'Africa/Lome', NULL, 60800, 11300, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Lome\r\nX-LIC-LOCATION:Africa/Lome\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(34, 'Africa/Luanda', NULL, -84800, 131400, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Luanda\r\nX-LIC-LOCATION:Africa/Luanda\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0100\r\nTZNAME:WAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(35, 'Africa/Lubumbashi', NULL, -114000, 272800, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Lubumbashi\r\nX-LIC-LOCATION:Africa/Lubumbashi\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:CAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(36, 'Africa/Lusaka', NULL, -152500, 281700, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Lusaka\r\nX-LIC-LOCATION:Africa/Lusaka\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:CAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(37, 'Africa/Malabo', NULL, 34500, 84700, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Malabo\r\nX-LIC-LOCATION:Africa/Malabo\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0100\r\nTZNAME:WAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(38, 'Africa/Maputo', NULL, -255800, 323500, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Maputo\r\nX-LIC-LOCATION:Africa/Maputo\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:CAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(39, 'Africa/Maseru', NULL, -292800, 273000, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Maseru\r\nX-LIC-LOCATION:Africa/Maseru\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:SAST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(40, 'Africa/Mbabane', NULL, -261800, 310600, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Mbabane\r\nX-LIC-LOCATION:Africa/Mbabane\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:SAST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(41, 'Africa/Mogadishu', NULL, 20400, 452200, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Mogadishu\r\nX-LIC-LOCATION:Africa/Mogadishu\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:EAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(42, 'Africa/Monrovia', NULL, 61800, -104700, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Monrovia\r\nX-LIC-LOCATION:Africa/Monrovia\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(43, 'Africa/Nairobi', NULL, -11700, 364900, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Nairobi\r\nX-LIC-LOCATION:Africa/Nairobi\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:EAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(44, 'Africa/Ndjamena', NULL, 120700, 150300, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Ndjamena\r\nX-LIC-LOCATION:Africa/Ndjamena\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0100\r\nTZNAME:WAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(45, 'Africa/Niamey', NULL, 133100, 20700, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Niamey\r\nX-LIC-LOCATION:Africa/Niamey\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0100\r\nTZNAME:WAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(46, 'Africa/Nouakchott', NULL, 180600, -155700, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Nouakchott\r\nX-LIC-LOCATION:Africa/Nouakchott\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(47, 'Africa/Ouagadougou', NULL, 122200, -13100, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Ouagadougou\r\nX-LIC-LOCATION:Africa/Ouagadougou\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(48, 'Africa/Porto-Novo', NULL, 62900, 23700, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Porto-Novo\r\nX-LIC-LOCATION:Africa/Porto-Novo\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0100\r\nTZNAME:WAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(49, 'Africa/Sao_Tome', NULL, 2000, 64400, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Sao_Tome\r\nX-LIC-LOCATION:Africa/Sao_Tome\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(50, 'Africa/Tripoli', NULL, 325400, 131100, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Tripoli\r\nX-LIC-LOCATION:Africa/Tripoli\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700327T010000\r\nRRULE:FREQ=YEARLY;BYDAY=-1FR;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701030T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1FR;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(51, 'Africa/Tunis', NULL, 364800, 101100, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Tunis\r\nX-LIC-LOCATION:Africa/Tunis\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(52, 'Africa/Windhoek', NULL, -223400, 170600, 'BEGIN:VTIMEZONE\r\nTZID:Africa/Windhoek\r\nX-LIC-LOCATION:Africa/Windhoek\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:WAST\r\nDTSTART:19700906T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=9\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:WAT\r\nDTSTART:19700405T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(53, 'America/Adak', NULL, 515248, -1763929, 'BEGIN:VTIMEZONE\r\nTZID:America/Adak\r\nX-LIC-LOCATION:America/Adak\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-1000\r\nTZOFFSETTO:-0900\r\nTZNAME:HADT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0900\r\nTZOFFSETTO:-1000\r\nTZNAME:HAST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(54, 'America/Anchorage', NULL, 611305, -1495401, 'BEGIN:VTIMEZONE\r\nTZID:America/Anchorage\r\nX-LIC-LOCATION:America/Anchorage\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0900\r\nTZOFFSETTO:-0800\r\nTZNAME:AKDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0800\r\nTZOFFSETTO:-0900\r\nTZNAME:AKST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(55, 'America/Anguilla', NULL, 181200, -630400, 'BEGIN:VTIMEZONE\r\nTZID:America/Anguilla\r\nX-LIC-LOCATION:America/Anguilla\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(56, 'America/Antigua', NULL, 170300, -614800, 'BEGIN:VTIMEZONE\r\nTZID:America/Antigua\r\nX-LIC-LOCATION:America/Antigua\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(57, 'America/Araguaina', NULL, -71200, -481200, 'BEGIN:VTIMEZONE\r\nTZID:America/Araguaina\r\nX-LIC-LOCATION:America/Araguaina\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0200\r\nTZNAME:BRST\r\nDTSTART:19701018T000000\r\nRRULE:FREQ=YEARLY;BYDAY=3SU;BYMONTH=10\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:BRT\r\nDTSTART:19700215T000000\r\nRRULE:FREQ=YEARLY;BYDAY=3SU;BYMONTH=2\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(58, 'America/Argentina/Buenos_Aires', NULL, -343600, -582700, 'BEGIN:VTIMEZONE\r\nTZID:America/Argentina/Buenos_Aires\r\nX-LIC-LOCATION:America/Argentina/Buenos_Aires\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:ART\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(59, 'America/Argentina/Catamarca', NULL, -282800, -654700, 'BEGIN:VTIMEZONE\r\nTZID:America/Argentina/Catamarca\r\nX-LIC-LOCATION:America/Argentina/Catamarca\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:ART\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(60, 'America/Argentina/Cordoba', NULL, -312400, -641100, 'BEGIN:VTIMEZONE\r\nTZID:America/Argentina/Cordoba\r\nX-LIC-LOCATION:America/Argentina/Cordoba\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:ART\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(61, 'America/Argentina/Jujuy', NULL, -241100, -651800, 'BEGIN:VTIMEZONE\r\nTZID:America/Argentina/Jujuy\r\nX-LIC-LOCATION:America/Argentina/Jujuy\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:ART\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(62, 'America/Argentina/La_Rioja', NULL, -292600, -665100, 'BEGIN:VTIMEZONE\r\nTZID:America/Argentina/La_Rioja\r\nX-LIC-LOCATION:America/Argentina/La_Rioja\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:ART\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(63, 'America/Argentina/Mendoza', NULL, -325300, -684900, 'BEGIN:VTIMEZONE\r\nTZID:America/Argentina/Mendoza\r\nX-LIC-LOCATION:America/Argentina/Mendoza\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:ART\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(64, 'America/Argentina/Rio_Gallegos', NULL, -513800, -691300, 'BEGIN:VTIMEZONE\r\nTZID:America/Argentina/Rio_Gallegos\r\nX-LIC-LOCATION:America/Argentina/Rio_Gallegos\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:ART\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(65, 'America/Argentina/Salta', NULL, -244700, -652500, 'BEGIN:VTIMEZONE\r\nTZID:America/Argentina/Salta\r\nX-LIC-LOCATION:America/Argentina/Salta\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:ART\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(66, 'America/Argentina/San_Juan', NULL, -313200, -683100, 'BEGIN:VTIMEZONE\r\nTZID:America/Argentina/San_Juan\r\nX-LIC-LOCATION:America/Argentina/San_Juan\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:ART\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(67, 'America/Argentina/San_Luis', NULL, -331900, -662100, 'BEGIN:VTIMEZONE\r\nTZID:America/Argentina/San_Luis\r\nX-LIC-LOCATION:America/Argentina/San_Luis\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:WART\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(68, 'America/Argentina/Tucuman', NULL, -264900, -651300, 'BEGIN:VTIMEZONE\r\nTZID:America/Argentina/Tucuman\r\nX-LIC-LOCATION:America/Argentina/Tucuman\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:ART\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(69, 'America/Argentina/Ushuaia', NULL, -544800, -681800, 'BEGIN:VTIMEZONE\r\nTZID:America/Argentina/Ushuaia\r\nX-LIC-LOCATION:America/Argentina/Ushuaia\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:ART\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(70, 'America/Aruba', NULL, 123000, -695800, 'BEGIN:VTIMEZONE\r\nTZID:America/Aruba\r\nX-LIC-LOCATION:America/Aruba\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(71, 'America/Asuncion', NULL, -251600, -574000, 'BEGIN:VTIMEZONE\r\nTZID:America/Asuncion\r\nX-LIC-LOCATION:America/Asuncion\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0300\r\nTZNAME:PYST\r\nDTSTART:19701004T000000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=10\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0400\r\nTZNAME:PYT\r\nDTSTART:19700322T000000\r\nRRULE:FREQ=YEARLY;BYDAY=4SU;BYMONTH=3\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(72, 'America/Atikokan', NULL, 484531, -913718, 'BEGIN:VTIMEZONE\r\nTZID:America/Atikokan\r\nX-LIC-LOCATION:America/Atikokan\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(73, 'America/Bahia', NULL, -125900, -383100, 'BEGIN:VTIMEZONE\r\nTZID:America/Bahia\r\nX-LIC-LOCATION:America/Bahia\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:BRT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(74, 'America/Bahia_Banderas', NULL, 204800, -1051500, 'BEGIN:VTIMEZONE\r\nTZID:America/Bahia_Banderas\r\nX-LIC-LOCATION:America/Bahia_Banderas\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700405T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(75, 'America/Barbados', NULL, 130600, -593700, 'BEGIN:VTIMEZONE\r\nTZID:America/Barbados\r\nX-LIC-LOCATION:America/Barbados\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(76, 'America/Belem', NULL, -12700, -482900, 'BEGIN:VTIMEZONE\r\nTZID:America/Belem\r\nX-LIC-LOCATION:America/Belem\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:BRT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(77, 'America/Belize', NULL, 173000, -881200, 'BEGIN:VTIMEZONE\r\nTZID:America/Belize\r\nX-LIC-LOCATION:America/Belize\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(78, 'America/Blanc-Sablon', NULL, 512500, -570700, 'BEGIN:VTIMEZONE\r\nTZID:America/Blanc-Sablon\r\nX-LIC-LOCATION:America/Blanc-Sablon\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(79, 'America/Boa_Vista', NULL, 24900, -604000, 'BEGIN:VTIMEZONE\r\nTZID:America/Boa_Vista\r\nX-LIC-LOCATION:America/Boa_Vista\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(80, 'America/Bogota', NULL, 43600, -740500, 'BEGIN:VTIMEZONE\r\nTZID:America/Bogota\r\nX-LIC-LOCATION:America/Bogota\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0500\r\nTZNAME:COT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(81, 'America/Boise', NULL, 433649, -1161209, 'BEGIN:VTIMEZONE\r\nTZID:America/Boise\r\nX-LIC-LOCATION:America/Boise\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0600\r\nTZNAME:MDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0700\r\nTZNAME:MST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(82, 'America/Cambridge_Bay', NULL, 690650, -1050310, 'BEGIN:VTIMEZONE\r\nTZID:America/Cambridge_Bay\r\nX-LIC-LOCATION:America/Cambridge_Bay\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0600\r\nTZNAME:MDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0700\r\nTZNAME:MST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(83, 'America/Campo_Grande', NULL, -202700, -543700, 'BEGIN:VTIMEZONE\r\nTZID:America/Campo_Grande\r\nX-LIC-LOCATION:America/Campo_Grande\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0300\r\nTZNAME:AMST\r\nDTSTART:19701018T000000\r\nRRULE:FREQ=YEARLY;BYDAY=3SU;BYMONTH=10\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AMT\r\nDTSTART:19700215T000000\r\nRRULE:FREQ=YEARLY;BYDAY=3SU;BYMONTH=2\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(84, 'America/Cancun', NULL, 210500, -864600, 'BEGIN:VTIMEZONE\r\nTZID:America/Cancun\r\nX-LIC-LOCATION:America/Cancun\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700405T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(85, 'America/Caracas', NULL, 103000, -665600, 'BEGIN:VTIMEZONE\r\nTZID:America/Caracas\r\nX-LIC-LOCATION:America/Caracas\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0430\r\nTZOFFSETTO:-0430\r\nTZNAME:VET\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(86, 'America/Cayenne', NULL, 45600, -522000, 'BEGIN:VTIMEZONE\r\nTZID:America/Cayenne\r\nX-LIC-LOCATION:America/Cayenne\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:GFT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(87, 'America/Cayman', NULL, 191800, -812300, 'BEGIN:VTIMEZONE\r\nTZID:America/Cayman\r\nX-LIC-LOCATION:America/Cayman\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(88, 'America/Chicago', NULL, 415100, -873900, 'BEGIN:VTIMEZONE\r\nTZID:America/Chicago\r\nX-LIC-LOCATION:America/Chicago\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(89, 'America/Chihuahua', NULL, 283800, -1060500, 'BEGIN:VTIMEZONE\r\nTZID:America/Chihuahua\r\nX-LIC-LOCATION:America/Chihuahua\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0600\r\nTZNAME:MDT\r\nDTSTART:19700405T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0700\r\nTZNAME:MST\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(90, 'America/Costa_Rica', NULL, 95600, -840500, 'BEGIN:VTIMEZONE\r\nTZID:America/Costa_Rica\r\nX-LIC-LOCATION:America/Costa_Rica\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(91, 'America/Creston', 96, 490600, -1163100, 'BEGIN:VTIMEZONE\r\nTZID:America/Creston\r\nX-LIC-LOCATION:America/Creston\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0700\r\nTZNAME:MST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(92, 'America/Cuiaba', NULL, -153500, -560500, 'BEGIN:VTIMEZONE\r\nTZID:America/Cuiaba\r\nX-LIC-LOCATION:America/Cuiaba\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0300\r\nTZNAME:AMST\r\nDTSTART:19701018T000000\r\nRRULE:FREQ=YEARLY;BYDAY=3SU;BYMONTH=10\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AMT\r\nDTSTART:19700215T000000\r\nRRULE:FREQ=YEARLY;BYDAY=3SU;BYMONTH=2\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(93, 'America/Curacao', NULL, 121100, -690000, 'BEGIN:VTIMEZONE\r\nTZID:America/Curacao\r\nX-LIC-LOCATION:America/Curacao\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(94, 'America/Danmarkshavn', NULL, 764600, -184000, 'BEGIN:VTIMEZONE\r\nTZID:America/Danmarkshavn\r\nX-LIC-LOCATION:America/Danmarkshavn\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(95, 'America/Dawson', NULL, 640400, -1392500, 'BEGIN:VTIMEZONE\r\nTZID:America/Dawson\r\nX-LIC-LOCATION:America/Dawson\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0800\r\nTZOFFSETTO:-0700\r\nTZNAME:PDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0800\r\nTZNAME:PST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(96, 'America/Dawson_Creek', NULL, 594600, -1201400, 'BEGIN:VTIMEZONE\r\nTZID:America/Dawson_Creek\r\nX-LIC-LOCATION:America/Dawson_Creek\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0700\r\nTZNAME:MST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(97, 'America/Denver', NULL, 394421, -1045903, 'BEGIN:VTIMEZONE\r\nTZID:America/Denver\r\nX-LIC-LOCATION:America/Denver\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0600\r\nTZNAME:MDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0700\r\nTZNAME:MST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(98, 'America/Detroit', NULL, 421953, -830245, 'BEGIN:VTIMEZONE\r\nTZID:America/Detroit\r\nX-LIC-LOCATION:America/Detroit\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(99, 'America/Dominica', NULL, 151800, -612400, 'BEGIN:VTIMEZONE\r\nTZID:America/Dominica\r\nX-LIC-LOCATION:America/Dominica\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(100, 'America/Edmonton', NULL, 533300, -1132800, 'BEGIN:VTIMEZONE\r\nTZID:America/Edmonton\r\nX-LIC-LOCATION:America/Edmonton\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0600\r\nTZNAME:MDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0700\r\nTZNAME:MST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(101, 'America/Eirunepe', NULL, -64000, -695200, 'BEGIN:VTIMEZONE\r\nTZID:America/Eirunepe\r\nX-LIC-LOCATION:America/Eirunepe\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(102, 'America/El_Salvador', NULL, 134200, -891200, 'BEGIN:VTIMEZONE\r\nTZID:America/El_Salvador\r\nX-LIC-LOCATION:America/El_Salvador\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(103, 'America/Fortaleza', NULL, -34300, -383000, 'BEGIN:VTIMEZONE\r\nTZID:America/Fortaleza\r\nX-LIC-LOCATION:America/Fortaleza\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:BRT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(104, 'America/Glace_Bay', NULL, 461200, -595700, 'BEGIN:VTIMEZONE\r\nTZID:America/Glace_Bay\r\nX-LIC-LOCATION:America/Glace_Bay\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0300\r\nTZNAME:ADT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(105, 'America/Godthab', NULL, 641100, -514400, 'BEGIN:VTIMEZONE\r\nTZID:America/Godthab\r\nX-LIC-LOCATION:America/Godthab\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0200\r\nTZNAME:WGST\r\nDTSTART:19700328T220000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SA;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0200\r\nTZOFFSETTO:-0300\r\nTZNAME:WGT\r\nDTSTART:19701024T230000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SA;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(106, 'America/Goose_Bay', NULL, 532000, -602500, 'BEGIN:VTIMEZONE\r\nTZID:America/Goose_Bay\r\nX-LIC-LOCATION:America/Goose_Bay\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0300\r\nTZNAME:ADT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(107, 'America/Grand_Turk', NULL, 212800, -710800, 'BEGIN:VTIMEZONE\r\nTZID:America/Grand_Turk\r\nX-LIC-LOCATION:America/Grand_Turk\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(108, 'America/Grenada', NULL, 120300, -614500, 'BEGIN:VTIMEZONE\r\nTZID:America/Grenada\r\nX-LIC-LOCATION:America/Grenada\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(109, 'America/Guadeloupe', NULL, 161400, -613200, 'BEGIN:VTIMEZONE\r\nTZID:America/Guadeloupe\r\nX-LIC-LOCATION:America/Guadeloupe\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(110, 'America/Guatemala', NULL, 143800, -903100, 'BEGIN:VTIMEZONE\r\nTZID:America/Guatemala\r\nX-LIC-LOCATION:America/Guatemala\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(111, 'America/Guayaquil', NULL, -21000, -795000, 'BEGIN:VTIMEZONE\r\nTZID:America/Guayaquil\r\nX-LIC-LOCATION:America/Guayaquil\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0500\r\nTZNAME:ECT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(112, 'America/Guyana', NULL, 64800, -581000, 'BEGIN:VTIMEZONE\r\nTZID:America/Guyana\r\nX-LIC-LOCATION:America/Guyana\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:GYT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(113, 'America/Halifax', NULL, 443900, -633600, 'BEGIN:VTIMEZONE\r\nTZID:America/Halifax\r\nX-LIC-LOCATION:America/Halifax\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0300\r\nTZNAME:ADT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(114, 'America/Havana', NULL, 230800, -822200, 'BEGIN:VTIMEZONE\r\nTZID:America/Havana\r\nX-LIC-LOCATION:America/Havana\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:CST\r\nDTSTART:19701101T010000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:CDT\r\nDTSTART:19700308T000000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(115, 'America/Hermosillo', NULL, 290400, -1105800, 'BEGIN:VTIMEZONE\r\nTZID:America/Hermosillo\r\nX-LIC-LOCATION:America/Hermosillo\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0700\r\nTZNAME:MST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(116, 'America/Indiana/Indianapolis', NULL, 394606, -860929, 'BEGIN:VTIMEZONE\r\nTZID:America/Indiana/Indianapolis\r\nX-LIC-LOCATION:America/Indiana/Indianapolis\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(117, 'America/Indiana/Knox', NULL, 411745, -863730, 'BEGIN:VTIMEZONE\r\nTZID:America/Indiana/Knox\r\nX-LIC-LOCATION:America/Indiana/Knox\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(118, 'America/Indiana/Marengo', NULL, 382232, -862041, 'BEGIN:VTIMEZONE\r\nTZID:America/Indiana/Marengo\r\nX-LIC-LOCATION:America/Indiana/Marengo\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(119, 'America/Indiana/Petersburg', NULL, 382931, -871643, 'BEGIN:VTIMEZONE\r\nTZID:America/Indiana/Petersburg\r\nX-LIC-LOCATION:America/Indiana/Petersburg\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(120, 'America/Indiana/Tell_City', NULL, 375711, -864541, 'BEGIN:VTIMEZONE\r\nTZID:America/Indiana/Tell_City\r\nX-LIC-LOCATION:America/Indiana/Tell_City\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(121, 'America/Indiana/Vevay', NULL, 384452, -850402, 'BEGIN:VTIMEZONE\r\nTZID:America/Indiana/Vevay\r\nX-LIC-LOCATION:America/Indiana/Vevay\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(122, 'America/Indiana/Vincennes', NULL, 384038, -873143, 'BEGIN:VTIMEZONE\r\nTZID:America/Indiana/Vincennes\r\nX-LIC-LOCATION:America/Indiana/Vincennes\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(123, 'America/Indiana/Winamac', NULL, 410305, -863611, 'BEGIN:VTIMEZONE\r\nTZID:America/Indiana/Winamac\r\nX-LIC-LOCATION:America/Indiana/Winamac\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(124, 'America/Inuvik', NULL, 682059, -1334300, 'BEGIN:VTIMEZONE\r\nTZID:America/Inuvik\r\nX-LIC-LOCATION:America/Inuvik\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0600\r\nTZNAME:MDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0700\r\nTZNAME:MST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(125, 'America/Iqaluit', NULL, 634400, -682800, 'BEGIN:VTIMEZONE\r\nTZID:America/Iqaluit\r\nX-LIC-LOCATION:America/Iqaluit\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(126, 'America/Jamaica', NULL, 180000, -764800, 'BEGIN:VTIMEZONE\r\nTZID:America/Jamaica\r\nX-LIC-LOCATION:America/Jamaica\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(127, 'America/Juneau', NULL, 581807, -1342511, 'BEGIN:VTIMEZONE\r\nTZID:America/Juneau\r\nX-LIC-LOCATION:America/Juneau\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0900\r\nTZOFFSETTO:-0800\r\nTZNAME:AKDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0800\r\nTZOFFSETTO:-0900\r\nTZNAME:AKST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(128, 'America/Kentucky/Louisville', NULL, 381515, -854534, 'BEGIN:VTIMEZONE\r\nTZID:America/Kentucky/Louisville\r\nX-LIC-LOCATION:America/Kentucky/Louisville\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(129, 'America/Kentucky/Monticello', NULL, 364947, -845057, 'BEGIN:VTIMEZONE\r\nTZID:America/Kentucky/Monticello\r\nX-LIC-LOCATION:America/Kentucky/Monticello\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(130, 'America/Kralendijk', NULL, 120903, -681636, 'BEGIN:VTIMEZONE\r\nTZID:America/Kralendijk\r\nX-LIC-LOCATION:America/Kralendijk\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(131, 'America/La_Paz', NULL, -163000, -680900, 'BEGIN:VTIMEZONE\r\nTZID:America/La_Paz\r\nX-LIC-LOCATION:America/La_Paz\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:BOT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(132, 'America/Lima', NULL, -120300, -770300, 'BEGIN:VTIMEZONE\r\nTZID:America/Lima\r\nX-LIC-LOCATION:America/Lima\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0500\r\nTZNAME:PET\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(133, 'America/Los_Angeles', NULL, 340308, -1181434, 'BEGIN:VTIMEZONE\r\nTZID:America/Los_Angeles\r\nX-LIC-LOCATION:America/Los_Angeles\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0800\r\nTZOFFSETTO:-0700\r\nTZNAME:PDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0800\r\nTZNAME:PST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(134, 'America/Lower_Princes', NULL, 180305, -630250, 'BEGIN:VTIMEZONE\r\nTZID:America/Lower_Princes\r\nX-LIC-LOCATION:America/Lower_Princes\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(135, 'America/Maceio', NULL, -94000, -354300, 'BEGIN:VTIMEZONE\r\nTZID:America/Maceio\r\nX-LIC-LOCATION:America/Maceio\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:BRT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(136, 'America/Managua', NULL, 120900, -861700, 'BEGIN:VTIMEZONE\r\nTZID:America/Managua\r\nX-LIC-LOCATION:America/Managua\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(137, 'America/Manaus', NULL, -30800, -600100, 'BEGIN:VTIMEZONE\r\nTZID:America/Manaus\r\nX-LIC-LOCATION:America/Manaus\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(138, 'America/Marigot', NULL, 180400, -630500, 'BEGIN:VTIMEZONE\r\nTZID:America/Marigot\r\nX-LIC-LOCATION:America/Marigot\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(139, 'America/Martinique', NULL, 143600, -610500, 'BEGIN:VTIMEZONE\r\nTZID:America/Martinique\r\nX-LIC-LOCATION:America/Martinique\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(140, 'America/Matamoros', NULL, 255000, -973000, 'BEGIN:VTIMEZONE\r\nTZID:America/Matamoros\r\nX-LIC-LOCATION:America/Matamoros\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(141, 'America/Mazatlan', NULL, 231300, -1062500, 'BEGIN:VTIMEZONE\r\nTZID:America/Mazatlan\r\nX-LIC-LOCATION:America/Mazatlan\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0600\r\nTZNAME:MDT\r\nDTSTART:19700405T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0700\r\nTZNAME:MST\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(142, 'America/Menominee', NULL, 450628, -873651, 'BEGIN:VTIMEZONE\r\nTZID:America/Menominee\r\nX-LIC-LOCATION:America/Menominee\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(143, 'America/Merida', NULL, 205800, -893700, 'BEGIN:VTIMEZONE\r\nTZID:America/Merida\r\nX-LIC-LOCATION:America/Merida\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700405T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(144, 'America/Metlakatla', NULL, 550737, -1313435, 'BEGIN:VTIMEZONE\r\nTZID:America/Metlakatla\r\nX-LIC-LOCATION:America/Metlakatla\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0800\r\nTZOFFSETTO:-0800\r\nTZNAME:MeST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(145, 'America/Mexico_City', NULL, 192400, -990900, 'BEGIN:VTIMEZONE\r\nTZID:America/Mexico_City\r\nX-LIC-LOCATION:America/Mexico_City\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700405T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(146, 'America/Miquelon', NULL, 470300, -562000, 'BEGIN:VTIMEZONE\r\nTZID:America/Miquelon\r\nX-LIC-LOCATION:America/Miquelon\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0200\r\nTZNAME:PMDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0200\r\nTZOFFSETTO:-0300\r\nTZNAME:PMST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(147, 'America/Moncton', NULL, 460600, -644700, 'BEGIN:VTIMEZONE\r\nTZID:America/Moncton\r\nX-LIC-LOCATION:America/Moncton\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0300\r\nTZNAME:ADT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(148, 'America/Monterrey', NULL, 254000, -1001900, 'BEGIN:VTIMEZONE\r\nTZID:America/Monterrey\r\nX-LIC-LOCATION:America/Monterrey\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700405T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(149, 'America/Montevideo', NULL, -345300, -561100, 'BEGIN:VTIMEZONE\r\nTZID:America/Montevideo\r\nX-LIC-LOCATION:America/Montevideo\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0200\r\nTZNAME:UYST\r\nDTSTART:19701004T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=10\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0200\r\nTZOFFSETTO:-0300\r\nTZNAME:UYT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'); +INSERT INTO `egw_cal_timezones` (`tz_id`, `tz_tzid`, `tz_alias`, `tz_latitude`, `tz_longitude`, `tz_component`) VALUES +(150, 'America/Montreal', NULL, 453100, -733400, 'BEGIN:VTIMEZONE\r\nTZID:America/Montreal\r\nX-LIC-LOCATION:America/Montreal\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(151, 'America/Montserrat', NULL, 164300, -621300, 'BEGIN:VTIMEZONE\r\nTZID:America/Montserrat\r\nX-LIC-LOCATION:America/Montserrat\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(152, 'America/Nassau', NULL, 250500, -772100, 'BEGIN:VTIMEZONE\r\nTZID:America/Nassau\r\nX-LIC-LOCATION:America/Nassau\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(153, 'America/New_York', NULL, 404251, -740023, 'BEGIN:VTIMEZONE\r\nTZID:America/New_York\r\nX-LIC-LOCATION:America/New_York\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(154, 'America/Nipigon', NULL, 490100, -881600, 'BEGIN:VTIMEZONE\r\nTZID:America/Nipigon\r\nX-LIC-LOCATION:America/Nipigon\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(155, 'America/Nome', NULL, 643004, -1652423, 'BEGIN:VTIMEZONE\r\nTZID:America/Nome\r\nX-LIC-LOCATION:America/Nome\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0900\r\nTZOFFSETTO:-0800\r\nTZNAME:AKDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0800\r\nTZOFFSETTO:-0900\r\nTZNAME:AKST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(156, 'America/Noronha', NULL, -35100, -322500, 'BEGIN:VTIMEZONE\r\nTZID:America/Noronha\r\nX-LIC-LOCATION:America/Noronha\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0200\r\nTZOFFSETTO:-0200\r\nTZNAME:FNT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(157, 'America/North_Dakota/Beulah', NULL, 471551, -1014640, 'BEGIN:VTIMEZONE\r\nTZID:America/North_Dakota/Beulah\r\nX-LIC-LOCATION:America/North_Dakota/Beulah\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(158, 'America/North_Dakota/Center', NULL, 470659, -1011757, 'BEGIN:VTIMEZONE\r\nTZID:America/North_Dakota/Center\r\nX-LIC-LOCATION:America/North_Dakota/Center\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(159, 'America/North_Dakota/New_Salem', NULL, 465042, -1012439, 'BEGIN:VTIMEZONE\r\nTZID:America/North_Dakota/New_Salem\r\nX-LIC-LOCATION:America/North_Dakota/New_Salem\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(160, 'America/Ojinaga', NULL, 293400, -1042500, 'BEGIN:VTIMEZONE\r\nTZID:America/Ojinaga\r\nX-LIC-LOCATION:America/Ojinaga\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0600\r\nTZNAME:MDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0700\r\nTZNAME:MST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(161, 'America/Panama', NULL, 85800, -793200, 'BEGIN:VTIMEZONE\r\nTZID:America/Panama\r\nX-LIC-LOCATION:America/Panama\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(162, 'America/Pangnirtung', NULL, 660800, -654400, 'BEGIN:VTIMEZONE\r\nTZID:America/Pangnirtung\r\nX-LIC-LOCATION:America/Pangnirtung\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(163, 'America/Paramaribo', NULL, 55000, -551000, 'BEGIN:VTIMEZONE\r\nTZID:America/Paramaribo\r\nX-LIC-LOCATION:America/Paramaribo\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:SRT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(164, 'America/Phoenix', NULL, 332654, -1120424, 'BEGIN:VTIMEZONE\r\nTZID:America/Phoenix\r\nX-LIC-LOCATION:America/Phoenix\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0700\r\nTZNAME:MST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(165, 'America/Port-au-Prince', NULL, 183200, -722000, 'BEGIN:VTIMEZONE\r\nTZID:America/Port-au-Prince\r\nX-LIC-LOCATION:America/Port-au-Prince\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(166, 'America/Port_of_Spain', NULL, 103900, -613100, 'BEGIN:VTIMEZONE\r\nTZID:America/Port_of_Spain\r\nX-LIC-LOCATION:America/Port_of_Spain\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(167, 'America/Porto_Velho', NULL, -84600, -635400, 'BEGIN:VTIMEZONE\r\nTZID:America/Porto_Velho\r\nX-LIC-LOCATION:America/Porto_Velho\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(168, 'America/Puerto_Rico', NULL, 182806, -660622, 'BEGIN:VTIMEZONE\r\nTZID:America/Puerto_Rico\r\nX-LIC-LOCATION:America/Puerto_Rico\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(169, 'America/Rainy_River', NULL, 484300, -943400, 'BEGIN:VTIMEZONE\r\nTZID:America/Rainy_River\r\nX-LIC-LOCATION:America/Rainy_River\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(170, 'America/Rankin_Inlet', NULL, 624900, -920459, 'BEGIN:VTIMEZONE\r\nTZID:America/Rankin_Inlet\r\nX-LIC-LOCATION:America/Rankin_Inlet\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(171, 'America/Recife', NULL, -80300, -345400, 'BEGIN:VTIMEZONE\r\nTZID:America/Recife\r\nX-LIC-LOCATION:America/Recife\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:BRT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(172, 'America/Regina', NULL, 502400, -1043900, 'BEGIN:VTIMEZONE\r\nTZID:America/Regina\r\nX-LIC-LOCATION:America/Regina\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(173, 'America/Resolute', NULL, 744144, -944945, 'BEGIN:VTIMEZONE\r\nTZID:America/Resolute\r\nX-LIC-LOCATION:America/Resolute\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(174, 'America/Rio_Branco', NULL, -95800, -674800, 'BEGIN:VTIMEZONE\r\nTZID:America/Rio_Branco\r\nX-LIC-LOCATION:America/Rio_Branco\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(175, 'America/Santa_Isabel', NULL, 301800, -1145200, 'BEGIN:VTIMEZONE\r\nTZID:America/Santa_Isabel\r\nX-LIC-LOCATION:America/Santa_Isabel\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0800\r\nTZNAME:PST\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0800\r\nTZOFFSETTO:-0700\r\nTZNAME:PDT\r\nDTSTART:19700405T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(176, 'America/Santarem', NULL, -22600, -545200, 'BEGIN:VTIMEZONE\r\nTZID:America/Santarem\r\nX-LIC-LOCATION:America/Santarem\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:BRT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(177, 'America/Santiago', NULL, -332700, -704000, 'BEGIN:VTIMEZONE\r\nTZID:America/Santiago\r\nX-LIC-LOCATION:America/Santiago\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0400\r\nTZNAME:CLT\r\nDTSTART:19700426T000000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=4\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0300\r\nTZNAME:CLST\r\nDTSTART:19700906T000000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=9\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(178, 'America/Santo_Domingo', NULL, 182800, -695400, 'BEGIN:VTIMEZONE\r\nTZID:America/Santo_Domingo\r\nX-LIC-LOCATION:America/Santo_Domingo\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(179, 'America/Sao_Paulo', NULL, -233200, -463700, 'BEGIN:VTIMEZONE\r\nTZID:America/Sao_Paulo\r\nX-LIC-LOCATION:America/Sao_Paulo\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0200\r\nTZNAME:BRST\r\nDTSTART:19701018T000000\r\nRRULE:FREQ=YEARLY;BYDAY=3SU;BYMONTH=10\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:BRT\r\nDTSTART:19700215T000000\r\nRRULE:FREQ=YEARLY;BYDAY=3SU;BYMONTH=2\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(180, 'America/Scoresbysund', NULL, 702900, -215800, 'BEGIN:VTIMEZONE\r\nTZID:America/Scoresbysund\r\nX-LIC-LOCATION:America/Scoresbysund\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0100\r\nTZOFFSETTO:+0000\r\nTZNAME:EGST\r\nDTSTART:19700329T000000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:-0100\r\nTZNAME:EGT\r\nDTSTART:19701025T010000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(181, 'America/Shiprock', NULL, 364708, -1084111, 'BEGIN:VTIMEZONE\r\nTZID:America/Shiprock\r\nX-LIC-LOCATION:America/Shiprock\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0600\r\nTZNAME:MDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0700\r\nTZNAME:MST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(182, 'America/Sitka', NULL, 571035, -1351807, 'BEGIN:VTIMEZONE\r\nTZID:America/Sitka\r\nX-LIC-LOCATION:America/Sitka\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0900\r\nTZOFFSETTO:-0800\r\nTZNAME:AKDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0800\r\nTZOFFSETTO:-0900\r\nTZNAME:AKST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(183, 'America/St_Barthelemy', NULL, 175300, -625100, 'BEGIN:VTIMEZONE\r\nTZID:America/St_Barthelemy\r\nX-LIC-LOCATION:America/St_Barthelemy\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(184, 'America/St_Johns', NULL, 473400, -524300, 'BEGIN:VTIMEZONE\r\nTZID:America/St_Johns\r\nX-LIC-LOCATION:America/St_Johns\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0230\r\nTZOFFSETTO:-0330\r\nTZNAME:NST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0330\r\nTZOFFSETTO:-0230\r\nTZNAME:NDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(185, 'America/St_Kitts', NULL, 171800, -624300, 'BEGIN:VTIMEZONE\r\nTZID:America/St_Kitts\r\nX-LIC-LOCATION:America/St_Kitts\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(186, 'America/St_Lucia', NULL, 140100, -610000, 'BEGIN:VTIMEZONE\r\nTZID:America/St_Lucia\r\nX-LIC-LOCATION:America/St_Lucia\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(187, 'America/St_Thomas', NULL, 182100, -645600, 'BEGIN:VTIMEZONE\r\nTZID:America/St_Thomas\r\nX-LIC-LOCATION:America/St_Thomas\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(188, 'America/St_Vincent', NULL, 130900, -611400, 'BEGIN:VTIMEZONE\r\nTZID:America/St_Vincent\r\nX-LIC-LOCATION:America/St_Vincent\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(189, 'America/Swift_Current', NULL, 501700, -1075000, 'BEGIN:VTIMEZONE\r\nTZID:America/Swift_Current\r\nX-LIC-LOCATION:America/Swift_Current\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(190, 'America/Tegucigalpa', NULL, 140600, -871300, 'BEGIN:VTIMEZONE\r\nTZID:America/Tegucigalpa\r\nX-LIC-LOCATION:America/Tegucigalpa\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(191, 'America/Thule', NULL, 763400, -684700, 'BEGIN:VTIMEZONE\r\nTZID:America/Thule\r\nX-LIC-LOCATION:America/Thule\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0300\r\nTZNAME:ADT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(192, 'America/Thunder_Bay', NULL, 482300, -891500, 'BEGIN:VTIMEZONE\r\nTZID:America/Thunder_Bay\r\nX-LIC-LOCATION:America/Thunder_Bay\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(193, 'America/Tijuana', NULL, 323200, -1170100, 'BEGIN:VTIMEZONE\r\nTZID:America/Tijuana\r\nX-LIC-LOCATION:America/Tijuana\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0800\r\nTZOFFSETTO:-0700\r\nTZNAME:PDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0800\r\nTZNAME:PST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(194, 'America/Toronto', NULL, 433900, -792300, 'BEGIN:VTIMEZONE\r\nTZID:America/Toronto\r\nX-LIC-LOCATION:America/Toronto\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0400\r\nTZNAME:EDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0500\r\nTZNAME:EST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(195, 'America/Tortola', NULL, 182700, -643700, 'BEGIN:VTIMEZONE\r\nTZID:America/Tortola\r\nX-LIC-LOCATION:America/Tortola\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(196, 'America/Vancouver', NULL, 491600, -1230700, 'BEGIN:VTIMEZONE\r\nTZID:America/Vancouver\r\nX-LIC-LOCATION:America/Vancouver\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0800\r\nTZOFFSETTO:-0700\r\nTZNAME:PDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0800\r\nTZNAME:PST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(197, 'America/Whitehorse', NULL, 604300, -1350300, 'BEGIN:VTIMEZONE\r\nTZID:America/Whitehorse\r\nX-LIC-LOCATION:America/Whitehorse\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0800\r\nTZOFFSETTO:-0700\r\nTZNAME:PDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0800\r\nTZNAME:PST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(198, 'America/Winnipeg', NULL, 495300, -970900, 'BEGIN:VTIMEZONE\r\nTZID:America/Winnipeg\r\nX-LIC-LOCATION:America/Winnipeg\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:CDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:CST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(199, 'America/Yakutat', NULL, 593249, -1394338, 'BEGIN:VTIMEZONE\r\nTZID:America/Yakutat\r\nX-LIC-LOCATION:America/Yakutat\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0900\r\nTZOFFSETTO:-0800\r\nTZNAME:AKDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0800\r\nTZOFFSETTO:-0900\r\nTZNAME:AKST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(200, 'America/Yellowknife', NULL, 622700, -1142100, 'BEGIN:VTIMEZONE\r\nTZID:America/Yellowknife\r\nX-LIC-LOCATION:America/Yellowknife\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0700\r\nTZOFFSETTO:-0600\r\nTZNAME:MDT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0700\r\nTZNAME:MST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(201, 'Antarctica/Casey', NULL, -661700, 1103100, 'BEGIN:VTIMEZONE\r\nTZID:Antarctica/Casey\r\nX-LIC-LOCATION:Antarctica/Casey\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:WST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(202, 'Antarctica/Davis', NULL, -683500, 775800, 'BEGIN:VTIMEZONE\r\nTZID:Antarctica/Davis\r\nX-LIC-LOCATION:Antarctica/Davis\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0700\r\nTZOFFSETTO:+0700\r\nTZNAME:DAVT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(203, 'Antarctica/DumontDUrville', NULL, -664000, 1400100, 'BEGIN:VTIMEZONE\r\nTZID:Antarctica/DumontDUrville\r\nX-LIC-LOCATION:Antarctica/DumontDUrville\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1000\r\nTZOFFSETTO:+1000\r\nTZNAME:DDUT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(204, 'Antarctica/Macquarie', NULL, -543000, 1585700, 'BEGIN:VTIMEZONE\r\nTZID:Antarctica/Macquarie\r\nX-LIC-LOCATION:Antarctica/Macquarie\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1100\r\nTZNAME:MIST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(205, 'Antarctica/Mawson', NULL, -673600, 625300, 'BEGIN:VTIMEZONE\r\nTZID:Antarctica/Mawson\r\nX-LIC-LOCATION:Antarctica/Mawson\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0500\r\nTZOFFSETTO:+0500\r\nTZNAME:MAWT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(206, 'Antarctica/McMurdo', NULL, -775000, 1663600, 'BEGIN:VTIMEZONE\r\nTZID:Antarctica/McMurdo\r\nX-LIC-LOCATION:Antarctica/McMurdo\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1300\r\nTZNAME:NZDT\r\nDTSTART:19700927T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=9\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1300\r\nTZOFFSETTO:+1200\r\nTZNAME:NZST\r\nDTSTART:19700405T030000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(207, 'Antarctica/Palmer', NULL, -644800, -640600, 'BEGIN:VTIMEZONE\r\nTZID:Antarctica/Palmer\r\nX-LIC-LOCATION:Antarctica/Palmer\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0400\r\nTZNAME:CLT\r\nDTSTART:19700426T000000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=4\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0300\r\nTZNAME:CLST\r\nDTSTART:19700906T000000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=9\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(208, 'Antarctica/Rothera', NULL, -673400, -680800, 'BEGIN:VTIMEZONE\r\nTZID:Antarctica/Rothera\r\nX-LIC-LOCATION:Antarctica/Rothera\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:ROTT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(209, 'Antarctica/South_Pole', NULL, -900000, 0, 'BEGIN:VTIMEZONE\r\nTZID:Antarctica/South_Pole\r\nX-LIC-LOCATION:Antarctica/South_Pole\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1300\r\nTZNAME:NZDT\r\nDTSTART:19700927T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=9\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1300\r\nTZOFFSETTO:+1200\r\nTZNAME:NZST\r\nDTSTART:19700405T030000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(210, 'Antarctica/Syowa', NULL, -690022, 393524, 'BEGIN:VTIMEZONE\r\nTZID:Antarctica/Syowa\r\nX-LIC-LOCATION:Antarctica/Syowa\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:SYOT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(211, 'Antarctica/Vostok', NULL, -782400, 1065400, 'BEGIN:VTIMEZONE\r\nTZID:Antarctica/Vostok\r\nX-LIC-LOCATION:Antarctica/Vostok\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0600\r\nTZOFFSETTO:+0600\r\nTZNAME:VOST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(212, 'Arctic/Longyearbyen', NULL, 780000, 160000, 'BEGIN:VTIMEZONE\r\nTZID:Arctic/Longyearbyen\r\nX-LIC-LOCATION:Arctic/Longyearbyen\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(213, 'Asia/Aden', NULL, 124500, 451200, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Aden\r\nX-LIC-LOCATION:Asia/Aden\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(214, 'Asia/Almaty', NULL, 431500, 765700, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Almaty\r\nX-LIC-LOCATION:Asia/Almaty\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0600\r\nTZOFFSETTO:+0600\r\nTZNAME:ALMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(215, 'Asia/Amman', NULL, 315700, 355600, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Amman\r\nX-LIC-LOCATION:Asia/Amman\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701030T010000\r\nRRULE:FREQ=YEARLY;BYDAY=-1FR;BYMONTH=10\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700326T235959\r\nRRULE:FREQ=YEARLY;BYDAY=-1TH;BYMONTH=3\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(216, 'Asia/Anadyr', NULL, 644500, 1772900, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Anadyr\r\nX-LIC-LOCATION:Asia/Anadyr\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1200\r\nTZNAME:ANAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(217, 'Asia/Aqtau', NULL, 443100, 501600, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Aqtau\r\nX-LIC-LOCATION:Asia/Aqtau\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0500\r\nTZOFFSETTO:+0500\r\nTZNAME:AQTT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(218, 'Asia/Aqtobe', NULL, 501700, 571000, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Aqtobe\r\nX-LIC-LOCATION:Asia/Aqtobe\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0500\r\nTZOFFSETTO:+0500\r\nTZNAME:AQTT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(219, 'Asia/Ashgabat', NULL, 375700, 582300, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Ashgabat\r\nX-LIC-LOCATION:Asia/Ashgabat\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0500\r\nTZOFFSETTO:+0500\r\nTZNAME:TMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(220, 'Asia/Baghdad', NULL, 332100, 442500, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Baghdad\r\nX-LIC-LOCATION:Asia/Baghdad\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(221, 'Asia/Bahrain', NULL, 262300, 503500, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Bahrain\r\nX-LIC-LOCATION:Asia/Bahrain\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(222, 'Asia/Baku', NULL, 402300, 495100, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Baku\r\nX-LIC-LOCATION:Asia/Baku\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0400\r\nTZOFFSETTO:+0500\r\nTZNAME:AZST\r\nDTSTART:19700329T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0500\r\nTZOFFSETTO:+0400\r\nTZNAME:AZT\r\nDTSTART:19701025T050000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(223, 'Asia/Bangkok', NULL, 134500, 1003100, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Bangkok\r\nX-LIC-LOCATION:Asia/Bangkok\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0700\r\nTZOFFSETTO:+0700\r\nTZNAME:ICT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(224, 'Asia/Beirut', NULL, 335300, 353000, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Beirut\r\nX-LIC-LOCATION:Asia/Beirut\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T000000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T000000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(225, 'Asia/Bishkek', NULL, 425400, 743600, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Bishkek\r\nX-LIC-LOCATION:Asia/Bishkek\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0600\r\nTZOFFSETTO:+0600\r\nTZNAME:KGT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(226, 'Asia/Brunei', NULL, 45600, 1145500, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Brunei\r\nX-LIC-LOCATION:Asia/Brunei\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:BNT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(227, 'Asia/Choibalsan', NULL, 480400, 1143000, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Choibalsan\r\nX-LIC-LOCATION:Asia/Choibalsan\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(228, 'Asia/Chongqing', NULL, 293400, 1063500, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Chongqing\r\nX-LIC-LOCATION:Asia/Chongqing\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(229, 'Asia/Colombo', NULL, 65600, 795100, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Colombo\r\nX-LIC-LOCATION:Asia/Colombo\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0530\r\nTZOFFSETTO:+0530\r\nTZNAME:IST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(230, 'Asia/Damascus', NULL, 333000, 361800, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Damascus\r\nX-LIC-LOCATION:Asia/Damascus\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701030T000000\r\nRRULE:FREQ=YEARLY;BYDAY=-1FR;BYMONTH=10\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700327T000000\r\nRRULE:FREQ=YEARLY;BYDAY=-1FR;BYMONTH=3\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(231, 'Asia/Dhaka', NULL, 234300, 902500, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Dhaka\r\nX-LIC-LOCATION:Asia/Dhaka\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0600\r\nTZOFFSETTO:+0600\r\nTZNAME:BDT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(232, 'Asia/Dili', NULL, -83300, 1253500, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Dili\r\nX-LIC-LOCATION:Asia/Dili\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0900\r\nTZOFFSETTO:+0900\r\nTZNAME:TLT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(233, 'Asia/Dubai', NULL, 251800, 551800, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Dubai\r\nX-LIC-LOCATION:Asia/Dubai\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0400\r\nTZOFFSETTO:+0400\r\nTZNAME:GST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(234, 'Asia/Dushanbe', NULL, 383500, 684800, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Dushanbe\r\nX-LIC-LOCATION:Asia/Dushanbe\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0500\r\nTZOFFSETTO:+0500\r\nTZNAME:TJT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(235, 'Asia/Gaza', NULL, 313000, 342800, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Gaza\r\nX-LIC-LOCATION:Asia/Gaza\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:20120329T235959\r\nRRULE:FREQ=YEARLY;BYDAY=-1TH;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:20120921T010000\r\nRRULE:FREQ=YEARLY;BYDAY=FR;BYMONTHDAY=21,22,23,24,25,26,27;BYMONTH=9\r\nEND:STANDARD\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+021752\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19001001T000000\r\nRDATE;VALUE=DATE-TIME:19001001T000000\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EET\r\nDTSTART:19400601T000000\r\nRDATE;VALUE=DATE-TIME:19400601T000000\r\nRDATE;VALUE=DATE-TIME:19430401T020000\r\nRDATE;VALUE=DATE-TIME:19440401T000000\r\nRDATE;VALUE=DATE-TIME:19450416T000000\r\nRDATE;VALUE=DATE-TIME:19460416T020000\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19421101T000000\r\nRDATE;VALUE=DATE-TIME:19421101T000000\r\nRDATE;VALUE=DATE-TIME:19431101T000000\r\nRDATE;VALUE=DATE-TIME:19441101T000000\r\nRDATE;VALUE=DATE-TIME:19451101T020000\r\nRDATE;VALUE=DATE-TIME:19461101T000000\r\nRDATE;VALUE=DATE-TIME:19571001T000000\r\nRDATE;VALUE=DATE-TIME:19581001T000000\r\nRDATE;VALUE=DATE-TIME:19590930T030000\r\nRDATE;VALUE=DATE-TIME:19600930T030000\r\nRDATE;VALUE=DATE-TIME:19610930T030000\r\nRDATE;VALUE=DATE-TIME:19620930T030000\r\nRDATE;VALUE=DATE-TIME:19630930T030000\r\nRDATE;VALUE=DATE-TIME:19640930T030000\r\nRDATE;VALUE=DATE-TIME:19650930T030000\r\nRDATE;VALUE=DATE-TIME:19661001T030000\r\nRDATE;VALUE=DATE-TIME:19960920T010000\r\nRDATE;VALUE=DATE-TIME:19970919T010000\r\nRDATE;VALUE=DATE-TIME:19980918T010000\r\nRDATE;VALUE=DATE-TIME:19991015T000000\r\nRDATE;VALUE=DATE-TIME:20001020T000000\r\nRDATE;VALUE=DATE-TIME:20011019T000000\r\nRDATE;VALUE=DATE-TIME:20021018T000000\r\nRDATE;VALUE=DATE-TIME:20031017T000000\r\nRDATE;VALUE=DATE-TIME:20041001T010000\r\nRDATE;VALUE=DATE-TIME:20051004T020000\r\nRDATE;VALUE=DATE-TIME:20060922T000000\r\nRDATE;VALUE=DATE-TIME:20070913T020000\r\nRDATE;VALUE=DATE-TIME:20080829T000000\r\nRDATE;VALUE=DATE-TIME:20090904T010000\r\nRDATE;VALUE=DATE-TIME:20100811T000000\r\nRDATE;VALUE=DATE-TIME:20110801T000000\r\nEND:STANDARD\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19480515T000000\r\nRDATE;VALUE=DATE-TIME:19480515T000000\r\nRDATE;VALUE=DATE-TIME:19960101T000000\r\nRDATE;VALUE=DATE-TIME:19990101T000000\r\nRDATE;VALUE=DATE-TIME:20080901T000000\r\nRDATE;VALUE=DATE-TIME:20100101T000000\r\nRDATE;VALUE=DATE-TIME:20120101T000000\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19570510T000000\r\nRDATE;VALUE=DATE-TIME:19570510T000000\r\nRDATE;VALUE=DATE-TIME:19580501T000000\r\nRDATE;VALUE=DATE-TIME:19590501T010000\r\nRDATE;VALUE=DATE-TIME:19600501T010000\r\nRDATE;VALUE=DATE-TIME:19610501T010000\r\nRDATE;VALUE=DATE-TIME:19620501T010000\r\nRDATE;VALUE=DATE-TIME:19630501T010000\r\nRDATE;VALUE=DATE-TIME:19640501T010000\r\nRDATE;VALUE=DATE-TIME:19650501T010000\r\nRDATE;VALUE=DATE-TIME:19660501T010000\r\nRDATE;VALUE=DATE-TIME:19670501T010000\r\nRDATE;VALUE=DATE-TIME:19960405T000000\r\nRDATE;VALUE=DATE-TIME:19970404T000000\r\nRDATE;VALUE=DATE-TIME:19980403T000000\r\nRDATE;VALUE=DATE-TIME:19990416T000000\r\nRDATE;VALUE=DATE-TIME:20000421T000000\r\nRDATE;VALUE=DATE-TIME:20010420T000000\r\nRDATE;VALUE=DATE-TIME:20020419T000000\r\nRDATE;VALUE=DATE-TIME:20030418T000000\r\nRDATE;VALUE=DATE-TIME:20040416T000000\r\nRDATE;VALUE=DATE-TIME:20050415T000000\r\nRDATE;VALUE=DATE-TIME:20060401T000000\r\nRDATE;VALUE=DATE-TIME:20070401T000000\r\nRDATE;VALUE=DATE-TIME:20080328T000000\r\nRDATE;VALUE=DATE-TIME:20090327T000000\r\nRDATE;VALUE=DATE-TIME:20100327T000100\r\nRDATE;VALUE=DATE-TIME:20110401T000100\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:IST\r\nDTSTART:19670605T000000\r\nRDATE;VALUE=DATE-TIME:19670605T000000\r\nRDATE;VALUE=DATE-TIME:19741013T000000\r\nRDATE;VALUE=DATE-TIME:19750831T000000\r\nRDATE;VALUE=DATE-TIME:19850915T000000\r\nRDATE;VALUE=DATE-TIME:19860907T000000\r\nRDATE;VALUE=DATE-TIME:19870913T000000\r\nRDATE;VALUE=DATE-TIME:19880903T000000\r\nRDATE;VALUE=DATE-TIME:19890903T000000\r\nRDATE;VALUE=DATE-TIME:19900826T000000\r\nRDATE;VALUE=DATE-TIME:19910901T000000\r\nRDATE;VALUE=DATE-TIME:19920906T000000\r\nRDATE;VALUE=DATE-TIME:19930905T000000\r\nRDATE;VALUE=DATE-TIME:19940828T000000\r\nRDATE;VALUE=DATE-TIME:19950903T000000\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:IDT\r\nDTSTART:19740707T000000\r\nRDATE;VALUE=DATE-TIME:19740707T000000\r\nRDATE;VALUE=DATE-TIME:19750420T000000\r\nRDATE;VALUE=DATE-TIME:19850414T000000\r\nRDATE;VALUE=DATE-TIME:19860518T000000\r\nRDATE;VALUE=DATE-TIME:19870415T000000\r\nRDATE;VALUE=DATE-TIME:19880409T000000\r\nRDATE;VALUE=DATE-TIME:19890430T000000\r\nRDATE;VALUE=DATE-TIME:19900325T000000\r\nRDATE;VALUE=DATE-TIME:19910324T000000\r\nRDATE;VALUE=DATE-TIME:19920329T000000\r\nRDATE;VALUE=DATE-TIME:19930402T000000\r\nRDATE;VALUE=DATE-TIME:19940401T000000\r\nRDATE;VALUE=DATE-TIME:19950331T000000\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(236, 'Asia/Harbin', NULL, 454500, 1264100, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Harbin\r\nX-LIC-LOCATION:Asia/Harbin\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(237, 'Asia/Hebron', NULL, 313200, 350542, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Hebron\r\nX-LIC-LOCATION:Asia/Hebron\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700326T235959\r\nRRULE:FREQ=YEARLY;BYDAY=-1TH;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(238, 'Asia/Ho_Chi_Minh', NULL, 104500, 1064000, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Ho_Chi_Minh\r\nX-LIC-LOCATION:Asia/Ho_Chi_Minh\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0700\r\nTZOFFSETTO:+0700\r\nTZNAME:ICT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(239, 'Asia/Hong_Kong', NULL, 221700, 1140900, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Hong_Kong\r\nX-LIC-LOCATION:Asia/Hong_Kong\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:HKT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(240, 'Asia/Hovd', NULL, 480100, 913900, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Hovd\r\nX-LIC-LOCATION:Asia/Hovd\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0700\r\nTZOFFSETTO:+0700\r\nTZNAME:HOVT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(241, 'Asia/Irkutsk', NULL, 521600, 1042000, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Irkutsk\r\nX-LIC-LOCATION:Asia/Irkutsk\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0900\r\nTZOFFSETTO:+0900\r\nTZNAME:IRKT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(242, 'Asia/Istanbul', NULL, 410100, 285800, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Istanbul\r\nX-LIC-LOCATION:Asia/Istanbul\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(243, 'Asia/Jakarta', NULL, -61000, 1064800, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Jakarta\r\nX-LIC-LOCATION:Asia/Jakarta\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0700\r\nTZOFFSETTO:+0700\r\nTZNAME:WIT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(244, 'Asia/Jayapura', NULL, -23200, 1404200, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Jayapura\r\nX-LIC-LOCATION:Asia/Jayapura\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0900\r\nTZOFFSETTO:+0900\r\nTZNAME:EIT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(245, 'Asia/Jerusalem', NULL, 314600, 351400, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Jerusalem\r\nX-LIC-LOCATION:Asia/Jerusalem\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:IDT\r\nDTSTART:20130329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=FR;BYMONTHDAY=23,24,25,26,27,28,29;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:IST\r\nDTSTART:20281008T020000\r\nRRULE:FREQ=YEARLY;BYDAY=SU;BYMONTHDAY=2,3,4,5,6,7,8;BYMONTH=10\r\nEND:STANDARD\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+022056\r\nTZOFFSETTO:+022040\r\nTZNAME:JMT\r\nDTSTART:18800101T000000\r\nRDATE;VALUE=DATE-TIME:18800101T000000\r\nEND:STANDARD\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+022040\r\nTZOFFSETTO:+0200\r\nTZNAME:IST\r\nDTSTART:19180101T000000\r\nRDATE;VALUE=DATE-TIME:19180101T000000\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:IDT\r\nDTSTART:19400601T000000\r\nRDATE;VALUE=DATE-TIME:19400601T000000\r\nRDATE;VALUE=DATE-TIME:19430401T020000\r\nRDATE;VALUE=DATE-TIME:19440401T000000\r\nRDATE;VALUE=DATE-TIME:19450416T000000\r\nRDATE;VALUE=DATE-TIME:19460416T020000\r\nRDATE;VALUE=DATE-TIME:19490501T000000\r\nRDATE;VALUE=DATE-TIME:19500416T000000\r\nRDATE;VALUE=DATE-TIME:19510401T000000\r\nRDATE;VALUE=DATE-TIME:19520420T020000\r\nRDATE;VALUE=DATE-TIME:19530412T020000\r\nRDATE;VALUE=DATE-TIME:19540613T000000\r\nRDATE;VALUE=DATE-TIME:19550611T020000\r\nRDATE;VALUE=DATE-TIME:19560603T000000\r\nRDATE;VALUE=DATE-TIME:19570429T020000\r\nRDATE;VALUE=DATE-TIME:19740707T000000\r\nRDATE;VALUE=DATE-TIME:19750420T000000\r\nRDATE;VALUE=DATE-TIME:19850414T000000\r\nRDATE;VALUE=DATE-TIME:19860518T000000\r\nRDATE;VALUE=DATE-TIME:19870415T000000\r\nRDATE;VALUE=DATE-TIME:19880409T000000\r\nRDATE;VALUE=DATE-TIME:19890430T000000\r\nRDATE;VALUE=DATE-TIME:19900325T000000\r\nRDATE;VALUE=DATE-TIME:19910324T000000\r\nRDATE;VALUE=DATE-TIME:19920329T000000\r\nRDATE;VALUE=DATE-TIME:19930402T000000\r\nRDATE;VALUE=DATE-TIME:19940401T000000\r\nRDATE;VALUE=DATE-TIME:19950331T000000\r\nRDATE;VALUE=DATE-TIME:19960315T000000\r\nRDATE;VALUE=DATE-TIME:19970321T000000\r\nRDATE;VALUE=DATE-TIME:19980320T000000\r\nRDATE;VALUE=DATE-TIME:19990402T020000\r\nRDATE;VALUE=DATE-TIME:20000414T020000\r\nRDATE;VALUE=DATE-TIME:20010409T010000\r\nRDATE;VALUE=DATE-TIME:20020329T010000\r\nRDATE;VALUE=DATE-TIME:20030328T010000\r\nRDATE;VALUE=DATE-TIME:20040407T010000\r\nRDATE;VALUE=DATE-TIME:20050401T020000\r\nRDATE;VALUE=DATE-TIME:20060331T020000\r\nRDATE;VALUE=DATE-TIME:20070330T020000\r\nRDATE;VALUE=DATE-TIME:20080328T020000\r\nRDATE;VALUE=DATE-TIME:20090327T020000\r\nRDATE;VALUE=DATE-TIME:20100326T020000\r\nRDATE;VALUE=DATE-TIME:20110401T020000\r\nRDATE;VALUE=DATE-TIME:20120330T020000\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:IST\r\nDTSTART:19421101T000000\r\nRDATE;VALUE=DATE-TIME:19421101T000000\r\nRDATE;VALUE=DATE-TIME:19431101T000000\r\nRDATE;VALUE=DATE-TIME:19441101T000000\r\nRDATE;VALUE=DATE-TIME:19451101T020000\r\nRDATE;VALUE=DATE-TIME:19461101T000000\r\nRDATE;VALUE=DATE-TIME:19481101T020000\r\nRDATE;VALUE=DATE-TIME:19491101T020000\r\nRDATE;VALUE=DATE-TIME:19500915T030000\r\nRDATE;VALUE=DATE-TIME:19511111T030000\r\nRDATE;VALUE=DATE-TIME:19521019T030000\r\nRDATE;VALUE=DATE-TIME:19530913T030000\r\nRDATE;VALUE=DATE-TIME:19540912T000000\r\nRDATE;VALUE=DATE-TIME:19550911T000000\r\nRDATE;VALUE=DATE-TIME:19560930T030000\r\nRDATE;VALUE=DATE-TIME:19570922T000000\r\nRDATE;VALUE=DATE-TIME:19741013T000000\r\nRDATE;VALUE=DATE-TIME:19750831T000000\r\nRDATE;VALUE=DATE-TIME:19850915T000000\r\nRDATE;VALUE=DATE-TIME:19860907T000000\r\nRDATE;VALUE=DATE-TIME:19870913T000000\r\nRDATE;VALUE=DATE-TIME:19880903T000000\r\nRDATE;VALUE=DATE-TIME:19890903T000000\r\nRDATE;VALUE=DATE-TIME:19900826T000000\r\nRDATE;VALUE=DATE-TIME:19910901T000000\r\nRDATE;VALUE=DATE-TIME:19920906T000000\r\nRDATE;VALUE=DATE-TIME:19930905T000000\r\nRDATE;VALUE=DATE-TIME:19940828T000000\r\nRDATE;VALUE=DATE-TIME:19950903T000000\r\nRDATE;VALUE=DATE-TIME:19960916T000000\r\nRDATE;VALUE=DATE-TIME:19970914T000000\r\nRDATE;VALUE=DATE-TIME:19980906T000000\r\nRDATE;VALUE=DATE-TIME:19990903T020000\r\nRDATE;VALUE=DATE-TIME:20001006T010000\r\nRDATE;VALUE=DATE-TIME:20010924T010000\r\nRDATE;VALUE=DATE-TIME:20021007T010000\r\nRDATE;VALUE=DATE-TIME:20031003T010000\r\nRDATE;VALUE=DATE-TIME:20040922T010000\r\nRDATE;VALUE=DATE-TIME:20051009T020000\r\nRDATE;VALUE=DATE-TIME:20061001T020000\r\nRDATE;VALUE=DATE-TIME:20070916T020000\r\nRDATE;VALUE=DATE-TIME:20081005T020000\r\nRDATE;VALUE=DATE-TIME:20090927T020000\r\nRDATE;VALUE=DATE-TIME:20100912T020000\r\nRDATE;VALUE=DATE-TIME:20111002T020000\r\nRDATE;VALUE=DATE-TIME:20120923T020000\r\nRDATE;VALUE=DATE-TIME:20131006T020000\r\nRDATE;VALUE=DATE-TIME:20141005T020000\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0400\r\nTZNAME:IDDT\r\nDTSTART:19480523T000000\r\nRDATE;VALUE=DATE-TIME:19480523T000000\r\nEND:DAYLIGHT\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0400\r\nTZOFFSETTO:+0300\r\nTZNAME:IDT\r\nDTSTART:19480901T000000\r\nRDATE;VALUE=DATE-TIME:19480901T000000\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0200\r\nTZNAME:IST\r\nDTSTART:20151004T020000\r\nRDATE;VALUE=DATE-TIME:20151004T020000\r\nRDATE;VALUE=DATE-TIME:20161002T020000\r\nRDATE;VALUE=DATE-TIME:20171008T020000\r\nRDATE;VALUE=DATE-TIME:20181007T020000\r\nRDATE;VALUE=DATE-TIME:20191006T020000\r\nRDATE;VALUE=DATE-TIME:20201004T020000\r\nRDATE;VALUE=DATE-TIME:20211003T020000\r\nRDATE;VALUE=DATE-TIME:20221002T020000\r\nRDATE;VALUE=DATE-TIME:20231008T020000\r\nRDATE;VALUE=DATE-TIME:20241006T020000\r\nRDATE;VALUE=DATE-TIME:20251005T020000\r\nRDATE;VALUE=DATE-TIME:20261004T020000\r\nRDATE;VALUE=DATE-TIME:20271004T020000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(246, 'Asia/Kabul', NULL, 343100, 691200, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Kabul\r\nX-LIC-LOCATION:Asia/Kabul\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0430\r\nTZOFFSETTO:+0430\r\nTZNAME:AFT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(247, 'Asia/Kamchatka', NULL, 530100, 1583900, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Kamchatka\r\nX-LIC-LOCATION:Asia/Kamchatka\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1200\r\nTZNAME:PETT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(248, 'Asia/Karachi', NULL, 245200, 670300, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Karachi\r\nX-LIC-LOCATION:Asia/Karachi\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0500\r\nTZOFFSETTO:+0500\r\nTZNAME:PKT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(249, 'Asia/Kashgar', NULL, 392900, 755900, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Kashgar\r\nX-LIC-LOCATION:Asia/Kashgar\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(250, 'Asia/Kathmandu', NULL, 274300, 851900, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Kathmandu\r\nX-LIC-LOCATION:Asia/Kathmandu\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0545\r\nTZOFFSETTO:+0545\r\nTZNAME:NPT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(251, 'Asia/Khandyga', NULL, 623923, 1353314, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Khandyga\r\nX-LIC-LOCATION:Asia/Khandyga\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1000\r\nTZOFFSETTO:+1000\r\nTZNAME:YAKT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(252, 'Asia/Kolkata', NULL, 223200, 882200, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Kolkata\r\nX-LIC-LOCATION:Asia/Kolkata\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0530\r\nTZOFFSETTO:+0530\r\nTZNAME:IST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(253, 'Asia/Krasnoyarsk', NULL, 560100, 925000, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Krasnoyarsk\r\nX-LIC-LOCATION:Asia/Krasnoyarsk\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:KRAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(254, 'Asia/Kuala_Lumpur', NULL, 31000, 1014200, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Kuala_Lumpur\r\nX-LIC-LOCATION:Asia/Kuala_Lumpur\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:MYT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(255, 'Asia/Kuching', NULL, 13300, 1102000, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Kuching\r\nX-LIC-LOCATION:Asia/Kuching\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:MYT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(256, 'Asia/Kuwait', NULL, 292000, 475900, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Kuwait\r\nX-LIC-LOCATION:Asia/Kuwait\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(257, 'Asia/Macau', NULL, 221400, 1133500, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Macau\r\nX-LIC-LOCATION:Asia/Macau\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(258, 'Asia/Magadan', NULL, 593400, 1504800, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Magadan\r\nX-LIC-LOCATION:Asia/Magadan\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1200\r\nTZNAME:MAGT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(259, 'Asia/Makassar', NULL, -50700, 1192400, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Makassar\r\nX-LIC-LOCATION:Asia/Makassar\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:CIT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(260, 'Asia/Manila', NULL, 143500, 1210000, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Manila\r\nX-LIC-LOCATION:Asia/Manila\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:PHT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(261, 'Asia/Muscat', NULL, 233600, 583500, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Muscat\r\nX-LIC-LOCATION:Asia/Muscat\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0400\r\nTZOFFSETTO:+0400\r\nTZNAME:GST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(262, 'Asia/Nicosia', NULL, 351000, 332200, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Nicosia\r\nX-LIC-LOCATION:Asia/Nicosia\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(263, 'Asia/Novokuznetsk', NULL, 534500, 870700, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Novokuznetsk\r\nX-LIC-LOCATION:Asia/Novokuznetsk\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0700\r\nTZOFFSETTO:+0700\r\nTZNAME:NOVT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(264, 'Asia/Novosibirsk', NULL, 550200, 825500, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Novosibirsk\r\nX-LIC-LOCATION:Asia/Novosibirsk\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0700\r\nTZOFFSETTO:+0700\r\nTZNAME:NOVT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(265, 'Asia/Omsk', NULL, 550000, 732400, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Omsk\r\nX-LIC-LOCATION:Asia/Omsk\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0700\r\nTZOFFSETTO:+0700\r\nTZNAME:OMST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(266, 'Asia/Oral', NULL, 511300, 512100, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Oral\r\nX-LIC-LOCATION:Asia/Oral\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0500\r\nTZOFFSETTO:+0500\r\nTZNAME:ORAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(267, 'Asia/Phnom_Penh', NULL, 113300, 1045500, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Phnom_Penh\r\nX-LIC-LOCATION:Asia/Phnom_Penh\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0700\r\nTZOFFSETTO:+0700\r\nTZNAME:ICT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'); +INSERT INTO `egw_cal_timezones` (`tz_id`, `tz_tzid`, `tz_alias`, `tz_latitude`, `tz_longitude`, `tz_component`) VALUES +(268, 'Asia/Pontianak', NULL, 200, 1092000, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Pontianak\r\nX-LIC-LOCATION:Asia/Pontianak\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0700\r\nTZOFFSETTO:+0700\r\nTZNAME:WIT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(269, 'Asia/Pyongyang', NULL, 390100, 1254500, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Pyongyang\r\nX-LIC-LOCATION:Asia/Pyongyang\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0900\r\nTZOFFSETTO:+0900\r\nTZNAME:KST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(270, 'Asia/Qatar', NULL, 251700, 513200, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Qatar\r\nX-LIC-LOCATION:Asia/Qatar\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(271, 'Asia/Qyzylorda', NULL, 444800, 652800, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Qyzylorda\r\nX-LIC-LOCATION:Asia/Qyzylorda\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0600\r\nTZOFFSETTO:+0600\r\nTZNAME:QYZT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(272, 'Asia/Rangoon', NULL, 164700, 961000, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Rangoon\r\nX-LIC-LOCATION:Asia/Rangoon\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0630\r\nTZOFFSETTO:+0630\r\nTZNAME:MMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(273, 'Asia/Riyadh', NULL, 243800, 464300, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Riyadh\r\nX-LIC-LOCATION:Asia/Riyadh\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:AST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(274, 'Asia/Sakhalin', NULL, 465800, 1424200, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Sakhalin\r\nX-LIC-LOCATION:Asia/Sakhalin\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1100\r\nTZNAME:SAKT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(275, 'Asia/Samarkand', NULL, 394000, 664800, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Samarkand\r\nX-LIC-LOCATION:Asia/Samarkand\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0500\r\nTZOFFSETTO:+0500\r\nTZNAME:UZT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(276, 'Asia/Seoul', NULL, 373300, 1265800, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Seoul\r\nX-LIC-LOCATION:Asia/Seoul\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0900\r\nTZOFFSETTO:+0900\r\nTZNAME:KST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(277, 'Asia/Shanghai', NULL, 311400, 1212800, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Shanghai\r\nX-LIC-LOCATION:Asia/Shanghai\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(278, 'Asia/Singapore', NULL, 11700, 1035100, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Singapore\r\nX-LIC-LOCATION:Asia/Singapore\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:SGT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(279, 'Asia/Taipei', NULL, 250300, 1213000, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Taipei\r\nX-LIC-LOCATION:Asia/Taipei\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(280, 'Asia/Tashkent', NULL, 412000, 691800, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Tashkent\r\nX-LIC-LOCATION:Asia/Tashkent\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0500\r\nTZOFFSETTO:+0500\r\nTZNAME:UZT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(281, 'Asia/Tbilisi', NULL, 414300, 444900, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Tbilisi\r\nX-LIC-LOCATION:Asia/Tbilisi\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0400\r\nTZOFFSETTO:+0400\r\nTZNAME:GET\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(282, 'Asia/Tehran', NULL, 354000, 512600, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Tehran\r\nX-LIC-LOCATION:Asia/Tehran\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0330\r\nTZOFFSETTO:+0330\r\nTZNAME:IRST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(283, 'Asia/Thimphu', NULL, 272800, 893900, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Thimphu\r\nX-LIC-LOCATION:Asia/Thimphu\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0600\r\nTZOFFSETTO:+0600\r\nTZNAME:BTT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(284, 'Asia/Tokyo', NULL, 353916, 1394441, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Tokyo\r\nX-LIC-LOCATION:Asia/Tokyo\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0900\r\nTZOFFSETTO:+0900\r\nTZNAME:JST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(285, 'Asia/Ulaanbaatar', NULL, 475500, 1065300, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Ulaanbaatar\r\nX-LIC-LOCATION:Asia/Ulaanbaatar\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:ULAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(286, 'Asia/Urumqi', NULL, 434800, 873500, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Urumqi\r\nX-LIC-LOCATION:Asia/Urumqi\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(287, 'Asia/Ust-Nera', NULL, 643337, 1431336, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Ust-Nera\r\nX-LIC-LOCATION:Asia/Ust-Nera\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1100\r\nTZNAME:VLAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(288, 'Asia/Vientiane', NULL, 175800, 1023600, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Vientiane\r\nX-LIC-LOCATION:Asia/Vientiane\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0700\r\nTZOFFSETTO:+0700\r\nTZNAME:ICT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(289, 'Asia/Vladivostok', NULL, 431000, 1315600, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Vladivostok\r\nX-LIC-LOCATION:Asia/Vladivostok\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1100\r\nTZNAME:VLAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(290, 'Asia/Yakutsk', NULL, 620000, 1294000, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Yakutsk\r\nX-LIC-LOCATION:Asia/Yakutsk\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1000\r\nTZOFFSETTO:+1000\r\nTZNAME:YAKT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(291, 'Asia/Yekaterinburg', NULL, 565100, 603600, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Yekaterinburg\r\nX-LIC-LOCATION:Asia/Yekaterinburg\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0600\r\nTZOFFSETTO:+0600\r\nTZNAME:YEKT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(292, 'Asia/Yerevan', NULL, 401100, 443000, 'BEGIN:VTIMEZONE\r\nTZID:Asia/Yerevan\r\nX-LIC-LOCATION:Asia/Yerevan\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0400\r\nTZOFFSETTO:+0400\r\nTZNAME:AMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(293, 'Atlantic/Azores', NULL, 374400, -254000, 'BEGIN:VTIMEZONE\r\nTZID:Atlantic/Azores\r\nX-LIC-LOCATION:Atlantic/Azores\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0100\r\nTZOFFSETTO:+0000\r\nTZNAME:AZOST\r\nDTSTART:19700329T000000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:-0100\r\nTZNAME:AZOT\r\nDTSTART:19701025T010000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(294, 'Atlantic/Bermuda', NULL, 321700, -644600, 'BEGIN:VTIMEZONE\r\nTZID:Atlantic/Bermuda\r\nX-LIC-LOCATION:Atlantic/Bermuda\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0400\r\nTZOFFSETTO:-0300\r\nTZNAME:ADT\r\nDTSTART:19700308T020000\r\nRRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0400\r\nTZNAME:AST\r\nDTSTART:19701101T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(295, 'Atlantic/Canary', NULL, 280600, -152400, 'BEGIN:VTIMEZONE\r\nTZID:Atlantic/Canary\r\nX-LIC-LOCATION:Atlantic/Canary\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0100\r\nTZNAME:WEST\r\nDTSTART:19700329T010000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0000\r\nTZNAME:WET\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(296, 'Atlantic/Cape_Verde', NULL, 145500, -233100, 'BEGIN:VTIMEZONE\r\nTZID:Atlantic/Cape_Verde\r\nX-LIC-LOCATION:Atlantic/Cape_Verde\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0100\r\nTZOFFSETTO:-0100\r\nTZNAME:CVT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(297, 'Atlantic/Faroe', NULL, 620100, -64600, 'BEGIN:VTIMEZONE\r\nTZID:Atlantic/Faroe\r\nX-LIC-LOCATION:Atlantic/Faroe\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0100\r\nTZNAME:WEST\r\nDTSTART:19700329T010000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0000\r\nTZNAME:WET\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(298, 'Atlantic/Madeira', NULL, 323800, -165400, 'BEGIN:VTIMEZONE\r\nTZID:Atlantic/Madeira\r\nX-LIC-LOCATION:Atlantic/Madeira\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0100\r\nTZNAME:WEST\r\nDTSTART:19700329T010000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0000\r\nTZNAME:WET\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(299, 'Atlantic/Reykjavik', NULL, 640900, -215100, 'BEGIN:VTIMEZONE\r\nTZID:Atlantic/Reykjavik\r\nX-LIC-LOCATION:Atlantic/Reykjavik\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(300, 'Atlantic/South_Georgia', NULL, -541600, -363200, 'BEGIN:VTIMEZONE\r\nTZID:Atlantic/South_Georgia\r\nX-LIC-LOCATION:Atlantic/South_Georgia\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0200\r\nTZOFFSETTO:-0200\r\nTZNAME:GST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(301, 'Atlantic/St_Helena', NULL, -155500, -54200, 'BEGIN:VTIMEZONE\r\nTZID:Atlantic/St_Helena\r\nX-LIC-LOCATION:Atlantic/St_Helena\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(302, 'Atlantic/Stanley', NULL, -514200, -575100, 'BEGIN:VTIMEZONE\r\nTZID:Atlantic/Stanley\r\nX-LIC-LOCATION:Atlantic/Stanley\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0300\r\nTZOFFSETTO:-0300\r\nTZNAME:FKST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(303, 'Australia/Adelaide', NULL, -345500, 1383500, 'BEGIN:VTIMEZONE\r\nTZID:Australia/Adelaide\r\nX-LIC-LOCATION:Australia/Adelaide\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1030\r\nTZOFFSETTO:+0930\r\nTZNAME:CST\r\nDTSTART:19700405T030000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0930\r\nTZOFFSETTO:+1030\r\nTZNAME:CST\r\nDTSTART:19701004T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=10\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(304, 'Australia/Brisbane', NULL, -272800, 1530200, 'BEGIN:VTIMEZONE\r\nTZID:Australia/Brisbane\r\nX-LIC-LOCATION:Australia/Brisbane\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1000\r\nTZOFFSETTO:+1000\r\nTZNAME:EST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(305, 'Australia/Broken_Hill', NULL, -315700, 1412700, 'BEGIN:VTIMEZONE\r\nTZID:Australia/Broken_Hill\r\nX-LIC-LOCATION:Australia/Broken_Hill\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1030\r\nTZOFFSETTO:+0930\r\nTZNAME:CST\r\nDTSTART:19700405T030000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0930\r\nTZOFFSETTO:+1030\r\nTZNAME:CST\r\nDTSTART:19701004T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=10\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(306, 'Australia/Currie', NULL, -395600, 1435200, 'BEGIN:VTIMEZONE\r\nTZID:Australia/Currie\r\nX-LIC-LOCATION:Australia/Currie\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+1000\r\nTZOFFSETTO:+1100\r\nTZNAME:EST\r\nDTSTART:19701004T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=10\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1000\r\nTZNAME:EST\r\nDTSTART:19700405T030000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(307, 'Australia/Darwin', NULL, -122800, 1305000, 'BEGIN:VTIMEZONE\r\nTZID:Australia/Darwin\r\nX-LIC-LOCATION:Australia/Darwin\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0930\r\nTZOFFSETTO:+0930\r\nTZNAME:CST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(308, 'Australia/Eucla', NULL, -314300, 1285200, 'BEGIN:VTIMEZONE\r\nTZID:Australia/Eucla\r\nX-LIC-LOCATION:Australia/Eucla\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0845\r\nTZOFFSETTO:+0845\r\nTZNAME:CWST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(309, 'Australia/Hobart', NULL, -425300, 1471900, 'BEGIN:VTIMEZONE\r\nTZID:Australia/Hobart\r\nX-LIC-LOCATION:Australia/Hobart\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+1000\r\nTZOFFSETTO:+1100\r\nTZNAME:EST\r\nDTSTART:19701004T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=10\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1000\r\nTZNAME:EST\r\nDTSTART:19700405T030000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(310, 'Australia/Lindeman', NULL, -201600, 1490000, 'BEGIN:VTIMEZONE\r\nTZID:Australia/Lindeman\r\nX-LIC-LOCATION:Australia/Lindeman\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1000\r\nTZOFFSETTO:+1000\r\nTZNAME:EST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(311, 'Australia/Lord_Howe', NULL, -313300, 1590500, 'BEGIN:VTIMEZONE\r\nTZID:Australia/Lord_Howe\r\nX-LIC-LOCATION:Australia/Lord_Howe\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1030\r\nTZNAME:LHST\r\nDTSTART:19700405T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+1030\r\nTZOFFSETTO:+1100\r\nTZNAME:LHST\r\nDTSTART:19701004T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=10\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(312, 'Australia/Melbourne', NULL, -374900, 1445800, 'BEGIN:VTIMEZONE\r\nTZID:Australia/Melbourne\r\nX-LIC-LOCATION:Australia/Melbourne\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1000\r\nTZNAME:EST\r\nDTSTART:19700405T030000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+1000\r\nTZOFFSETTO:+1100\r\nTZNAME:EST\r\nDTSTART:19701004T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=10\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(313, 'Australia/Perth', NULL, -315700, 1155100, 'BEGIN:VTIMEZONE\r\nTZID:Australia/Perth\r\nX-LIC-LOCATION:Australia/Perth\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0800\r\nTZOFFSETTO:+0800\r\nTZNAME:WST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(314, 'Australia/Sydney', NULL, -335200, 1511300, 'BEGIN:VTIMEZONE\r\nTZID:Australia/Sydney\r\nX-LIC-LOCATION:Australia/Sydney\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1000\r\nTZNAME:EST\r\nDTSTART:19700405T030000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+1000\r\nTZOFFSETTO:+1100\r\nTZNAME:EST\r\nDTSTART:19701004T020000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=10\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(315, 'Europe/Amsterdam', NULL, 522200, 45400, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Amsterdam\r\nX-LIC-LOCATION:Europe/Amsterdam\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(316, 'Europe/Andorra', NULL, 423000, 13100, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Andorra\r\nX-LIC-LOCATION:Europe/Andorra\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(317, 'Europe/Athens', NULL, 375800, 234300, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Athens\r\nX-LIC-LOCATION:Europe/Athens\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(318, 'Europe/Belgrade', NULL, 445000, 203000, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Belgrade\r\nX-LIC-LOCATION:Europe/Belgrade\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(319, 'Europe/Berlin', NULL, 523000, 132200, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Berlin\r\nX-LIC-LOCATION:Europe/Berlin\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(320, 'Europe/Bratislava', NULL, 480900, 170700, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Bratislava\r\nX-LIC-LOCATION:Europe/Bratislava\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(321, 'Europe/Brussels', NULL, 505000, 42000, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Brussels\r\nX-LIC-LOCATION:Europe/Brussels\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(322, 'Europe/Bucharest', NULL, 442600, 260600, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Bucharest\r\nX-LIC-LOCATION:Europe/Bucharest\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(323, 'Europe/Budapest', NULL, 473000, 190500, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Budapest\r\nX-LIC-LOCATION:Europe/Budapest\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(324, 'Europe/Busingen', NULL, 474200, 84100, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Busingen\r\nX-LIC-LOCATION:Europe/Busingen\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(325, 'Europe/Chisinau', NULL, 470000, 285000, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Chisinau\r\nX-LIC-LOCATION:Europe/Chisinau\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(326, 'Europe/Copenhagen', NULL, 554000, 123500, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Copenhagen\r\nX-LIC-LOCATION:Europe/Copenhagen\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(327, 'Europe/Dublin', NULL, 532000, -61500, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Dublin\r\nX-LIC-LOCATION:Europe/Dublin\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0100\r\nTZNAME:IST\r\nDTSTART:19700329T010000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(328, 'Europe/Gibraltar', NULL, 360800, -52100, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Gibraltar\r\nX-LIC-LOCATION:Europe/Gibraltar\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(329, 'Europe/Guernsey', NULL, 492700, -23200, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Guernsey\r\nX-LIC-LOCATION:Europe/Guernsey\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0100\r\nTZNAME:BST\r\nDTSTART:19700329T010000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(330, 'Europe/Helsinki', NULL, 601000, 245800, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Helsinki\r\nX-LIC-LOCATION:Europe/Helsinki\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(331, 'Europe/Isle_of_Man', NULL, 540900, -42800, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Isle_of_Man\r\nX-LIC-LOCATION:Europe/Isle_of_Man\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0100\r\nTZNAME:BST\r\nDTSTART:19700329T010000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(332, 'Europe/Istanbul', NULL, 410100, 285800, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Istanbul\r\nX-LIC-LOCATION:Europe/Istanbul\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(333, 'Europe/Jersey', NULL, 491200, -20700, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Jersey\r\nX-LIC-LOCATION:Europe/Jersey\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0100\r\nTZNAME:BST\r\nDTSTART:19700329T010000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(334, 'Europe/Kaliningrad', NULL, 544300, 203000, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Kaliningrad\r\nX-LIC-LOCATION:Europe/Kaliningrad\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:FET\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(335, 'Europe/Kiev', NULL, 502600, 303100, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Kiev\r\nX-LIC-LOCATION:Europe/Kiev\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(336, 'Europe/Lisbon', NULL, 384300, -90800, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Lisbon\r\nX-LIC-LOCATION:Europe/Lisbon\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0000\r\nTZNAME:WET\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0100\r\nTZNAME:WEST\r\nDTSTART:19700329T010000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(337, 'Europe/Ljubljana', NULL, 460300, 143100, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Ljubljana\r\nX-LIC-LOCATION:Europe/Ljubljana\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(338, 'Europe/London', NULL, 513030, 731, 'BEGIN:VTIMEZONE\r\nTZID:Europe/London\r\nX-LIC-LOCATION:Europe/London\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0100\r\nTZNAME:BST\r\nDTSTART:19700329T010000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0000\r\nTZNAME:GMT\r\nDTSTART:19701025T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(339, 'Europe/Luxembourg', NULL, 493600, 60900, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Luxembourg\r\nX-LIC-LOCATION:Europe/Luxembourg\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(340, 'Europe/Madrid', NULL, 402400, -34100, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Madrid\r\nX-LIC-LOCATION:Europe/Madrid\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(341, 'Europe/Malta', NULL, 355400, 143100, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Malta\r\nX-LIC-LOCATION:Europe/Malta\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(342, 'Europe/Mariehamn', NULL, 600600, 195700, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Mariehamn\r\nX-LIC-LOCATION:Europe/Mariehamn\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(343, 'Europe/Minsk', NULL, 535400, 273400, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Minsk\r\nX-LIC-LOCATION:Europe/Minsk\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:FET\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(344, 'Europe/Monaco', NULL, 434200, 72300, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Monaco\r\nX-LIC-LOCATION:Europe/Monaco\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(345, 'Europe/Moscow', NULL, 554500, 373500, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Moscow\r\nX-LIC-LOCATION:Europe/Moscow\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0400\r\nTZOFFSETTO:+0400\r\nTZNAME:MSK\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(346, 'Europe/Nicosia', NULL, 351000, 332200, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Nicosia\r\nX-LIC-LOCATION:Europe/Nicosia\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(347, 'Europe/Oslo', NULL, 595500, 104500, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Oslo\r\nX-LIC-LOCATION:Europe/Oslo\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(348, 'Europe/Paris', NULL, 485200, 22000, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Paris\r\nX-LIC-LOCATION:Europe/Paris\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(349, 'Europe/Podgorica', NULL, 422600, 191600, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Podgorica\r\nX-LIC-LOCATION:Europe/Podgorica\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(350, 'Europe/Prague', NULL, 500500, 142600, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Prague\r\nX-LIC-LOCATION:Europe/Prague\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(351, 'Europe/Riga', NULL, 565700, 240600, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Riga\r\nX-LIC-LOCATION:Europe/Riga\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(352, 'Europe/Rome', NULL, 415400, 122900, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Rome\r\nX-LIC-LOCATION:Europe/Rome\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(353, 'Europe/Samara', NULL, 531200, 500900, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Samara\r\nX-LIC-LOCATION:Europe/Samara\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0400\r\nTZOFFSETTO:+0400\r\nTZNAME:SAMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(354, 'Europe/San_Marino', NULL, 435500, 122800, 'BEGIN:VTIMEZONE\r\nTZID:Europe/San_Marino\r\nX-LIC-LOCATION:Europe/San_Marino\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(355, 'Europe/Sarajevo', NULL, 435200, 182500, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Sarajevo\r\nX-LIC-LOCATION:Europe/Sarajevo\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(356, 'Europe/Simferopol', NULL, 445700, 340600, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Simferopol\r\nX-LIC-LOCATION:Europe/Simferopol\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(357, 'Europe/Skopje', NULL, 415900, 212600, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Skopje\r\nX-LIC-LOCATION:Europe/Skopje\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(358, 'Europe/Sofia', NULL, 424100, 231900, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Sofia\r\nX-LIC-LOCATION:Europe/Sofia\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(359, 'Europe/Stockholm', NULL, 592000, 180300, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Stockholm\r\nX-LIC-LOCATION:Europe/Stockholm\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(360, 'Europe/Tallinn', NULL, 592500, 244500, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Tallinn\r\nX-LIC-LOCATION:Europe/Tallinn\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(361, 'Europe/Tirane', NULL, 412000, 195000, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Tirane\r\nX-LIC-LOCATION:Europe/Tirane\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(362, 'Europe/Uzhgorod', NULL, 483700, 221800, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Uzhgorod\r\nX-LIC-LOCATION:Europe/Uzhgorod\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(363, 'Europe/Vaduz', NULL, 470900, 93100, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Vaduz\r\nX-LIC-LOCATION:Europe/Vaduz\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(364, 'Europe/Vatican', NULL, 415408, 122711, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Vatican\r\nX-LIC-LOCATION:Europe/Vatican\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(365, 'Europe/Vienna', NULL, 481300, 162000, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Vienna\r\nX-LIC-LOCATION:Europe/Vienna\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(366, 'Europe/Vilnius', NULL, 544100, 251900, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Vilnius\r\nX-LIC-LOCATION:Europe/Vilnius\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(367, 'Europe/Volgograd', NULL, 484400, 442500, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Volgograd\r\nX-LIC-LOCATION:Europe/Volgograd\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0400\r\nTZOFFSETTO:+0400\r\nTZNAME:VOLT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(368, 'Europe/Warsaw', NULL, 521500, 210000, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Warsaw\r\nX-LIC-LOCATION:Europe/Warsaw\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(369, 'Europe/Zagreb', NULL, 454800, 155800, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Zagreb\r\nX-LIC-LOCATION:Europe/Zagreb\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(370, 'Europe/Zaporozhye', NULL, 475000, 351000, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Zaporozhye\r\nX-LIC-LOCATION:Europe/Zaporozhye\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0300\r\nTZNAME:EEST\r\nDTSTART:19700329T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0200\r\nTZNAME:EET\r\nDTSTART:19701025T040000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(371, 'Europe/Zurich', NULL, 472300, 83200, 'BEGIN:VTIMEZONE\r\nTZID:Europe/Zurich\r\nX-LIC-LOCATION:Europe/Zurich\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+0100\r\nTZOFFSETTO:+0200\r\nTZNAME:CEST\r\nDTSTART:19700329T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0200\r\nTZOFFSETTO:+0100\r\nTZNAME:CET\r\nDTSTART:19701025T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(372, 'Indian/Antananarivo', NULL, -185500, 473100, 'BEGIN:VTIMEZONE\r\nTZID:Indian/Antananarivo\r\nX-LIC-LOCATION:Indian/Antananarivo\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:EAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(373, 'Indian/Chagos', NULL, -72000, 722500, 'BEGIN:VTIMEZONE\r\nTZID:Indian/Chagos\r\nX-LIC-LOCATION:Indian/Chagos\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0600\r\nTZOFFSETTO:+0600\r\nTZNAME:IOT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(374, 'Indian/Christmas', NULL, -102500, 1054300, 'BEGIN:VTIMEZONE\r\nTZID:Indian/Christmas\r\nX-LIC-LOCATION:Indian/Christmas\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0700\r\nTZOFFSETTO:+0700\r\nTZNAME:CXT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(375, 'Indian/Cocos', NULL, -121000, 965500, 'BEGIN:VTIMEZONE\r\nTZID:Indian/Cocos\r\nX-LIC-LOCATION:Indian/Cocos\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0630\r\nTZOFFSETTO:+0630\r\nTZNAME:CCT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(376, 'Indian/Comoro', NULL, -114100, 431600, 'BEGIN:VTIMEZONE\r\nTZID:Indian/Comoro\r\nX-LIC-LOCATION:Indian/Comoro\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:EAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(377, 'Indian/Kerguelen', NULL, -492110, 701303, 'BEGIN:VTIMEZONE\r\nTZID:Indian/Kerguelen\r\nX-LIC-LOCATION:Indian/Kerguelen\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0500\r\nTZOFFSETTO:+0500\r\nTZNAME:TFT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(378, 'Indian/Mahe', NULL, -44000, 552800, 'BEGIN:VTIMEZONE\r\nTZID:Indian/Mahe\r\nX-LIC-LOCATION:Indian/Mahe\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0400\r\nTZOFFSETTO:+0400\r\nTZNAME:SCT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(379, 'Indian/Maldives', NULL, 41000, 733000, 'BEGIN:VTIMEZONE\r\nTZID:Indian/Maldives\r\nX-LIC-LOCATION:Indian/Maldives\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0500\r\nTZOFFSETTO:+0500\r\nTZNAME:MVT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(380, 'Indian/Mauritius', NULL, -201000, 573000, 'BEGIN:VTIMEZONE\r\nTZID:Indian/Mauritius\r\nX-LIC-LOCATION:Indian/Mauritius\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0400\r\nTZOFFSETTO:+0400\r\nTZNAME:MUT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(381, 'Indian/Mayotte', NULL, -124700, 451400, 'BEGIN:VTIMEZONE\r\nTZID:Indian/Mayotte\r\nX-LIC-LOCATION:Indian/Mayotte\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0300\r\nTZOFFSETTO:+0300\r\nTZNAME:EAT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(382, 'Indian/Reunion', NULL, -205200, 552800, 'BEGIN:VTIMEZONE\r\nTZID:Indian/Reunion\r\nX-LIC-LOCATION:Indian/Reunion\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0400\r\nTZOFFSETTO:+0400\r\nTZNAME:RET\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(383, 'Pacific/Apia', NULL, -135000, -1714400, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Apia\r\nX-LIC-LOCATION:Pacific/Apia\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1400\r\nTZOFFSETTO:+1300\r\nTZNAME:WST\r\nDTSTART:19700405T040000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+1300\r\nTZOFFSETTO:+1400\r\nTZNAME:WSDT\r\nDTSTART:19700927T030000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=9\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(384, 'Pacific/Auckland', NULL, -365200, 1744600, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Auckland\r\nX-LIC-LOCATION:Pacific/Auckland\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1300\r\nTZNAME:NZDT\r\nDTSTART:19700927T020000\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=9\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1300\r\nTZOFFSETTO:+1200\r\nTZNAME:NZST\r\nDTSTART:19700405T030000\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(385, 'Pacific/Chatham', NULL, -435700, -1763300, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Chatham\r\nX-LIC-LOCATION:Pacific/Chatham\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+1245\r\nTZOFFSETTO:+1345\r\nTZNAME:CHADT\r\nDTSTART:19700927T024500\r\nRRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=9\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1345\r\nTZOFFSETTO:+1245\r\nTZNAME:CHAST\r\nDTSTART:19700405T034500\r\nRRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=4\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(386, 'Pacific/Chuuk', NULL, 72500, 1514700, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Chuuk\r\nX-LIC-LOCATION:Pacific/Chuuk\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1000\r\nTZOFFSETTO:+1000\r\nTZNAME:CHUT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(387, 'Pacific/Easter', NULL, -270900, -1092600, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Easter\r\nX-LIC-LOCATION:Pacific/Easter\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0500\r\nTZOFFSETTO:-0600\r\nTZNAME:EAST\r\nDTSTART:19700425T220000\r\nRRULE:FREQ=YEARLY;BYDAY=4SA;BYMONTH=4\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0500\r\nTZNAME:EASST\r\nDTSTART:19700905T220000\r\nRRULE:FREQ=YEARLY;BYDAY=1SA;BYMONTH=9\r\nEND:DAYLIGHT\r\nEND:VTIMEZONE\r\n'), +(388, 'Pacific/Efate', NULL, -174000, 1682500, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Efate\r\nX-LIC-LOCATION:Pacific/Efate\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1100\r\nTZNAME:VUT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(389, 'Pacific/Enderbury', NULL, -30800, -1710500, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Enderbury\r\nX-LIC-LOCATION:Pacific/Enderbury\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1300\r\nTZOFFSETTO:+1300\r\nTZNAME:PHOT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(390, 'Pacific/Fakaofo', NULL, -92200, -1711400, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Fakaofo\r\nX-LIC-LOCATION:Pacific/Fakaofo\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1300\r\nTZOFFSETTO:+1300\r\nTZNAME:TKT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(391, 'Pacific/Fiji', NULL, -180800, 1782500, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Fiji\r\nX-LIC-LOCATION:Pacific/Fiji\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1300\r\nTZNAME:FJST\r\nDTSTART:20101024T020000\r\nRRULE:FREQ=YEARLY;BYDAY=SU;BYMONTHDAY=18,19,20,21,22,23,24;BYMONTH=10\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1300\r\nTZOFFSETTO:+1200\r\nTZNAME:FJT\r\nDTSTART:20120122T030000\r\nRRULE:FREQ=YEARLY;BYDAY=SU;BYMONTHDAY=18,19,20,21,22,23,24;BYMONTH=1\r\nEND:STANDARD\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+115544\r\nTZOFFSETTO:+1200\r\nTZNAME:FJT\r\nDTSTART:19151026T000000\r\nRDATE;VALUE=DATE-TIME:19151026T000000\r\nEND:STANDARD\r\nBEGIN:DAYLIGHT\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1300\r\nTZNAME:FJST\r\nDTSTART:19981101T020000\r\nRDATE;VALUE=DATE-TIME:19981101T020000\r\nRDATE;VALUE=DATE-TIME:19991107T020000\r\nRDATE;VALUE=DATE-TIME:20091129T020000\r\nEND:DAYLIGHT\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1300\r\nTZOFFSETTO:+1200\r\nTZNAME:FJT\r\nDTSTART:19990228T030000\r\nRDATE;VALUE=DATE-TIME:19990228T030000\r\nRDATE;VALUE=DATE-TIME:20000227T030000\r\nRDATE;VALUE=DATE-TIME:20100328T030000\r\nRDATE;VALUE=DATE-TIME:20110306T030000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(392, 'Pacific/Funafuti', NULL, -83100, 1791300, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Funafuti\r\nX-LIC-LOCATION:Pacific/Funafuti\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1200\r\nTZNAME:TVT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(393, 'Pacific/Galapagos', NULL, 5400, -893600, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Galapagos\r\nX-LIC-LOCATION:Pacific/Galapagos\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0600\r\nTZOFFSETTO:-0600\r\nTZNAME:GALT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(394, 'Pacific/Gambier', NULL, -230800, -1345700, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Gambier\r\nX-LIC-LOCATION:Pacific/Gambier\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0900\r\nTZOFFSETTO:-0900\r\nTZNAME:GAMT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(395, 'Pacific/Guadalcanal', NULL, -93200, 1601200, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Guadalcanal\r\nX-LIC-LOCATION:Pacific/Guadalcanal\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1100\r\nTZNAME:SBT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(396, 'Pacific/Guam', NULL, 132800, 1444500, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Guam\r\nX-LIC-LOCATION:Pacific/Guam\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1000\r\nTZOFFSETTO:+1000\r\nTZNAME:ChST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(397, 'Pacific/Honolulu', NULL, 211825, -1575130, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Honolulu\r\nX-LIC-LOCATION:Pacific/Honolulu\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-1000\r\nTZOFFSETTO:-1000\r\nTZNAME:HST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(398, 'Pacific/Johnston', NULL, 164500, -1693100, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Johnston\r\nX-LIC-LOCATION:Pacific/Johnston\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-1000\r\nTZOFFSETTO:-1000\r\nTZNAME:HST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(399, 'Pacific/Kiritimati', NULL, 15200, -1572000, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Kiritimati\r\nX-LIC-LOCATION:Pacific/Kiritimati\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1400\r\nTZOFFSETTO:+1400\r\nTZNAME:LINT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(400, 'Pacific/Kosrae', NULL, 51900, 1625900, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Kosrae\r\nX-LIC-LOCATION:Pacific/Kosrae\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1100\r\nTZNAME:KOST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(401, 'Pacific/Kwajalein', NULL, 90500, 1672000, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Kwajalein\r\nX-LIC-LOCATION:Pacific/Kwajalein\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1200\r\nTZNAME:MHT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(402, 'Pacific/Majuro', NULL, 70900, 1711200, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Majuro\r\nX-LIC-LOCATION:Pacific/Majuro\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1200\r\nTZNAME:MHT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'); +INSERT INTO `egw_cal_timezones` (`tz_id`, `tz_tzid`, `tz_alias`, `tz_latitude`, `tz_longitude`, `tz_component`) VALUES +(403, 'Pacific/Marquesas', NULL, -90000, -1393000, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Marquesas\r\nX-LIC-LOCATION:Pacific/Marquesas\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0930\r\nTZOFFSETTO:-0930\r\nTZNAME:MART\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(404, 'Pacific/Midway', NULL, 281300, -1772200, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Midway\r\nX-LIC-LOCATION:Pacific/Midway\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-1100\r\nTZOFFSETTO:-1100\r\nTZNAME:SST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(405, 'Pacific/Nauru', NULL, 3100, 1665500, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Nauru\r\nX-LIC-LOCATION:Pacific/Nauru\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1200\r\nTZNAME:NRT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(406, 'Pacific/Niue', NULL, -190100, -1695500, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Niue\r\nX-LIC-LOCATION:Pacific/Niue\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-1100\r\nTZOFFSETTO:-1100\r\nTZNAME:NUT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(407, 'Pacific/Norfolk', NULL, -290300, 1675800, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Norfolk\r\nX-LIC-LOCATION:Pacific/Norfolk\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1130\r\nTZOFFSETTO:+1130\r\nTZNAME:NFT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(408, 'Pacific/Noumea', NULL, -221600, 1662700, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Noumea\r\nX-LIC-LOCATION:Pacific/Noumea\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1100\r\nTZNAME:NCT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(409, 'Pacific/Pago_Pago', NULL, -141600, -1704200, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Pago_Pago\r\nX-LIC-LOCATION:Pacific/Pago_Pago\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-1100\r\nTZOFFSETTO:-1100\r\nTZNAME:SST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(410, 'Pacific/Palau', NULL, 72000, 1342900, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Palau\r\nX-LIC-LOCATION:Pacific/Palau\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+0900\r\nTZOFFSETTO:+0900\r\nTZNAME:PWT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(411, 'Pacific/Pitcairn', NULL, -250400, -1300500, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Pitcairn\r\nX-LIC-LOCATION:Pacific/Pitcairn\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-0800\r\nTZOFFSETTO:-0800\r\nTZNAME:PST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(412, 'Pacific/Pohnpei', NULL, 65800, 1581300, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Pohnpei\r\nX-LIC-LOCATION:Pacific/Pohnpei\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1100\r\nTZNAME:PONT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(413, 'Pacific/Port_Moresby', NULL, -93000, 1471000, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Port_Moresby\r\nX-LIC-LOCATION:Pacific/Port_Moresby\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1000\r\nTZOFFSETTO:+1000\r\nTZNAME:PGT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(414, 'Pacific/Rarotonga', NULL, -211400, -1594600, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Rarotonga\r\nX-LIC-LOCATION:Pacific/Rarotonga\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-1000\r\nTZOFFSETTO:-1000\r\nTZNAME:CKT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(415, 'Pacific/Saipan', NULL, 151200, 1454500, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Saipan\r\nX-LIC-LOCATION:Pacific/Saipan\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1000\r\nTZOFFSETTO:+1000\r\nTZNAME:ChST\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(416, 'Pacific/Tahiti', NULL, -173200, -1493400, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Tahiti\r\nX-LIC-LOCATION:Pacific/Tahiti\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:-1000\r\nTZOFFSETTO:-1000\r\nTZNAME:TAHT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(417, 'Pacific/Tarawa', NULL, 12500, 1730000, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Tarawa\r\nX-LIC-LOCATION:Pacific/Tarawa\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1200\r\nTZNAME:GILT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(418, 'Pacific/Tongatapu', NULL, -211000, -1751000, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Tongatapu\r\nX-LIC-LOCATION:Pacific/Tongatapu\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1300\r\nTZOFFSETTO:+1300\r\nTZNAME:TOT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(419, 'Pacific/Wake', NULL, 191700, 1663700, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Wake\r\nX-LIC-LOCATION:Pacific/Wake\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1200\r\nTZNAME:WAKT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(420, 'Pacific/Ponape', NULL, 65800, 1581300, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Ponape\r\nX-LIC-LOCATION:Pacific/Ponape\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1100\r\nTZOFFSETTO:+1100\r\nTZNAME:PONT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(421, 'Pacific/Truk', NULL, 72500, 1514700, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Truk\r\nX-LIC-LOCATION:Pacific/Truk\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1000\r\nTZOFFSETTO:+1000\r\nTZNAME:TRUT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(422, 'Pacific/Wallis', NULL, -131800, -1761000, 'BEGIN:VTIMEZONE\r\nTZID:Pacific/Wallis\r\nX-LIC-LOCATION:Pacific/Wallis\r\nBEGIN:STANDARD\r\nTZOFFSETFROM:+1200\r\nTZOFFSETTO:+1200\r\nTZNAME:WFT\r\nDTSTART:19700101T000000\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n'), +(423, 'Africa/Asmera', 5, NULL, NULL, NULL), +(424, 'Africa/Timbuktu', 6, NULL, NULL, NULL), +(425, 'America/Argentina/ComodRivadavia', 59, NULL, NULL, NULL), +(426, 'America/Louisville', 128, NULL, NULL, NULL), +(427, 'Asia/Saigon', 238, NULL, NULL, NULL), +(428, 'Asia/Katmandu', 250, NULL, NULL, NULL), +(429, 'Asia/Calcutta', 252, NULL, NULL, NULL), +(430, 'Atlantic/Faeroe', 297, NULL, NULL, NULL), +(431, 'Europe/Belfast', 338, NULL, NULL, NULL), +(432, 'Atlantic/Jan_Mayen', 347, NULL, NULL, NULL), +(433, 'Pacific/Yap', 421, NULL, NULL, NULL), +(434, 'AUS Central Standard Time', 307, NULL, NULL, NULL), +(435, 'AUS Eastern Standard Time', 314, NULL, NULL, NULL), +(436, 'Afghanistan Standard Time', 246, NULL, NULL, NULL), +(437, 'Alaskan Standard Time', 54, NULL, NULL, NULL), +(438, 'Arab Standard Time', 273, NULL, NULL, NULL), +(439, 'Arabian Standard Time', 233, NULL, NULL, NULL), +(440, 'Arabic Standard Time', 220, NULL, NULL, NULL), +(441, 'Argentina Standard Time', 58, NULL, NULL, NULL), +(442, 'Atlantic Standard Time', 113, NULL, NULL, NULL), +(443, 'Azerbaijan Standard Time', 222, NULL, NULL, NULL), +(444, 'Azores Standard Time', 293, NULL, NULL, NULL), +(445, 'Bahia Standard Time', 73, NULL, NULL, NULL), +(446, 'Bangladesh Standard Time', 231, NULL, NULL, NULL), +(447, 'Canada Central Standard Time', 172, NULL, NULL, NULL), +(448, 'Cape Verde Standard Time', 296, NULL, NULL, NULL), +(449, 'Caucasus Standard Time', 292, NULL, NULL, NULL), +(450, 'Cen. Australia Standard Time', 303, NULL, NULL, NULL), +(451, 'Central America Standard Time', 110, NULL, NULL, NULL), +(452, 'Central Asia Standard Time', 214, NULL, NULL, NULL), +(453, 'Central Brazilian Standard Time', 92, NULL, NULL, NULL), +(454, 'Central Europe Standard Time', 323, NULL, NULL, NULL), +(455, 'Central European Standard Time', 368, NULL, NULL, NULL), +(456, 'Central Pacific Standard Time', 395, NULL, NULL, NULL), +(457, 'Central Standard Time', 88, NULL, NULL, NULL), +(458, 'Central Standard Time (Mexico)', 145, NULL, NULL, NULL), +(459, 'China Standard Time', 277, NULL, NULL, NULL), +(460, 'E. Africa Standard Time', 43, NULL, NULL, NULL), +(461, 'E. Australia Standard Time', 304, NULL, NULL, NULL), +(462, 'E. Europe Standard Time', 262, NULL, NULL, NULL), +(463, 'E. South America Standard Time', 179, NULL, NULL, NULL), +(464, 'Eastern Standard Time', 153, NULL, NULL, NULL), +(465, 'Egypt Standard Time', 13, NULL, NULL, NULL), +(466, 'Ekaterinburg Standard Time', 291, NULL, NULL, NULL), +(467, 'FLE Standard Time', 335, NULL, NULL, NULL), +(468, 'Fiji Standard Time', 391, NULL, NULL, NULL), +(469, 'GMT Standard Time', 338, NULL, NULL, NULL), +(470, 'GTB Standard Time', 322, NULL, NULL, NULL), +(471, 'Georgian Standard Time', 281, NULL, NULL, NULL), +(472, 'Greenland Standard Time', 105, NULL, NULL, NULL), +(473, 'Greenwich Standard Time', 299, NULL, NULL, NULL), +(474, 'Hawaiian Standard Time', 397, NULL, NULL, NULL), +(475, 'India Standard Time', 252, NULL, NULL, NULL), +(476, 'Iran Standard Time', 282, NULL, NULL, NULL), +(477, 'Israel Standard Time', 245, NULL, NULL, NULL), +(478, 'Jordan Standard Time', 215, NULL, NULL, NULL), +(479, 'Kaliningrad Standard Time', 334, NULL, NULL, NULL), +(480, 'Korea Standard Time', 276, NULL, NULL, NULL), +(481, 'Magadan Standard Time', 258, NULL, NULL, NULL), +(482, 'Mauritius Standard Time', 380, NULL, NULL, NULL), +(483, 'Middle East Standard Time', 224, NULL, NULL, NULL), +(484, 'Montevideo Standard Time', 149, NULL, NULL, NULL), +(485, 'Morocco Standard Time', 14, NULL, NULL, NULL), +(486, 'Mountain Standard Time', 97, NULL, NULL, NULL), +(487, 'Mountain Standard Time (Mexico)', 89, NULL, NULL, NULL), +(488, 'Myanmar Standard Time', 272, NULL, NULL, NULL), +(489, 'N. Central Asia Standard Time', 264, NULL, NULL, NULL), +(490, 'Namibia Standard Time', 52, NULL, NULL, NULL), +(491, 'Nepal Standard Time', 250, NULL, NULL, NULL), +(492, 'New Zealand Standard Time', 384, NULL, NULL, NULL), +(493, 'Newfoundland Standard Time', 184, NULL, NULL, NULL), +(494, 'North Asia East Standard Time', 241, NULL, NULL, NULL), +(495, 'North Asia Standard Time', 253, NULL, NULL, NULL), +(496, 'Pacific SA Standard Time', 177, NULL, NULL, NULL), +(497, 'Pacific Standard Time', 133, NULL, NULL, NULL), +(498, 'Pacific Standard Time (Mexico)', 175, NULL, NULL, NULL), +(499, 'Pakistan Standard Time', 248, NULL, NULL, NULL), +(500, 'Paraguay Standard Time', 71, NULL, NULL, NULL), +(501, 'Romance Standard Time', 348, NULL, NULL, NULL), +(502, 'Russian Standard Time', 345, NULL, NULL, NULL), +(503, 'SA Eastern Standard Time', 86, NULL, NULL, NULL), +(504, 'SA Pacific Standard Time', 80, NULL, NULL, NULL), +(505, 'SA Western Standard Time', 131, NULL, NULL, NULL), +(506, 'SE Asia Standard Time', 223, NULL, NULL, NULL), +(507, 'Samoa Standard Time', 383, NULL, NULL, NULL), +(508, 'Singapore Standard Time', 278, NULL, NULL, NULL), +(509, 'South Africa Standard Time', 25, NULL, NULL, NULL), +(510, 'Sri Lanka Standard Time', 229, NULL, NULL, NULL), +(511, 'Syria Standard Time', 230, NULL, NULL, NULL), +(512, 'Taipei Standard Time', 279, NULL, NULL, NULL), +(513, 'Tasmania Standard Time', 309, NULL, NULL, NULL), +(514, 'Tokyo Standard Time', 284, NULL, NULL, NULL), +(515, 'Tonga Standard Time', 418, NULL, NULL, NULL), +(516, 'Turkey Standard Time', 332, NULL, NULL, NULL), +(517, 'US Mountain Standard Time', 164, NULL, NULL, NULL), +(518, 'Ulaanbaatar Standard Time', 285, NULL, NULL, NULL), +(519, 'Venezuela Standard Time', 85, NULL, NULL, NULL), +(520, 'Vladivostok Standard Time', 289, NULL, NULL, NULL), +(521, 'W. Australia Standard Time', 313, NULL, NULL, NULL), +(522, 'W. Central Africa Standard Time', 31, NULL, NULL, NULL), +(523, 'W. Europe Standard Time', 319, NULL, NULL, NULL), +(524, 'West Asia Standard Time', 280, NULL, NULL, NULL), +(525, 'West Pacific Standard Time', 413, NULL, NULL, NULL), +(526, 'Yakutsk Standard Time', 290, NULL, NULL, NULL), +(527, 'Universal Coordinated Time', -1, NULL, NULL, NULL), +(528, 'Casablanca, Monrovia', 14, NULL, NULL, NULL), +(529, 'Greenwich Mean Time: Dublin, Edinburgh, Lisbon, London', 336, NULL, NULL, NULL), +(530, 'Greenwich Mean Time; Dublin, Edinburgh, London', 338, NULL, NULL, NULL), +(531, 'Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna', 319, NULL, NULL, NULL), +(532, 'Belgrade, Pozsony, Budapest, Ljubljana, Prague', 350, NULL, NULL, NULL), +(533, 'Brussels, Copenhagen, Madrid, Paris', 348, NULL, NULL, NULL), +(534, 'Paris, Madrid, Brussels, Copenhagen', 348, NULL, NULL, NULL), +(535, 'Prague, Central Europe', 350, NULL, NULL, NULL), +(536, 'Sarajevo, Skopje, Sofija, Vilnius, Warsaw, Zagreb', 355, NULL, NULL, NULL), +(537, 'West Central Africa', 34, NULL, NULL, NULL), +(538, 'Athens, Istanbul, Minsk', 317, NULL, NULL, NULL), +(539, 'Bucharest', 322, NULL, NULL, NULL), +(540, 'Cairo', 13, NULL, NULL, NULL), +(541, 'Harare, Pretoria', 24, NULL, NULL, NULL), +(542, 'Helsinki, Riga, Tallinn', 330, NULL, NULL, NULL), +(543, 'Israel, Jerusalem Standard Time', 245, NULL, NULL, NULL), +(544, 'Baghdad', 220, NULL, NULL, NULL), +(545, 'Arab, Kuwait, Riyadh', 256, NULL, NULL, NULL), +(546, 'Moscow, St. Petersburg, Volgograd', 345, NULL, NULL, NULL), +(547, 'East Africa, Nairobi', 43, NULL, NULL, NULL), +(548, 'Tehran', 282, NULL, NULL, NULL), +(549, 'Abu Dhabi, Muscat', 261, NULL, NULL, NULL), +(550, 'Baku, Tbilisi, Yerevan', 222, NULL, NULL, NULL), +(551, 'Kabul', 246, NULL, NULL, NULL), +(552, 'Ekaterinburg', 291, NULL, NULL, NULL), +(553, 'Islamabad, Karachi, Tashkent', 248, NULL, NULL, NULL), +(554, 'Kolkata, Chennai, Mumbai, New Delhi, India Standard Time', 429, NULL, NULL, NULL), +(555, 'Kathmandu, Nepal', 250, NULL, NULL, NULL), +(556, 'Almaty, Novosibirsk, North Central Asia', 214, NULL, NULL, NULL), +(557, 'Astana, Dhaka', 231, NULL, NULL, NULL), +(558, 'Sri Jayawardenepura, Sri Lanka', 229, NULL, NULL, NULL), +(559, 'Rangoon', 272, NULL, NULL, NULL), +(560, 'Bangkok, Hanoi, Jakarta', 223, NULL, NULL, NULL), +(561, 'Krasnoyarsk', 253, NULL, NULL, NULL), +(562, 'Beijing, Chongqing, Hong Kong SAR, Urumqi', 277, NULL, NULL, NULL), +(563, 'Irkutsk, Ulaan Bataar', 241, NULL, NULL, NULL), +(564, 'Kuala Lumpur, Singapore', 278, NULL, NULL, NULL), +(565, 'Perth, Western Australia', 313, NULL, NULL, NULL), +(566, 'Taipei', 279, NULL, NULL, NULL), +(567, 'Osaka, Sapporo, Tokyo', 284, NULL, NULL, NULL), +(568, 'Seoul, Korea Standard time', 276, NULL, NULL, NULL), +(569, 'Yakutsk', 290, NULL, NULL, NULL), +(570, 'Adelaide, Central Australia', 303, NULL, NULL, NULL), +(571, 'Darwin', 307, NULL, NULL, NULL), +(572, 'Brisbane, East Australia', 304, NULL, NULL, NULL), +(573, 'Canberra, Melbourne, Sydney, Hobart (year 2000 only)', 314, NULL, NULL, NULL), +(574, 'Guam, Port Moresby', 396, NULL, NULL, NULL), +(575, 'Hobart, Tasmania', 309, NULL, NULL, NULL), +(576, 'Vladivostok', 289, NULL, NULL, NULL), +(577, 'Magadan, Solomon Is., New Caledonia', 258, NULL, NULL, NULL), +(578, 'Auckland, Wellington', 384, NULL, NULL, NULL), +(579, 'Fiji Islands, Kamchatka, Marshall Is.', 391, NULL, NULL, NULL), +(580, 'Nuku''alofa, Tonga', 418, NULL, NULL, NULL), +(581, 'Azores', 293, NULL, NULL, NULL), +(582, 'Cape Verde Is.', 296, NULL, NULL, NULL), +(583, 'Mid-Atlantic', 156, NULL, NULL, NULL), +(584, 'Brasilia', 179, NULL, NULL, NULL), +(585, 'Buenos Aires', 58, NULL, NULL, NULL), +(586, 'Greenland', 105, NULL, NULL, NULL), +(587, 'Newfoundland', 184, NULL, NULL, NULL), +(588, 'Atlantic Time (Canada)', 113, NULL, NULL, NULL), +(589, 'Caracas, La Paz', 85, NULL, NULL, NULL), +(590, 'Santiago', 177, NULL, NULL, NULL), +(591, 'Bogota, Lima, Quito', 80, NULL, NULL, NULL), +(592, 'Eastern Time (US & Canada)', 153, NULL, NULL, NULL), +(593, 'Indiana (East)', 116, NULL, NULL, NULL), +(594, 'Central America', 110, NULL, NULL, NULL), +(595, 'Central Time (US & Canada)', 88, NULL, NULL, NULL), +(596, 'Mexico City, Tegucigalpa', 145, NULL, NULL, NULL), +(597, 'Saskatchewan', 100, NULL, NULL, NULL), +(598, 'Arizona', 164, NULL, NULL, NULL), +(599, 'Mountain Time (US & Canada)', 97, NULL, NULL, NULL), +(600, 'Pacific Time (US & Canada); Tijuana', 133, NULL, NULL, NULL), +(601, 'Alaska', 54, NULL, NULL, NULL), +(602, 'Hawaii', 397, NULL, NULL, NULL), +(603, 'Midway Island, Samoa', 404, NULL, NULL, NULL), +(604, 'Eniwetok, Kwajalein, Dateline Time', 401, NULL, NULL, NULL), +(605, 'Armenian Standard Time', 292, NULL, NULL, NULL), +(606, 'Mexico Standard Time', 145, NULL, NULL, NULL), +(607, 'Mexico Standard Time 2', 89, NULL, NULL, NULL), +(608, 'Mid-Atlantic Standard Time', 300, NULL, NULL, NULL); + +CREATE TABLE IF NOT EXISTS `egw_cal_user` ( + `cal_id` int(11) NOT NULL, + `cal_recur_date` bigint(20) NOT NULL default '0', + `cal_user_type` varchar(1) NOT NULL default 'u', + `cal_user_id` varchar(128) NOT NULL, + `cal_status` varchar(1) default 'A', + `cal_quantity` int(11) default '1', + `cal_role` varchar(64) default 'REQ-PARTICIPANT', + `cal_user_modified` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, + PRIMARY KEY (`cal_id`,`cal_recur_date`,`cal_user_type`,`cal_user_id`), + KEY `egw_cal_user_type_id` (`cal_user_type`,`cal_user_id`), + KEY `egw_cal_user_modified` (`cal_user_modified`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_cat2entry` ( + `ce_app` varchar(25) NOT NULL, + `ce_app_id` varchar(50) NOT NULL, + `cat_id` int(11) NOT NULL, + `ce_owner` int(11) NOT NULL, + PRIMARY KEY (`ce_app`,`ce_app_id`,`cat_id`), + KEY `egw_cat2entry_id` (`cat_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_categories` ( + `cat_id` int(11) NOT NULL auto_increment, + `cat_main` int(11) NOT NULL default '0', + `cat_parent` int(11) NOT NULL default '0', + `cat_level` smallint(6) NOT NULL default '0', + `cat_owner` varchar(255) NOT NULL default '0', + `cat_access` varchar(7) default NULL, + `cat_appname` varchar(50) NOT NULL default '', + `cat_name` varchar(150) NOT NULL default '', + `cat_description` varchar(255) NOT NULL default '', + `cat_data` text, + `last_mod` bigint(20) NOT NULL default '0', + PRIMARY KEY (`cat_id`), + KEY `egw_categories_appname_owner_parent_level` (`cat_appname`,`cat_owner`,`cat_parent`,`cat_level`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; + +INSERT INTO `egw_categories` (`cat_id`, `cat_main`, `cat_parent`, `cat_level`, `cat_owner`, `cat_access`, `cat_appname`, `cat_name`, `cat_description`, `cat_data`, `last_mod`) VALUES +(1, 0, 0, 0, '-1', 'public', 'resources', 'Locations', 'This category has been added by setup', NULL, 1386120357); + +CREATE TABLE IF NOT EXISTS `egw_config` ( + `config_app` varchar(50) NOT NULL default '', + `config_name` varchar(255) NOT NULL default '', + `config_value` text, + PRIMARY KEY (`config_app`,`config_name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +INSERT INTO `egw_config` (`config_app`, `config_name`, `config_value`) VALUES +('phpgwapi', 'site_title', 'eGroupWare'), +('phpgwapi', 'hostname', 'yourdomain.com'), +('phpgwapi', 'webserver_url', '/egroupware'), +('phpgwapi', 'temp_dir', '/usr/share/egroupware_tmp'), +('phpgwapi', 'files_dir', '/var/lib/egroupware/default/files'), +('phpgwapi', 'backup_dir', '/var/lib/egroupware/default/backup'), +('phpgwapi', 'tz_offset', '-5'), +('phpgwapi', 'usecookies', 'True'), +('phpgwapi', 'system_charset', 'utf-8'), +('phpgwapi', 'sessions_checkip', 'True'), +('phpgwapi', 'image_type', '1'), +('phpgwapi', 'asyncservice', 'fallback'), +('bookmarks', 'mail_footer', '\\n\\n--\\nThis was sent from eGroupWare\\nhttp://www.egroupware.org\\n'), +('registration', 'display_tos', 'True'), +('registration', 'activate_account', 'email'), +('registration', 'username_is', 'choice'), +('registration', 'password_is', 'choice'), +('registration', 'use_challenge', 'True'), +('phpgwapi', 'auto_load_holidays', 'True'), +('phpgwapi', 'holidays_url_path', 'localhost'), +('phpgwapi', 'max_access_log_age', '90'), +('phpgwapi', 'block_time', '30'), +('phpgwapi', 'num_unsuccessful_id', '3'), +('phpgwapi', 'num_unsuccessful_ip', '3'), +('phpgwapi', 'install_id', 'c2894ebdf072631bc49bb34e5da3bb4a'), +('phpgwapi', 'sessions_timeout', '14400'), +('phpgwapi', 'sessions_app_timeout', '86400'), +('phpgwapi', 'lang_ctimes', 'a:6:{s:2:"en";a:30:{s:11:"addressbook";i:1386112266;s:5:"admin";i:1386112267;s:9:"bookmarks";i:1386112332;s:8:"calendar";i:1386112308;s:15:"developer_tools";i:1386112330;s:10:"emailadmin";i:1386112290;s:9:"etemplate";i:1386112268;s:10:"felamimail";i:1386112296;s:11:"filemanager";i:1386112298;s:4:"home";i:1386112269;s:12:"importexport";i:1386112338;s:7:"infolog";i:1386112305;s:6:"manual";i:1386112294;s:10:"news_admin";i:1386112329;s:13:"notifications";i:1386112306;s:8:"phpbrain";i:1386112328;s:11:"phpfreechat";i:1386112339;s:8:"phpgwapi";i:1386112280;s:10:"phpsysinfo";i:1386112322;s:5:"polls";i:1386112331;s:11:"preferences";i:1386112284;s:14:"projectmanager";i:1386112364;s:12:"registration";i:1386112335;s:9:"resources";i:1386112303;s:10:"sambaadmin";i:1386112336;s:7:"sitemgr";i:1386112313;s:6:"syncml";i:1386112301;s:9:"timesheet";i:1386112320;s:7:"tracker";i:1386112326;s:4:"wiki";i:1386112292;}s:5:"es-es";a:30:{s:11:"addressbook";i:1386112266;s:5:"admin";i:1386112267;s:9:"bookmarks";i:1386112332;s:8:"calendar";i:1386112308;s:15:"developer_tools";i:1386112330;s:10:"emailadmin";i:1386112290;s:9:"etemplate";i:1386112268;s:10:"felamimail";i:1386112296;s:11:"filemanager";i:1386112298;s:4:"home";i:1386112269;s:12:"importexport";i:1386112338;s:7:"infolog";i:1386112305;s:6:"manual";i:1386112294;s:10:"news_admin";i:1386112329;s:13:"notifications";i:1386112306;s:8:"phpbrain";i:1386112328;s:11:"phpfreechat";i:1386112339;s:8:"phpgwapi";i:1386112280;s:10:"phpsysinfo";i:1386112322;s:5:"polls";i:1386112331;s:11:"preferences";i:1386112284;s:14:"projectmanager";i:1386112364;s:12:"registration";i:1386112335;s:9:"resources";i:1386112303;s:10:"sambaadmin";i:1386112336;s:7:"sitemgr";i:1386112313;s:6:"syncml";i:1386112301;s:9:"timesheet";i:1386112320;s:7:"tracker";i:1386112326;s:4:"wiki";i:1386112292;}s:2:"fr";a:30:{s:11:"addressbook";i:1386112266;s:5:"admin";i:1386112267;s:9:"bookmarks";i:1386112333;s:8:"calendar";i:1386112308;s:15:"developer_tools";i:1386112330;s:10:"emailadmin";i:1386112290;s:9:"etemplate";i:1386112268;s:10:"felamimail";i:1386112296;s:11:"filemanager";i:1386112298;s:4:"home";i:1386112269;s:12:"importexport";i:1386112338;s:7:"infolog";i:1386112305;s:6:"manual";i:1386112294;s:10:"news_admin";i:1386112329;s:13:"notifications";i:1386112306;s:8:"phpbrain";i:1386112328;s:11:"phpfreechat";i:1386112339;s:8:"phpgwapi";i:1386112280;s:10:"phpsysinfo";i:1386112322;s:5:"polls";i:1386112331;s:11:"preferences";i:1386112284;s:14:"projectmanager";i:1386112365;s:12:"registration";i:1386112335;s:9:"resources";i:1386112303;s:10:"sambaadmin";i:1386112336;s:7:"sitemgr";i:1386112313;s:6:"syncml";i:1386112301;s:9:"timesheet";i:1386112320;s:7:"tracker";i:1386112326;s:4:"wiki";i:1386112293;}s:2:"de";a:30:{s:11:"addressbook";i:1386112266;s:5:"admin";i:1386112267;s:9:"bookmarks";i:1386112332;s:8:"calendar";i:1386112308;s:15:"developer_tools";i:1386112330;s:10:"emailadmin";i:1386112290;s:9:"etemplate";i:1386112268;s:10:"felamimail";i:1386112296;s:11:"filemanager";i:1386112298;s:4:"home";i:1386112269;s:12:"importexport";i:1386112338;s:7:"infolog";i:1386112305;s:6:"manual";i:1386112294;s:10:"news_admin";i:1386112329;s:13:"notifications";i:1386112306;s:8:"phpbrain";i:1386112328;s:11:"phpfreechat";i:1386112339;s:8:"phpgwapi";i:1386112280;s:10:"phpsysinfo";i:1386112322;s:5:"polls";i:1386112331;s:11:"preferences";i:1386112284;s:14:"projectmanager";i:1386112364;s:12:"registration";i:1386112335;s:9:"resources";i:1386112303;s:10:"sambaadmin";i:1386112336;s:7:"sitemgr";i:1386112313;s:6:"syncml";i:1386112301;s:9:"timesheet";i:1386112320;s:7:"tracker";i:1386112326;s:4:"wiki";i:1386112292;}s:2:"it";a:28:{s:11:"addressbook";i:1386112266;s:5:"admin";i:1386112267;s:9:"bookmarks";i:1386112333;s:8:"calendar";i:1386112308;s:15:"developer_tools";i:1386112330;s:10:"emailadmin";i:1386112290;s:9:"etemplate";i:1386112268;s:10:"felamimail";i:1386112296;s:11:"filemanager";i:1386112298;s:4:"home";i:1386112269;s:12:"importexport";i:1386112338;s:7:"infolog";i:1386112305;s:6:"manual";i:1386112294;s:10:"news_admin";i:1386112329;s:13:"notifications";i:1386112306;s:8:"phpbrain";i:1386112328;s:8:"phpgwapi";i:1386112280;s:5:"polls";i:1386112331;s:11:"preferences";i:1386112284;s:14:"projectmanager";i:1386112365;s:12:"registration";i:1386112335;s:9:"resources";i:1386112303;s:10:"sambaadmin";i:1386112336;s:7:"sitemgr";i:1386112313;s:6:"syncml";i:1386112302;s:9:"timesheet";i:1386112320;s:7:"tracker";i:1386112326;s:4:"wiki";i:1386112293;}s:2:"sv";a:29:{s:11:"addressbook";i:1386112266;s:5:"admin";i:1386112267;s:9:"bookmarks";i:1386112333;s:8:"calendar";i:1386112309;s:15:"developer_tools";i:1386112330;s:10:"emailadmin";i:1386112291;s:9:"etemplate";i:1386112268;s:10:"felamimail";i:1386112296;s:11:"filemanager";i:1386112298;s:4:"home";i:1386112269;s:12:"importexport";i:1386112338;s:7:"infolog";i:1386112305;s:6:"manual";i:1386112295;s:10:"news_admin";i:1386112329;s:13:"notifications";i:1386112306;s:8:"phpbrain";i:1386112328;s:8:"phpgwapi";i:1386112281;s:10:"phpsysinfo";i:1386112322;s:5:"polls";i:1386112331;s:11:"preferences";i:1386112284;s:14:"projectmanager";i:1386112365;s:12:"registration";i:1386112335;s:9:"resources";i:1386112303;s:10:"sambaadmin";i:1386112337;s:7:"sitemgr";i:1386112313;s:6:"syncml";i:1386112302;s:9:"timesheet";i:1386112320;s:7:"tracker";i:1386112326;s:4:"wiki";i:1386112293;}}'), +('phpgwapi', 'default_ftp_server', 'localhost'), +('phpgwapi', 'mail_server', 'localhost'), +('phpgwapi', 'mail_server_type', 'imap'), +('phpgwapi', 'mail_login_type', 'standard'), +('phpgwapi', 'mail_suffix', 'yourdomain.com'), +('phpgwapi', 'smtp_server', 'localhost'), +('phpgwapi', 'smtp_port', '25'), +('phpgwapi', 'auth_type', 'mail'), +('phpgwapi', 'account_repository', 'sql'), +('phpgwapi', 'sql_encryption_type', 'md5'), +('phpgwapi', 'auto_create_acct', 'lowercase'), +('phpgwapi', 'auto_create_expire', 'never'), +('phpgwapi', 'acl_default', 'deny'), +('phpgwapi', 'ldap_encryption_type', 'des'), +('phpgwapi', 'mcrypt_algo', 'tripledes'), +('phpgwapi', 'mcrypt_mode', 'cbc'), +('phpgwapi', 'file_repository', 'sql'), +('phpgwapi', 'file_store_contents', 'filesystem'), +('phpgwapi', 'xmlrpc_enabled', 'True'), +('addressbook', 'customfields', 'a:0:{}'), +('addressbook', 'types', 'a:1:{s:1:"n";a:2:{s:4:"name";s:7:"contact";s:7:"options";a:2:{s:8:"template";s:16:"addressbook.edit";s:4:"icon";s:10:"navbar.png";}}}'), +('phpgwapi', 'server_timezone', 'America/Montreal'), +('phpgwapi', 'max_history', '20'), +('phpgwapi', 'vfs_storage_mode', 'fs'), +('phpgwapi', 'aspell_path', '/usr/bin/aspell'), +('phpgwapi', 'cas_authentication_mode', 'Client'), +('phpgwapi', 'cas_ssl_validation', 'No'), +('phpgwapi', 'tz_version', '1.2013c'), +('phpgwapi', 'tz_aliases_mtime', '2013-10-07 03:39:17'), +('resources', 'location_cats', '1'); + +CREATE TABLE IF NOT EXISTS `egw_contentmap` ( + `map_id` varchar(128) NOT NULL default '', + `map_guid` varchar(100) NOT NULL default '', + `map_locuid` varchar(100) NOT NULL default '', + `map_timestamp` datetime NOT NULL default '0000-00-00 00:00:00', + `map_expired` tinyint(4) NOT NULL default '0', + PRIMARY KEY (`map_id`,`map_guid`,`map_locuid`), + KEY `egw_contentmap_map_expired` (`map_expired`), + KEY `egw_contentmap_map_id_map_locuid` (`map_id`,`map_locuid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_emailadmin` ( + `ea_profile_id` int(11) NOT NULL auto_increment, + `ea_smtp_server` varchar(80) default NULL, + `ea_smtp_type` varchar(56) default NULL, + `ea_smtp_port` int(11) default NULL, + `ea_smtp_auth` varchar(3) default NULL, + `ea_editforwardingaddress` varchar(3) default NULL, + `ea_smtp_ldap_server` varchar(80) default NULL, + `ea_smtp_ldap_basedn` varchar(200) default NULL, + `ea_smtp_ldap_admindn` varchar(200) default NULL, + `ea_smtp_ldap_adminpw` varchar(30) default NULL, + `ea_smtp_ldap_use_default` varchar(3) default NULL, + `ea_imap_server` varchar(80) default NULL, + `ea_imap_type` varchar(56) default NULL, + `ea_imap_port` int(11) default NULL, + `ea_imap_login_type` varchar(20) default NULL, + `ea_imap_tsl_auth` varchar(3) default NULL, + `ea_imap_tsl_encryption` varchar(3) default NULL, + `ea_imap_enable_cyrus` varchar(3) default NULL, + `ea_imap_admin_user` varchar(40) default NULL, + `ea_imap_admin_pw` varchar(40) default NULL, + `ea_imap_enable_sieve` varchar(3) default NULL, + `ea_imap_sieve_server` varchar(80) default NULL, + `ea_imap_sieve_port` int(11) default NULL, + `ea_description` varchar(200) default NULL, + `ea_default_domain` varchar(100) default NULL, + `ea_organisation_name` varchar(100) default NULL, + `ea_user_defined_identities` varchar(3) default NULL, + `ea_user_defined_accounts` varchar(3) default NULL, + `ea_order` int(11) default NULL, + `ea_appname` varchar(80) default NULL, + `ea_group` varchar(80) default NULL, + `ea_user` varchar(80) default NULL, + `ea_active` int(11) default NULL, + `ea_smtp_auth_username` varchar(128) default NULL, + `ea_smtp_auth_password` varchar(80) default NULL, + `ea_user_defined_signatures` varchar(3) default NULL, + `ea_default_signature` text, + `ea_imap_auth_username` varchar(80) default NULL, + `ea_imap_auth_password` varchar(80) default NULL, + `ea_stationery_active_templates` text, + PRIMARY KEY (`ea_profile_id`), + KEY `egw_emailadmin_ea_appname` (`ea_appname`), + KEY `egw_emailadmin_ea_group` (`ea_group`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; + +INSERT INTO `egw_emailadmin` (`ea_profile_id`, `ea_smtp_server`, `ea_smtp_type`, `ea_smtp_port`, `ea_smtp_auth`, `ea_editforwardingaddress`, `ea_smtp_ldap_server`, `ea_smtp_ldap_basedn`, `ea_smtp_ldap_admindn`, `ea_smtp_ldap_adminpw`, `ea_smtp_ldap_use_default`, `ea_imap_server`, `ea_imap_type`, `ea_imap_port`, `ea_imap_login_type`, `ea_imap_tsl_auth`, `ea_imap_tsl_encryption`, `ea_imap_enable_cyrus`, `ea_imap_admin_user`, `ea_imap_admin_pw`, `ea_imap_enable_sieve`, `ea_imap_sieve_server`, `ea_imap_sieve_port`, `ea_description`, `ea_default_domain`, `ea_organisation_name`, `ea_user_defined_identities`, `ea_user_defined_accounts`, `ea_order`, `ea_appname`, `ea_group`, `ea_user`, `ea_active`, `ea_smtp_auth_username`, `ea_smtp_auth_password`, `ea_user_defined_signatures`, `ea_default_signature`, `ea_imap_auth_username`, `ea_imap_auth_password`, `ea_stationery_active_templates`) VALUES +(1, 'localhost', 'defaultsmtp', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'localhost', 'defaultimap', 143, 'standard', NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 'default profile (created by setup)', 'yourdomain.com', NULL, NULL, NULL, NULL, '', '0', '0', 1, '', '', NULL, NULL, NULL, NULL, NULL); + +CREATE TABLE IF NOT EXISTS `egw_etemplate` ( + `et_name` varchar(80) NOT NULL default '', + `et_template` varchar(20) NOT NULL default '', + `et_lang` varchar(5) NOT NULL default '', + `et_group` int(11) NOT NULL default '0', + `et_version` varchar(20) NOT NULL default '', + `et_data` longtext, + `et_size` varchar(128) default NULL, + `et_style` text, + `et_modified` int(11) NOT NULL default '0', + PRIMARY KEY (`et_name`,`et_template`,`et_lang`,`et_group`,`et_version`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_felamimail_accounts` ( + `fm_owner` int(11) NOT NULL default '0', + `fm_id` int(11) NOT NULL auto_increment, + `fm_realname` varchar(128) default NULL, + `fm_organization` varchar(128) default NULL, + `fm_emailaddress` varchar(128) NOT NULL default '', + `fm_ic_hostname` varchar(128) default NULL, + `fm_ic_port` int(11) default NULL, + `fm_ic_username` varchar(128) default NULL, + `fm_ic_password` varchar(128) default NULL, + `fm_ic_encryption` int(11) default NULL, + `fm_og_hostname` varchar(128) default NULL, + `fm_og_port` int(11) default NULL, + `fm_og_smtpauth` tinyint(4) default NULL, + `fm_og_username` varchar(128) default NULL, + `fm_og_password` varchar(128) default NULL, + `fm_active` tinyint(4) NOT NULL default '0', + `fm_ic_validatecertificate` tinyint(4) default NULL, + `fm_ic_enable_sieve` tinyint(4) default NULL, + `fm_ic_sieve_server` varchar(128) default NULL, + `fm_ic_sieve_port` int(11) default NULL, + `fm_signatureid` int(11) default NULL, + `fm_ic_folderstoshowinhome` text, + `fm_ic_sentfolder` varchar(128) default NULL, + `fm_ic_trashfolder` varchar(128) default NULL, + `fm_ic_draftfolder` varchar(128) default NULL, + `fm_ic_templatefolder` varchar(128) default NULL, + PRIMARY KEY (`fm_id`), + KEY `egw_felamimail_accounts_fm_owner` (`fm_owner`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_felamimail_displayfilter` ( + `fmail_filter_accountid` int(11) NOT NULL, + `fmail_filter_data` text, + PRIMARY KEY (`fmail_filter_accountid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_felamimail_signatures` ( + `fm_signatureid` int(11) NOT NULL auto_increment, + `fm_accountid` int(11) default NULL, + `fm_signature` text, + `fm_description` varchar(255) default NULL, + `fm_defaultsignature` tinyint(4) default NULL, + PRIMARY KEY (`fm_signatureid`), + UNIQUE KEY `egw_felamimail_signatures_fm_signatureid_fm_accountid` (`fm_signatureid`,`fm_accountid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_history_log` ( + `history_id` int(11) NOT NULL auto_increment, + `history_record_id` int(11) NOT NULL default '0', + `history_appname` varchar(64) NOT NULL default '', + `history_owner` int(11) NOT NULL default '0', + `history_status` varchar(64) NOT NULL, + `history_new_value` text, + `history_timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, + `history_old_value` text, + PRIMARY KEY (`history_id`), + KEY `egw_history_log_appname_record_id_status_timestamp` (`history_appname`,`history_record_id`,`history_status`,`history_timestamp`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_hooks` ( + `hook_id` int(11) NOT NULL auto_increment, + `hook_appname` varchar(255) default NULL, + `hook_location` varchar(255) default NULL, + `hook_filename` varchar(255) default NULL, + PRIMARY KEY (`hook_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=333 ; + +INSERT INTO `egw_hooks` (`hook_id`, `hook_appname`, `hook_location`, `hook_filename`) VALUES +(169, 'phpgwapi', 'editaccount', 'phpgwapi.vfs_home_hooks.editAccount'), +(168, 'phpgwapi', 'deleteaccount', 'phpgwapi.vfs_home_hooks.deleteAccount'), +(180, 'admin', 'group_manager', 'admin.uiaccounts.edit_group_hook'), +(179, 'admin', 'edit_user', 'admin.uiaccounts.edit_view_user_hook'), +(178, 'admin', 'view_user', 'admin.uiaccounts.edit_view_user_hook'), +(177, 'admin', 'deleteaccount', 'hook_deleteaccount.inc.php'), +(176, 'admin', 'config', 'hook_config.inc.php'), +(175, 'admin', 'after_navbar', 'hook_after_navbar.inc.php'), +(187, 'preferences', 'preferences', 'preferences_hooks::preferences'), +(186, 'preferences', 'deletegroup', 'preferences_hooks::deleteaccount'), +(185, 'preferences', 'deleteaccount', 'preferences_hooks::deleteaccount'), +(231, 'home', 'showUpdates', 'home.updates.showUpdates'), +(230, 'home', 'hasUpdates', 'home.updates.hasUpdates'), +(331, 'groupdav', 'preferences', 'groupdav_hooks::menus'), +(205, 'bookmarks', 'sidebox_menu', 'hook_sidebox_menu.inc.php'), +(204, 'bookmarks', 'preferences', 'hook_preferences.inc.php'), +(203, 'bookmarks', 'admin', 'hook_admin.inc.php'), +(216, 'emailadmin', 'admin', 'emailadmin_hooks::admin'), +(190, 'etemplate', 'sidebox_menu', 'hook_sidebox_menu.inc.php'), +(227, 'filemanager', 'settings', 'filemanager_hooks::settings'), +(226, 'filemanager', 'preferences', 'filemanager_hooks::preferences'), +(332, 'groupdav', 'settings', 'groupdav_hooks::settings'), +(254, 'news_admin', 'preferences', 'news_admin.news_admin_hooks.preferences'), +(253, 'news_admin', 'settings', 'news_admin.news_admin_hooks.settings'), +(252, 'news_admin', 'sidebox_menu', 'news_admin.news_admin_hooks.sidebox_menu'), +(251, 'news_admin', 'admin', 'news_admin.news_admin_hooks.admin'), +(266, 'phpbrain', 'preferences', 'hook_preferences.inc.php'), +(265, 'phpbrain', 'config_validate', 'hook_config_validate.inc.php'), +(264, 'phpbrain', 'config', 'hook_config.inc.php'), +(263, 'phpbrain', 'add_def_pref', 'hook_add_def_pref.inc.php'), +(262, 'phpbrain', 'admin', 'hook_admin.inc.php'), +(261, 'phpbrain', 'about', 'hook_about.inc.php'), +(54, 'phpsysinfo', 'admin', 'hook_admin.inc.php'), +(272, 'polls', 'sidebox_menu', 'hook_sidebox_menu.inc.php'), +(271, 'polls', 'admin', 'hook_admin.inc.php'), +(278, 'registration', 'admin', 'registration.uireg.all_hooks'), +(290, 'sambaadmin', 'editaccount', 'sambaadmin.bosambaadmin.updateAccount'), +(289, 'sambaadmin', 'addaccount', 'sambaadmin.bosambaadmin.updateAccount'), +(288, 'sambaadmin', 'changepassword', 'hook_changepassword.inc.php'), +(287, 'sambaadmin', 'admin', 'hook_admin.inc.php'), +(286, 'sambaadmin', 'edit_user', 'hook_edit_user.inc.php'), +(198, 'addressbook', 'search_link', 'addressbook_hooks::search_link'), +(197, 'addressbook', 'delete_category', 'addressbook.addressbook_bo.delete_category'), +(196, 'addressbook', 'deleteaccount', 'addressbook.addressbook_bo.deleteaccount'), +(195, 'addressbook', 'home', 'hook_home.inc.php'), +(194, 'addressbook', 'settings', 'addressbook_hooks::settings'), +(193, 'addressbook', 'sidebox_menu', 'addressbook_hooks::all_hooks'), +(192, 'addressbook', 'preferences', 'addressbook_hooks::all_hooks'), +(191, 'addressbook', 'admin', 'addressbook_hooks::all_hooks'), +(210, 'calendar', 'settings', 'calendar_hooks::settings'), +(209, 'calendar', 'preferences', 'calendar_hooks::preferences'), +(208, 'calendar', 'home', 'calendar_hooks::home'), +(207, 'calendar', 'deleteaccount', 'calendar.calendar_so.deleteaccount'), +(206, 'calendar', 'admin', 'calendar_hooks::admin'), +(319, 'felamimail', 'editaccount', 'felamimail.bofelamimail.updateAccount'), +(318, 'felamimail', 'deleteaccount', 'felamimail.bofelamimail.deleteAccount'), +(317, 'felamimail', 'addaccount', 'felamimail.bofelamimail.addAccount'), +(316, 'felamimail', 'sidebox_menu', 'felamimail_hooks::sidebox_menu'), +(315, 'felamimail', 'home', 'hook_home.inc.php'), +(314, 'felamimail', 'settings', 'felamimail_hooks::settings'), +(313, 'felamimail', 'preferences', 'felamimail_hooks::preferences'), +(233, 'importexport', 'admin', 'importexport_admin_prefs_sidebox_hooks::all_hooks'), +(232, 'importexport', 'sidebox_menu', 'importexport_admin_prefs_sidebox_hooks::all_hooks'), +(246, 'infolog', 'calendar_include_events', 'infolog.infolog_bo.cal_to_include'), +(245, 'infolog', 'infolog', 'infolog.infolog_ui.hook_view'), +(244, 'infolog', 'calendar_view', 'infolog.infolog_ui.hook_view'), +(243, 'infolog', 'projects_view', 'infolog.infolog_ui.hook_view'), +(242, 'infolog', 'addressbook_view', 'infolog.infolog_ui.hook_view'), +(241, 'infolog', 'home', 'hook_home.inc.php'), +(240, 'infolog', 'deleteaccount', 'infolog.infolog_so.change_delete_owner'), +(239, 'infolog', 'not_enum_group_acls', 'infolog_hooks::not_enum_group_acls'), +(238, 'infolog', 'admin', 'infolog_hooks::all_hooks'), +(237, 'infolog', 'verify_settings', 'infolog_hooks::verify_settings'), +(236, 'infolog', 'settings', 'infolog_hooks::settings'), +(235, 'infolog', 'preferences', 'infolog_hooks::all_hooks'), +(258, 'notifications', 'preferences', 'hook_preferences.inc.php'), +(257, 'notifications', 'after_navbar', 'hook_after_navbar.inc.php'), +(277, 'projectmanager', 'search_link', 'projectmanager_hooks::search_link'), +(276, 'projectmanager', 'sidebox_menu', 'projectmanager_hooks::all_hooks'), +(275, 'projectmanager', 'admin', 'projectmanager_hooks::all_hooks'), +(274, 'projectmanager', 'settings', 'projectmanager_hooks::settings'), +(273, 'projectmanager', 'preferences', 'projectmanager_hooks::all_hooks'), +(284, 'resources', 'calendar_resources', 'resources.resources_hooks.calendar_resources'), +(283, 'resources', 'search_link', 'resources.resources_hooks.search_link'), +(282, 'resources', 'sidebox_menu', 'resources.resources_hooks.admin_prefs_sidebox'), +(281, 'resources', 'admin', 'resources.resources_hooks.admin_prefs_sidebox'), +(280, 'resources', 'preferences', 'resources.resources_hooks.admin_prefs_sidebox'), +(296, 'sitemgr', 'sidebox_menu', 'hook_sidebox_menu.inc.php'), +(295, 'sitemgr', 'admin', 'hook_admin.inc.php'), +(294, 'sitemgr', 'about', 'hook_about.inc.php'), +(293, 'sitemgr', 'preferences', 'hook_preferences.inc.php'), +(306, 'timesheet', 'pm_cumulate', 'timesheet_hooks::cumulate'), +(305, 'timesheet', 'search_link', 'timesheet_hooks::search_link'), +(304, 'timesheet', 'sidebox_menu', 'timesheet_hooks::all_hooks'), +(303, 'timesheet', 'admin', 'timesheet_hooks::all_hooks'), +(302, 'timesheet', 'settings', 'timesheet_hooks::settings'), +(301, 'timesheet', 'preferences', 'timesheet_hooks::all_hooks'), +(330, 'tracker', 'search_link', 'tracker_hooks::search_link'), +(329, 'tracker', 'sidebox_menu', 'tracker_hooks::all_hooks'), +(328, 'tracker', 'admin', 'tracker_hooks::all_hooks'), +(327, 'tracker', 'settings', 'tracker_hooks::settings'), +(326, 'tracker', 'preferences', 'tracker_hooks::all_hooks'), +(310, 'wiki', 'config_validate', 'hook_config_validate.inc.php'), +(309, 'wiki', 'sidebox_menu', 'wiki_hooks::sidebox_menu'), +(308, 'wiki', 'admin', 'wiki_hooks::admin'), +(325, 'manual', 'config_validate', 'manual.uimanualadmin.config'), +(324, 'manual', 'config', 'manual.uimanualadmin.config'), +(323, 'manual', 'admin', 'manual.uimanualadmin.menu'), +(167, 'phpgwapi', 'addaccount', 'phpgwapi.vfs_home_hooks.addAccount'), +(174, 'admin', 'add_def_pref', 'hook_add_def_pref.inc.php'), +(173, 'admin', 'acl_manager', 'hook_acl_manager.inc.php'), +(170, 'phpgwapi', 'addgroup', 'phpgwapi.vfs_home_hooks.addGroup'), +(171, 'phpgwapi', 'deletegroup', 'phpgwapi.vfs_home_hooks.deleteGroup'), +(172, 'phpgwapi', 'editgroup', 'phpgwapi.vfs_home_hooks.editGroup'), +(181, 'admin', 'topmenu_info', 'hook_topmenu_info.inc.php'), +(182, 'admin', 'preferences', 'admin.admin_prefs_sidebox_hooks.all_hooks'), +(183, 'admin', 'admin', 'admin.admin_prefs_sidebox_hooks.all_hooks'), +(184, 'admin', 'sidebox_menu', 'admin.admin_prefs_sidebox_hooks.all_hooks'), +(188, 'preferences', 'settings', 'preferences_hooks::settings'), +(189, 'preferences', 'edit_user', 'preferences.uisettings.edit_user'), +(199, 'addressbook', 'calendar_resources', 'addressbook_hooks::calendar_resources'), +(200, 'addressbook', 'edit_user', 'addressbook_hooks::edit_user'), +(201, 'addressbook', 'config', 'hook_config.inc.php'), +(202, 'addressbook', 'group_acl', 'addressbook_hooks::group_acl'), +(211, 'calendar', 'sidebox_menu', 'calendar.calendar_ui.sidebox_menu'), +(212, 'calendar', 'search_link', 'calendar_hooks::search_link'), +(213, 'calendar', 'config_validate', 'calendar_hooks::config_validate'), +(214, 'calendar', 'timesheet_set', 'calendar.calendar_bo.timesheet_set'), +(215, 'calendar', 'export_limit', 'calendar_hooks::getAppExportLimit'), +(217, 'emailadmin', 'edit_user', 'emailadmin_hooks::edit_user'), +(218, 'emailadmin', 'view_user', 'emailadmin_hooks::edit_user'), +(219, 'emailadmin', 'edit_group', 'emailadmin_hooks::edit_group'), +(220, 'emailadmin', 'group_manager', 'emailadmin_hooks::edit_group'), +(221, 'emailadmin', 'deleteaccount', 'emailadmin_hooks::deleteaccount'), +(222, 'emailadmin', 'deletegroup', 'emailadmin_hooks::deletegroup'), +(223, 'emailadmin', 'changepassword', 'emailadmin_bo::changepassword'), +(224, 'emailadmin', 'smtp_server_types', 'emailadmin_hooks::server_types'), +(225, 'emailadmin', 'imap_server_types', 'emailadmin_hooks::server_types'), +(228, 'filemanager', 'sidebox_menu', 'filemanager_hooks::sidebox_menu'), +(229, 'filemanager', 'admin', 'filemanager_hooks::admin'), +(234, 'importexport', 'preferences', 'importexport_admin_prefs_sidebox_hooks::all_hooks'), +(247, 'infolog', 'calendar_include_todos', 'infolog.infolog_bo.cal_to_include'), +(248, 'infolog', 'sidebox_menu', 'infolog_hooks::all_hooks'), +(249, 'infolog', 'search_link', 'infolog_hooks::search_link'), +(250, 'infolog', 'pm_custom_app_icons', 'infolog.infolog_bo.pm_icons'), +(255, 'news_admin', 'home', 'hook_home.inc.php'), +(256, 'news_admin', 'config_validate', 'hook_config_validate.inc.php'), +(259, 'notifications', 'settings', 'hook_settings.inc.php'), +(260, 'notifications', 'admin', 'hook_admin.inc.php'), +(267, 'phpbrain', 'settings', 'hook_settings.inc.php'), +(268, 'phpbrain', 'sidebox_menu', 'hook_sidebox_menu.inc.php'), +(269, 'phpbrain', 'deleteaccount', 'phpbrain.bokb.deleteaccount'), +(270, 'phpbrain', 'search_link', 'phpbrain.bokb.search_link'), +(279, 'registration', 'logout', 'hook_logout.inc.php'), +(285, 'resources', 'delete_category', 'resources.resources_hooks.delete_category'), +(291, 'sambaadmin', 'addgroup', 'sambaadmin.bosambaadmin.updateGroup'), +(292, 'sambaadmin', 'editgroup', 'sambaadmin.bosambaadmin.updateGroup'), +(297, 'sitemgr', 'settings', 'hook_settings.inc.php'), +(298, 'syncml', 'preferences', 'syncml_hooks::preferences'), +(299, 'syncml', 'settings', 'syncml_hooks::settings'), +(300, 'syncml', 'deleteaccount', 'syncml.devices.deleteAccount'), +(307, 'timesheet', 'deleteaccount', 'timesheet.timesheet_bo.deleteaccount'), +(311, 'wiki', 'settings', 'wiki_hooks::settings'), +(312, 'wiki', 'search_link', 'wiki_hooks::search_link'), +(320, 'felamimail', 'edit_user', 'felamimail.bofelamimail.adminMenu'), +(321, 'felamimail', 'verify_settings', 'felamimail.bofelamimail.forcePrefReload'), +(322, 'felamimail', 'search_link', 'felamimail_hooks::search_link'); + +CREATE TABLE IF NOT EXISTS `egw_importexport_definitions` ( + `definition_id` int(11) NOT NULL auto_increment, + `name` varchar(255) default NULL, + `application` varchar(50) default NULL, + `plugin` varchar(100) default NULL, + `type` varchar(20) default NULL, + `allowed_users` varchar(255) default NULL, + `plugin_options` longtext, + `owner` int(11) default NULL, + `description` varchar(255) default NULL, + PRIMARY KEY (`definition_id`), + UNIQUE KEY `egw_importexport_definitions_name` (`name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_index` ( + `si_app` varchar(25) NOT NULL, + `si_app_id` varchar(50) NOT NULL, + `si_id` int(11) NOT NULL, + `si_owner` int(11) NOT NULL, + PRIMARY KEY (`si_app`,`si_app_id`,`si_id`), + KEY `egw_index_si_id` (`si_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_index_keywords` ( + `si_id` int(11) NOT NULL auto_increment, + `si_keyword` varchar(64) NOT NULL, + `si_ignore` tinyint(4) default NULL, + PRIMARY KEY (`si_id`), + UNIQUE KEY `egw_index_keywords_si_keyword` (`si_keyword`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_infolog` ( + `info_id` int(11) NOT NULL auto_increment, + `info_type` varchar(40) NOT NULL default 'task', + `info_from` varchar(255) default NULL, + `info_addr` varchar(255) default NULL, + `info_subject` varchar(255) default NULL, + `info_des` text, + `info_owner` int(11) NOT NULL default '0', + `info_responsible` varchar(255) NOT NULL default '0', + `info_access` varchar(10) default 'public', + `info_cat` int(11) NOT NULL default '0', + `info_datemodified` bigint(20) NOT NULL default '0', + `info_startdate` bigint(20) NOT NULL default '0', + `info_enddate` bigint(20) NOT NULL default '0', + `info_id_parent` int(11) NOT NULL default '0', + `info_planned_time` int(11) NOT NULL default '0', + `info_used_time` int(11) NOT NULL default '0', + `info_status` varchar(40) default 'done', + `info_confirm` varchar(10) default 'not', + `info_modifier` int(11) NOT NULL default '0', + `info_link_id` int(11) NOT NULL default '0', + `info_priority` smallint(6) default '1', + `pl_id` int(11) default NULL, + `info_price` double default NULL, + `info_percent` smallint(6) default '0', + `info_datecompleted` bigint(20) default NULL, + `info_location` varchar(255) default NULL, + `info_custom_from` tinyint(4) default NULL, + `info_uid` varchar(255) default NULL, + `info_replanned_time` int(11) NOT NULL default '0', + `info_cc` varchar(255) default NULL, + `caldav_name` varchar(64) default NULL, + `info_etag` int(11) default '0', + `info_created` bigint(20) default NULL, + `info_creator` int(11) default NULL, + PRIMARY KEY (`info_id`), + KEY `egw_infolog_owner_responsible_status_startdate` (`info_owner`,`info_responsible`,`info_status`,`info_startdate`), + KEY `egw_infolog_id_parent_owner_responsible_status_startdate` (`info_id_parent`,`info_owner`,`info_responsible`,`info_status`,`info_startdate`), + KEY `egw_infolog_caldav_name` (`caldav_name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_infolog_extra` ( + `info_id` int(11) NOT NULL default '0', + `info_extra_name` varchar(64) NOT NULL, + `info_extra_value` text, + PRIMARY KEY (`info_id`,`info_extra_name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_interserv` ( + `server_id` int(11) NOT NULL auto_increment, + `server_name` varchar(64) default NULL, + `server_host` varchar(255) default NULL, + `server_url` varchar(255) default NULL, + `trust_level` int(11) default NULL, + `trust_rel` int(11) default NULL, + `username` varchar(64) default NULL, + `password` varchar(255) default NULL, + `admin_name` varchar(255) default NULL, + `admin_email` varchar(255) default NULL, + `server_mode` varchar(16) NOT NULL default 'xmlrpc', + `server_security` varchar(16) default NULL, + PRIMARY KEY (`server_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; + +INSERT INTO `egw_interserv` (`server_id`, `server_name`, `server_host`, `server_url`, `trust_level`, `trust_rel`, `username`, `password`, `admin_name`, `admin_email`, `server_mode`, `server_security`) VALUES +(1, 'eGW demo', NULL, 'http://www.egroupware.org/egroupware/xmlrpc.php', 99, 0, NULL, NULL, NULL, NULL, 'xmlrpc', NULL); + +CREATE TABLE IF NOT EXISTS `egw_kb_articles` ( + `art_id` int(11) NOT NULL auto_increment, + `q_id` bigint(20) NOT NULL default '0', + `title` varchar(255) NOT NULL default '', + `topic` varchar(255) NOT NULL default '', + `text` longtext, + `cat_id` int(11) NOT NULL default '0', + `published` smallint(6) NOT NULL default '0', + `user_id` int(11) NOT NULL default '0', + `views` int(11) NOT NULL default '0', + `created` int(11) default NULL, + `modified` int(11) default NULL, + `modified_user_id` int(11) NOT NULL default '0', + `votes_1` int(11) NOT NULL default '0', + `votes_2` int(11) NOT NULL default '0', + `votes_3` int(11) NOT NULL default '0', + `votes_4` int(11) NOT NULL default '0', + `votes_5` int(11) NOT NULL default '0', + PRIMARY KEY (`art_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_kb_comment` ( + `comment_id` int(11) NOT NULL auto_increment, + `user_id` int(11) NOT NULL default '0', + `kb_comment` text, + `entered` int(11) default NULL, + `art_id` int(11) NOT NULL default '0', + `published` smallint(6) NOT NULL default '0', + PRIMARY KEY (`comment_id`), + KEY `phpgw_kb_comment_art_id` (`art_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_kb_questions` ( + `question_id` int(11) NOT NULL auto_increment, + `user_id` int(11) NOT NULL default '0', + `summary` text, + `details` text, + `cat_id` int(11) NOT NULL default '0', + `creation` int(11) default NULL, + `published` smallint(6) NOT NULL default '0', + PRIMARY KEY (`question_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `egw_kb_ratings` ( + `user_id` int(11) NOT NULL default '0', + `art_id` int(11) NOT NULL default '0', + PRIMARY KEY (`user_id`,`art_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_kb_related_art` ( + `art_id` int(11) NOT NULL default '0', + `related_art_id` int(11) NOT NULL default '0', + PRIMARY KEY (`art_id`,`related_art_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_kb_search` ( + `keyword` varchar(30) NOT NULL default '', + `art_id` int(11) NOT NULL default '0', + `score` bigint(20) NOT NULL default '0', + PRIMARY KEY (`keyword`,`art_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_kb_urls` ( + `art_id` int(11) NOT NULL default '0', + `art_url` varchar(255) NOT NULL default '', + `art_url_title` varchar(255) default NULL, + PRIMARY KEY (`art_id`,`art_url`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +CREATE TABLE IF NOT EXISTS `egw_lang` ( + `lang` varchar(5) NOT NULL default '', + `app_name` varchar(32) NOT NULL default 'common', + `message_id` varchar(128) NOT NULL default '', + `content` text, + PRIMARY KEY (`lang`,`app_name`,`message_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +INSERT INTO `egw_lang` (`lang`, `app_name`, `message_id`, `content`) VALUES +('it', 'admin', 'timeout for application session data in seconds (default 86400 = 1 day)', 'Timeout per i dati della sessione di un''applicazione in secondi (predefinito 86400 = 1 giorno)'), +('it', 'admin', 'timeout for sessions in seconds (default 14400 = 4 hours)', 'Timeout per la sessione in secondi (predefinito 14400 = 4 ore)'), +('it', 'admin', 'this category is currently being used by applications as a parent category', 'Questa categoria è attualmente utilizzata dalle applicazioni come categoria padre'), +('it', 'admin', 'this application requires an upgrade', 'Questa applicazione ha bisogno di un aggiornamento'), +('it', 'admin', 'this application is current', 'Questa è l''applicazione corrente'), +('it', 'admin', 'they must be removed before you can continue', 'Devono essere rimossi prima di poter proseguire'), +('it', 'admin', 'there already is a group with this name. userid''s can not have the same name as a groupid', 'C''è già un gruppo con questo nome. L''ID utente non può avere lo stesso nome di un gruppo.'), +('it', 'admin', 'the two passwords are not the same', 'Le due password non coincidono'), +('it', 'admin', 'the users bellow are still members of group %1', 'L''utente sottostante fa ancora parte del gruppo %1'), +('it', 'admin', 'the testjob sends you a mail everytime it is called.', 'Il TestJob invia una e-mail ogni volta che viene richiamato.'), +('it', 'admin', 'the text displayed to the user', 'il testo mostrato all''utente'), +('it', 'admin', 'the name used internaly (<= 20 chars), changeing it makes existing data unavailible', 'il nome usato internamente (<= 20 caratteri), cambiarlo rende i dati esistenti indisponibili'), +('it', 'admin', 'the loginid can not be more then 8 characters', 'La loginid non può essere più lunga di 8 caratteri'), +('it', 'admin', 'the login and password can not be the same', 'La login e la pasword non possono essere uguali'), +('it', 'admin', 'the install id of an instance can be found under admin > site configuration', 'L''ID di installazione può essere trovato sotto Admin > Configurazione per tutto il sito'), +('it', 'admin', 'the groups must include the primary group', 'I gruppi devono includere il gruppo principale'), +('it', 'admin', 'the api requires an upgrade', 'Le API hanno bisogno di essere aggiornate'), +('it', 'admin', 'the cumulated and anonymised data will be publically available:', 'I dati accumulati e i dati anonimi saranno pubblicamente disponibili:'), +('it', 'admin', 'the api is current', 'Le API sono aggiornate'), +('it', 'admin', 'that name has been used already', 'Quel nome è già stato utilizzato'), +('it', 'admin', 'that server name has been used already !', 'Questo nome di server è già stato utilizzato!'), +('it', 'admin', 'that loginid has already been taken', 'Quel nome utente è già stato scelto'), +('it', 'admin', 'template selection', 'Selezione Aspetto'), +('it', 'admin', 'text entry', 'Inserimento di Testo'), +('it', 'admin', 'that application name already exists.', 'Quel nome di applicazione esiste già'), +('it', 'admin', 'that application order must be a number.', 'Quel numero d''ordine deve essere un numero'), +('it', 'admin', 'success', 'Successo'), +('it', 'admin', 'switch it off, if users are randomly thrown out', 'Spegnilo in caso di logout casuali degli utenti'), +('it', 'admin', 'subversion checkout', 'Checkout di sottoversione'), +('it', 'admin', 'subtype', 'Sottotipo'), +('it', 'admin', 'submit to egroupware.org', 'Invia a egroupware.org'), +('it', 'admin', 'submit the search string', 'Invia la stringa di ricerca'), +('it', 'admin', 'submit statistic information', 'Invia le informazioni statistiche'), +('it', 'admin', 'submit displayed information?', 'Invia le informazioni mostrate'), +('it', 'admin', 'submit changes', 'Invia Modifiche'), +('it', 'admin', 'start testjob!', 'Inizia il Lavoro di Test'), +('it', 'admin', 'standard smtp-server', 'Server SMTP standard'), +('it', 'admin', 'standard pop3 server', 'Server POP3 standard'), +('it', 'admin', 'ssl', 'ssl'), +('it', 'admin', 'standard', 'standard'), +('it', 'admin', 'standard imap server', 'Server IMAP standard'), +('it', 'admin', 'sort the entries', 'ordina le voci'), +('it', 'admin', 'sorry, the follow users are still a member of the group %1', 'Spiacente, i seguenti utenti sono ancora membri del gruppo %1'), +('it', 'admin', 'sorry, the above users are still a member of the group %1', 'Spiacente, l''utente è ancora membro del gruppo %1'), +('it', 'admin', 'sorry, that group name has already been taken.', 'Spiacente, questo nome di gruppo è già stato utilizzato'), +('it', 'admin', 'soap', 'SOAP'), +('it', 'admin', 'site', 'Sito'), +('it', 'admin', 'show session ip address', 'Visualizza l''indirizzo IP della sessione'), +('it', 'admin', 'show phpinfo()', 'Visualizza phpinfo()'), +('it', 'admin', 'show error log', 'Visualizza i log di errore'), +('it', 'admin', 'show current action', 'Visualizza l''azione corrente'), +('it', 'admin', 'show access log', 'Visualizza i log di accesso'), +('it', 'admin', 'show ''powered by'' logo on', 'Visualizza il logo ''creato con'''), +('it', 'admin', 'should the login page include a language selectbox (useful for demo-sites) ?', 'Includere nella pagina di login un elenco a discesa per selezionare la lingua (utile per i siti-demo) ?'), +('it', 'admin', 'should exceptions contain a trace (including function arguments)', 'Le eccezioni dovrebbero contenere tracce, inclusi gli argomenti delle funzioni'), +('it', 'admin', 'set preference values.', 'Imposta i valori delle preferenze'), +('it', 'admin', 'server username', 'Username per il server'), +('it', 'admin', 'sessions last 30 days', 'Sessioni negli ultimi 30 giorni'), +('it', 'admin', 'server %1 has been updated', 'Il Server %1 è stato aggiornato'), +('it', 'admin', 'server list', 'Elenco Server'), +('it', 'admin', 'server password', 'Password del Server'), +('it', 'admin', 'server type(mode)', 'Tipo di Server(modo)'), +('it', 'admin', 'server url', 'URL del Server'), +('it', 'admin', 'selectbox', 'Elenco a discesa'), +('it', 'admin', 'select which location this app should appear on the navbar, lowest (left) to highest (right)', 'Seleziona in quale punto della Barra di Navigazione, dal più basso (sinistra) al più alto (destra), deve apparire questa applicazione'), +('it', 'admin', 'select where you want to store/retrieve user accounts', 'seleziona il modo per memorizzare/recuperare gli account utente'), +('it', 'admin', 'select where you want to store/retrieve filesystem information', 'seleziona il modo per memorizzare/recuperare le informazioni sul filesystem'), +('it', 'admin', 'select users for inclusion', 'Seleziona utenti per l''inclusione'), +('it', 'admin', 'select the parent category. if this is a main category select no category', 'Seleziona la categoria superiore. Se questa è una categoria principale seleziona NESSUNA CATEGORIA'), +('it', 'admin', 'select permissions this group will have', 'Seleziona i permessi che possiede questo gruppo'), +('it', 'admin', 'select group managers', 'Seleziona i Gestori del Gruppo'), +('it', 'admin', 'search peer servers', 'Cerca peer servers'), +('it', 'admin', 'security', 'Sicurezza'), +('it', 'admin', 'select accounts for which the custom field should be visible', 'Seleziona account ai quali il campo personalizzato sarà visibile'), +('it', 'admin', 'search accounts', 'Cerca account'), +('it', 'admin', 'search categories', 'Cerca categorie'), +('it', 'admin', 'search groups', 'Cerca gruppi'), +('it', 'admin', 'scheduled', 'Programmato'), +('it', 'admin', 'saves this entry', 'Salva questa voce.'), +('it', 'admin', 'saves the changes made and leaves', 'salva le modifiche fatte ed esce'), +('it', 'admin', 'save the category and return back to the list', 'salva la categoria e ritorna alla lista'), +('it', 'admin', 'save the category', 'salva la categoria'), +('it', 'admin', 'rpm or debian package', 'Pacchetto RPM o Debian'), +('it', 'admin', 'run asynchronous services', 'Esegui lo Schedulatore'), +('it', 'admin', 'route all mails to', 'Indirizza tutte le mail a'), +('it', 'admin', 'return to view account', 'Ritorna alla visualizzazone dell''account'), +('it', 'admin', 'return to admin mainscreen', 'ritorna alla pagina principale di amministrazione'), +('it', 'admin', 'requested', 'Richiesto'), +('it', 'admin', 'remove all users from this group ?', 'Rimuovi tutti gli utenti da questo gruppo ?'), +('it', 'admin', 'remove all users from this group', 'Rimuovi tutti gli utenti da questo gruppo'), +('it', 'admin', 'remove', 'Rimuovi'), +('it', 'admin', 'remote instance saved', 'Istanza remota salvata'), +('it', 'admin', 'remote administration need to be enabled in the remote instance under admin > site configuration!', 'L''amministrazione remota deve essere abilitata nella istanza remota sotto Admin > Configurazione per tutto il sito'), +('it', 'admin', 'remote administration instances', 'Istanze di amministrazione remota'), +('it', 'admin', 're-enter password', 'Reinserisci la password'), +('it', 'admin', 'read this list of methods.', 'Leggi questa lista dei metodi'), +('it', 'admin', 'register application hooks', 'Registra gli agganci alle chiamate dell''applicazione'), +('it', 'admin', 'quota size in mbyte', 'dimensione quota in MByte'), +('it', 'admin', 'quota settings', 'impostazioni quota'), +('it', 'admin', 'qmaildotmode', 'qmaildotmode'), +('it', 'admin', 'primary group', 'Gruppo principale'), +('it', 'admin', 'preferences', 'Preferenze'), +('it', 'admin', 'postpone for', 'Rimanda per'), +('it', 'admin', 'postfix with ldap', 'Postfix con LDAP'), +('it', 'admin', 'please select', 'Per favore selezionare'), +('it', 'admin', 'please run setup to become current', 'Per favore lancia il setup'), +('it', 'admin', 'please enter a name for that server !', 'Per favore inserisci un nome per quel server'), +('it', 'admin', 'please enter a name', 'Per favore inserisci un nome'), +('it', 'admin', 'php version', 'Versione PHP'), +('it', 'admin', 'phpinfo', 'Informazioni sul PHP'), +('it', 'admin', 'personal: eg. within a family', 'Personale: per esempio in una famiglia'), +('it', 'admin', 'permissions', 'Permessi'), +('it', 'admin', 'permissions this group has', 'Permessi che questo gruppo ha'), +('it', 'admin', 'permission denied !!!', 'Permesso negato'), +('it', 'admin', 'permission denied', 'Permesso negato'), +('it', 'admin', 'percent this user has logged out', 'Percentuale di logout di quest''utente'), +('it', 'admin', 'peer servers', 'Peer servers'), +('it', 'admin', 'percent of users that logged out', 'Percentuale di utenti che sono usciti dal sistema in maniera corretta'), +('it', 'admin', 'peer server list', 'Lista Peer server'), +('it', 'admin', 'path information', 'Informazioni sul Path'), +('it', 'admin', 'password updated', 'Password aggiornata'), +('it', 'admin', 'password for smtp-authentication', 'Password per autenticazione SMTP'), +('it', 'admin', 'passthrough', 'passthrough'), +('it', 'admin', 'own install id:', 'Tuo ID installazione'), +('it', 'admin', 'outbound', 'in uscita'), +('it', 'admin', 'order', 'Ordine'), +('it', 'admin', 'operating system', 'Sistema operativo'), +('it', 'admin', 'one hour', 'Un''ora'), +('it', 'admin', 'one month', 'Un mese'), +('it', 'admin', 'one week', 'Una settimana'), +('it', 'admin', 'only below displayed information is directly submitted to %s.', 'Solo le informazioni sottostanti vengono inviate direttamente a %s.'), +('it', 'admin', 'one day', 'Un giorno'), +('it', 'admin', 'official egroupware usage statistic', 'Statistica ufficiale di utilizzo di EGroupware'), +('it', 'admin', 'number of users', 'Numero di utenti'), +('it', 'admin', 'number of sessions / egroupware logins in the last 30 days', 'Numero di sessioni / accessi EGroupware negli ultimi 30 giorni'), +('it', 'admin', 'number of row for a multiline inputfield or line of a multi-select-box', 'Numero di righe per un campo di testo oppure un campo di selezione multipla'), +('it', 'admin', 'number of active users', 'Numero di utenti attivi'), +('it', 'admin', 'note: ssl available only if php is compiled with curl support', 'Nota: SSL dispobile solo con il PHP compilato con il supporto curl'), +('it', 'admin', 'non profit: clubs, associations, ...', 'Non profit: Club, Associazioni, ...'), +('it', 'admin', 'no permission to create groups', 'nessun permesso di creazione gruppi'), +('it', 'admin', 'no permission to add users', 'nessun permesso di aggiunta utenti'), +('it', 'admin', 'no permission to add groups', 'nessun permesso di aggiunta gruppi'), +('it', 'admin', 'no modes available', 'nessuna modalità disponibile'), +('it', 'admin', 'no matches found', 'Nessuna corrispondenza trovata.'), +('it', 'admin', 'no login history exists for this user', 'Non esiste una cronologia di login per questo utente'), +('it', 'admin', 'no algorithms available', 'nessun algoritmo disponibile'), +('it', 'admin', 'no alternate email address', 'nessun indirizzo email alternativo'), +('it', 'admin', 'no jobs in the database !!!', 'Nessun job nel database !!!'), +('it', 'admin', 'new password [ leave blank for no change ]', 'Nuova password [ Lascia in bianco per non cambiarla ]'), +('it', 'admin', 'next run', 'Prossima esecuzione'), +('it', 'admin', 'new group name', 'Nome nuovo gruppo'), +('it', 'admin', 'new name', 'nuovo nome'), +('it', 'admin', 'name of the egroupware instance, eg. default', 'Nome della istanza EGroupware'), +('it', 'admin', 'name must not be empty !!!', 'Il nome non può essere vuoto !!!'), +('it', 'admin', 'month', 'Mese'), +('it', 'admin', 'more secure', 'Molto sicuro'), +('it', 'admin', 'mode', 'Modalità'), +('it', 'admin', 'modified', 'Modificato'), +('it', 'admin', 'minute', 'Minuti'), +('it', 'admin', 'minimum account id (e.g. 500 or 100, etc.)', 'ID minimo per l''account (es. 500 or 100, etc.)'), +('it', 'admin', 'method', 'Metodo'), +('it', 'admin', 'message has been updated', 'il messaggio è stato aggiornato'), +('it', 'admin', 'maximum entries in click path history', 'Voci massime cliccando nella history dei path'), +('it', 'admin', 'maximum account id (e.g. 65535 or 1000000)', 'ID massimo per l''account (es. 65535 or 100000, etc.)'), +('it', 'admin', 'max length of the input [, length of the inputfield (optional)]', 'lunghezza massima del input [, length of the inputfield (optional)]'), +('it', 'admin', 'main screen message', 'Messaggio nella schermata principale'), +('it', 'admin', 'manager', 'Manager'), +('it', 'admin', 'main email-address', 'Indirizzo email Principale'), +('it', 'admin', 'mail settings', 'Impostazioni Posta'), +('it', 'admin', 'login-status', 'Stato di accesso'), +('it', 'admin', 'loginid', 'ID di Login'), +('it', 'admin', 'logintime', 'Orario ingresso'), +('it', 'admin', 'logoutime', 'Orario logout'), +('it', 'admin', 'login message', 'Messaggio di Login'), +('it', 'admin', 'login screen', 'Schermata di login'), +('it', 'admin', 'login shell', 'Shell di login'), +('it', 'admin', 'login time', 'Ora Login'), +('it', 'admin', 'login history', 'Cronologia Collegamenti'), +('it', 'admin', 'logged out', 'Uscito'), +('it', 'admin', 'list of current users', 'lista utenti attivi'), +('it', 'admin', 'list config settings', 'Lista impostazioni di configurazione'), +('it', 'admin', 'list current sessions', 'Lista sessioni currenti'), +('it', 'admin', 'length
rows', 'Lunghezza
Righe'), +('it', 'admin', 'leaves without saveing', 'esce senza salvare'), +('it', 'admin', 'leave without saveing the entry', 'Esci senza salvare la voce'), +('it', 'admin', 'leave the group untouched and return back to the list', 'Lascia i gruppi inalterati e ritorna alla lista'), +('it', 'admin', 'leave the category untouched and return back to the list', 'lascia le categorie inalterate e ritorna alla lista'), +('it', 'admin', 'ldap rootdn', 'LDAP rootdn'), +('it', 'admin', 'leave empty for no quota', 'lascia vuoto per nessuna quota'), +('it', 'admin', 'ldap root password', 'password di root LDAP'), +('it', 'admin', 'ldap host', 'host LDAP'), +('it', 'admin', 'ldap groups context', 'contesto gruppi LDAP'), +('it', 'admin', 'ldap default shell (e.g. /bin/bash)', 'shell predefinita LDAP (es: /bin/bash)'), +('it', 'admin', 'ldap encryption type', 'tipo di cifratura LDAP'), +('it', 'admin', 'ldap default homedirectory prefix (e.g. /home for /home/username)', 'prefisso predefinito per le homedirectory LDAP (es. /home per /home/username)'), +('it', 'admin', 'ldap accounts context', 'contesto account LDAP'), +('it', 'admin', 'last time read', 'Ultima volta letto'), +('it', 'admin', 'last submission:', 'Ultimo invio dati:'), +('it', 'admin', 'last login from', 'ultimo login da'), +('it', 'admin', 'last login', 'ultimo login'), +('it', 'admin', 'last action', 'Ultima azione'), +('it', 'admin', 'last %1 logins for %2', 'Ultimi %1 login per %2'), +('it', 'admin', 'last %1 logins', 'Ultimi %1 login'), +('it', 'admin', 'kill session', 'Termina sessione'), +('it', 'admin', 'kill', 'Termina'), +('it', 'admin', 'jobs', 'Jobs'), +('it', 'admin', 'ip', 'IP'), +('it', 'admin', 'invalid value "%1" use yes or no!', 'Valore "%1" non valido, usare "sì" o "no"'), +('it', 'admin', 'invalid formated date "%1"!', 'Formato data non valido'), +('it', 'admin', 'invalid remote id or name "%1"!', 'ID remoto o nome "%1" non validi!'), +('it', 'admin', 'international use', 'Uso Internazionale'), +('it', 'admin', 'interface', 'Interfaccia'), +('it', 'admin', 'instance', 'Istanza'), +('it', 'admin', 'installed crontab', 'Crontab Installati'), +('it', 'admin', 'installation type', 'Tipo di installazione'), +('it', 'admin', 'installed applications, percentage of allowed users and total number of entries.', 'Applicazioni installate, percentuale di utenti consentiti e numero totale di voci'), +('it', 'admin', 'install id', 'ID dell''installazione'), +('it', 'admin', 'install crontab', 'Installa crontab'), +('it', 'admin', 'initial', 'Iniziale'), +('it', 'admin', 'inbound', 'in ingresso'), +('it', 'admin', 'in mbyte', 'in MByte'), +('it', 'admin', 'if using ldap, do you want to manage homedirectory and loginshell attributes?', 'Nel caso si utilizzi LDAP, vuoi gestire gli attributi di homedirectory e shell di login?'), +('it', 'admin', 'idle', 'inattivo'), +('it', 'admin', 'if no acl records for user or any group the user is a member of', 'Se non ci sono record nell''ACL per l''utente o qualche gruppo, l''utente è un membro di'), +('it', 'admin', 'icon', 'Icona'), +('it', 'admin', 'how should email addresses for new users be constructed?', 'Come deve essere strutturata la mail per i nuovi utenti ?'), +('it', 'admin', 'how many minutes should an account or ip be blocked (default 30) ?', 'Quanti minuti un account o un IP rimarrà bloccato (predefinito 30) ?'), +('it', 'admin', 'how many entries should non-admins be able to export (empty = no limit, no = no export)', 'Quante voci possono esportare gli utenti semplici. Vuoto = nessun limite, no = nessuna esportazione consentita'), +('it', 'admin', 'how many days should entries stay in the access log, before they get deleted (default 90) ?', 'Quanti giorni le voci rimangono nel log di accesso prima che vengano cancellate (predefinito 90) ?'), +('it', 'admin', 'how big should thumbnails for linked images be (maximum in pixels) ?', 'Dimensione massima in pixel delle miniature per le immagini collegate'), +('it', 'admin', 'hour
(0-23)', 'Ore
(0-23)'), +('it', 'admin', 'host information', 'Informazioni host'), +('it', 'admin', 'home directory', 'Cartella Personale'), +('it', 'admin', 'hide php information', 'nascondi informazioni php'), +('it', 'admin', 'hash', 'Hash'), +('it', 'admin', 'group name', 'Nome Gruppo'), +('it', 'admin', 'group manager', 'Gestore del Gruppo'), +('it', 'admin', 'group ?', 'Gruppo ?'), +('it', 'admin', 'group list', 'Lista Gruppi'), +('it', 'admin', 'grant', 'Consenti'), +('it', 'admin', 'governmental: incl. state or municipal authorities or services', 'Governativo: incluse autorità o servizi municipali'), +('it', 'admin', 'go directly to admin menu, returning here the next time you click on administration.', 'Vai direttamentte al menù di amministrazione, tornando qui la prossima volta che fai click su "Amministra"'), +('it', 'admin', 'full name', 'Nome completo'), +('it', 'admin', 'forward only', 'inoltra solo'), +('it', 'admin', 'forward also to', 'inoltra anche a'), +('it', 'admin', 'forward emails to', 'inoltra le email a'), +('it', 'admin', 'force users to change their password regularily?(empty for no,number for after that number of days', 'Imposta l''obbligo di modifica periodica della password. Immetti il numero di giorni. Vuoto = Nessun obbligo di cambio periodico della password'), +('it', 'admin', 'force selectbox', 'Forza elenco a discesa'), +('it', 'admin', 'force password strength (1-5, default empty: no check against rules for a strong password)?', 'Imposta la sicurezza della password. 1 = debole, fino a 5 = molto sicura. Predefinito = vuoto, la sicurezza della password non viene controllata.'), +('it', 'admin', 'for the times below (empty values count as ''*'', all empty = every minute)', 'per i tempi sottostanti (un valore vuoto equivale a ''*'', tutti vuoti = ogni minuto)'), +('it', 'admin', 'for the times above', 'per il tempo sovrastante'), +('it', 'admin', 'find and register all application hooks', 'Trova e registra tutti gli gli agganci alle chiamate delle applicazioni'), +('it', 'admin', 'file space must be an integer', 'Lo spazio per i file deve essere un intero'), +('it', 'admin', 'file space', 'Spazio per i file'), +('it', 'admin', 'false', 'Falso'), +('it', 'admin', 'field ''%1'' already exists !!!', 'Il campo ''%1'' esiste già !!!'), +('it', 'admin', 'fallback (after each pageview)', 'fallback (dopo ogni cambio pagina)'), +('it', 'admin', 'explanation of ldapman', 'Questo modulo è stato testato fino ad oggi per POSTFIX, LDAP, Courier-IMAP e necessita degli schemi CORE e QMAIL(OID7914). Ulteriori dettagli riguardo l''uso e la configurazione di questo sistema possono essere trovati in README.ldap nella cartella documenti di ADMIN.'), +('it', 'admin', 'expires', 'Scade'), +('it', 'admin', 'error: %1 not found or other error !!!', 'Errore: %1 non trovato o altro errore !!!'), +('it', 'admin', 'error! no appname found', 'Errore! Nome applicazione non trovato'), +('it', 'admin', 'error saving to db:', 'Errore durante il salvataggio nel database!'), +('it', 'admin', 'error setting timer, wrong syntax or maybe there''s one already running !!!', 'Errore impostando il timer, sintassi sbagliata o forse uno è già in esecuzione !!!'), +('it', 'admin', 'error saving the command!', 'Errore durante il salvataggio del comando!'), +('it', 'admin', 'error saving account!', 'Errore durante il salvataggio dell''account!'), +('it', 'admin', 'error saving', 'Errore durante il salvataggio!'), +('it', 'admin', 'error deleting log entry!', 'Errore durante la cancellazione della voce dal registro!'), +('it', 'admin', 'error changing the password for %1 !!!', 'Errore durante il cambio password per %1 !'), +('it', 'admin', 'error changing the password for % !!!', 'Errore durante il cambio password per % !'), +('it', 'admin', 'error canceling timer, maybe there''s none set !!!', 'Errore cancellando il timer, forse non è impostato !!!'), +('it', 'admin', 'enter your smtp server port', 'Enter your SMTP server port'), +('it', 'admin', 'enter your http proxy server', 'Inserire il proxy HTTP'), +('it', 'admin', 'enter your http proxy server port', 'Inserire la porta del proxy HTTP'), +('it', 'admin', 'enter your smtp server hostname or ip address', 'Enter your SMTP server hostname or IP address'), +('it', 'admin', 'enter your default mail domain ( from: user@domain )', 'Inserisci il tuo dominio di posta predefinito ( Da: utente@dominio )'), +('it', 'admin', 'enter your default ftp server', 'Inserire il server FTP predefinito'), +('it', 'admin', 'enter the vfs-path where additional images, icons or logos can be placed (and found by egroupwares applications). the path must ', 'Inserisci il percorso VFS dove immagini, icone e logo aggiuntivi potranno essere memorizzati e localizzati dalle applicazioni di EGroupware.
Il percorso DEVE iniziare con / ed essere leggibile da parte di tutti gli utenti'), +('it', 'admin', 'enter the url where your logo should link to', 'Inserisci l''url a cui punterà il tuo logo'), +('it', 'admin', 'enter the url or filename (in your templates image directory) of your favicon (the little icon that appears in the browsers tabs', 'Inserisci l''URL oppure il percorso per il file favicon'), +('it', 'admin', 'enter the url or filename (in phpgwapi/templates/default/images) of your logo', 'Inserisci l''URL o il nome del file (in phpgwapi/templates/default/images) del tuo logo'), +('it', 'admin', 'enter the title of your logo', 'Inserisci il titolo del tuo logo'), +('it', 'admin', 'enter the title for your site', 'Inserisci il titolo per il tuo sito'), +('it', 'admin', 'enter the site username for peer servers', 'Inserisci il nome utente per i peer server'), +('it', 'admin', 'enter the site password for peer servers', 'Inserisci la password per i peer server'), +('it', 'admin', 'enter the search string. to show all entries, empty this field and press the submit button again', 'Inserisci la stringa di ricerca. Per vedere tutta la lista, svuota il campo e premi ancora il pulsante INVIA'), +('it', 'admin', 'enter the location of egroupware''s url.
example: http://www.domain.com/egroupware   or   /egroupware
no trail', 'Inserisci l''URL di eGroupWare.
Esempio: http://www.domain.com/egroupware or /egroupware
Senza la barra finale'), +('it', 'admin', 'enter the hostname of the machine on which this server is running', 'Inserisci l''hostname della macchina su cui sta girando questo server'), +('it', 'admin', 'enter the full path for users and group files.
examples: /files, e:files', 'Inserisci il percorso completo per i file di utenti e gruppi.
Esempio: /files, E:\\FILES'), +('it', 'admin', 'enter the full path for users and group files.
examples: /files, e:\\files', 'Inserisci il percorso completo per i file di utenti e gruppi.
Esempio: /files, E:\\FILES'), +('it', 'admin', 'enter the full path for temporary files.
examples: /tmp, c:temp', 'Inserisci il percorso completo per i file temporanei.
Esempio: /tmp, C:\\TEMP'), +('it', 'admin', 'enter the full path for temporary files.
examples: /tmp, c:\\temp', 'Inserisci il percorso completo per i file temporanei.
Esempio: /tmp, C:\\TEMP'), +('it', 'admin', 'enter the background color for the site title', 'Inserisci il colore di background per il titolo del sito'), +('it', 'admin', 'enter the background color for the login page', 'Inserisci il colore di background per la pagina di login'), +('it', 'admin', 'enter some random text for app_session
encryption (requires mcrypt)', 'Inserisci del testo casuale per la cifratura di app_session (richiede mcrypt)'), +('it', 'admin', 'enter a description for the category', 'inserisci una descrizione per la categoria'), +('it', 'admin', 'enabled - popup window', 'Attivo - Finestra Popup'), +('it', 'admin', 'enabled - hidden from navbar', 'Attivo - nascosto dalla barra di navigazione'), +('it', 'admin', 'enable the xmlrpc service', 'Attiva servizio xmlrpc'), +('it', 'admin', 'enable spellcheck in rich text editor', 'Abilita il controllo ortografico nell''editor di testo'), +('it', 'admin', 'enable debug-messages', 'Attiva i messaggi di debug'), +('it', 'admin', 'enable the soap service', 'Attiva servizio soap'), +('it', 'admin', 'email address', 'Indirizzo email'), +('it', 'admin', 'email account active', 'Account email attivo'), +('it', 'admin', 'either install id and config password needed or the remote hash!', 'Sia ID e password di configurazione sono necessari, oppure l''hash remoto!'), +('it', 'admin', 'egroupware version', 'Versione EGroupware'), +('it', 'admin', 'egroupware directory', 'Directory di EGroupware'), +('it', 'admin', 'educational: universities, schools, ...', 'Enti formativi: Università, Scuole, ...'), +('it', 'admin', 'edit user account', 'Modifica account dell''utente'), +('it', 'admin', 'edit user', 'modifica utente'), +('it', 'admin', 'edit this user', 'modifica questo utente'), +('it', 'admin', 'edit this group', 'modifica questo gruppo'), +('it', 'admin', 'edit this category', 'modifica questa categoria'), +('it', 'admin', 'edit table format', 'Modifica il formato della tabella'), +('it', 'admin', 'edit peer server', 'Modifica Peer Server'), +('it', 'admin', 'edit main screen message', 'Modifica il messaggio della schermata principale'), +('it', 'admin', 'edit login screen message', 'Modifica il messaggio della schermata di login'), +('it', 'admin', 'edit group acl''s', 'modifica le ACL del gruppo'), +('it', 'admin', 'edit group', 'Modifica Gruppo'), +('it', 'admin', 'edit global category for %1', 'Modifica la categoria globale per %1'), +('it', 'admin', 'edit global category', 'Modifica la categoria globale'), +('it', 'admin', 'edit email settings', 'Modifica impostazioni email'), +('it', 'admin', 'edit application', 'Modifica Applicazione'), +('it', 'admin', 'edit account', 'Modifica account'), +('it', 'admin', 'each value is a line like id[=label]', 'ogni valore è una linea come id[=label]'), +('it', 'admin', 'each value is a line like [=