id
int64 0
45.1k
| file_name
stringlengths 4
68
| file_path
stringlengths 14
193
| content
stringlengths 32
9.62M
| size
int64 32
9.62M
| language
stringclasses 1
value | extension
stringclasses 6
values | total_lines
int64 1
136k
| avg_line_length
float64 3
903k
| max_line_length
int64 3
4.51M
| alphanum_fraction
float64 0
1
| repo_name
stringclasses 779
values | repo_stars
int64 0
882
| repo_forks
int64 0
108
| repo_open_issues
int64 0
90
| repo_license
stringclasses 8
values | repo_extraction_date
stringclasses 146
values | sha
stringlengths 64
64
| __index_level_0__
int64 0
45.1k
| exdup_ids_cmlisp_stkv2
sequencelengths 1
47
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
43,751 | .travis.yml | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/fast-http-20191007-git/.travis.yml | language: common-lisp
sudo: required
env:
global:
- PATH=~/.roswell/bin:~/nginx/sbin:$PATH
- ROSWELL_INSTALL_DIR=$HOME/.roswell
matrix:
- LISP=sbcl-bin
- LISP=ccl-bin
- LISP=clisp
- LISP=abcl
- LISP=ecl
install:
# Install Roswell
- curl -L https://raw.githubusercontent.com/roswell/roswell/release/scripts/install-for-ci.sh | sh
- ros install prove
- git clone https://github.com/joyent/http-parser ~/http-parser
- cp $TRAVIS_BUILD_DIR/benchmark/http-parser.c ~/http-parser/mybench.c
- (cd ~/http-parser && make http_parser.o && gcc -Wall -Wextra -Werror -Wno-error=unused-but-set-variable -O3 http_parser.o mybench.c -o mybench)
before_script:
- ros --version
- ros config
script:
- ros -s fast-http-test
- run-prove fast-http-test.asd
- ros -s fast-http-test -e '(fast-http-test.benchmark:run-ll-benchmark)'
- ~/http-parser/mybench
| 894 | Common Lisp | .l | 27 | 29.888889 | 147 | 0.704519 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | 423fbd29b1d8ae6ec6b9c4a250ea1076d24d7d81a8fe02673afebfb8c2fed29d | 43,751 | [
-1
] |
43,776 | local-time.texinfo | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/doc/local-time.texinfo | \input texinfo @c -*- Mode: Texinfo; Mode: auto-fill -*-
@c %**start of header
@setfilename local-time.info
@settitle The local-time Manual
@exampleindent 2
@c @documentencoding utf-8
@macro name {}
@code{local-time}
@end macro
@macro mathx {tex, non-tex}
@iftex
@math{\tex\}
@end iftex
@ifnottex
@emph{\non-tex\}
@end ifnottex
@end macro
@macro impnote {text}
@quotation Implementor's note
@emph{\text\}
@end quotation
@end macro
@c Set ROMANCOMMENTS to get comments in roman font.
@ifset ROMANCOMMENTS
@alias lispcmt = r
@end ifset
@ifclear ROMANCOMMENTS
@alias lispcmt = asis
@end ifclear
@c Index for public api.
@defindex it
@macro pub {name}
@itindex \name\
@c
@end macro
@macro k {what}
@code{\what\}
@end macro
@iftex
@alias v = asis
@alias cl = code
@end iftex
@ifnottex
@alias v = var
@alias cl = strong
@end ifnottex
@c Show variables, clauses, and concepts in the same index.
@syncodeindex it cp
@syncodeindex vr cp
@copying
Copyright @copyright{} 2012 Daniel Lowe <dlowe dlowe.net> @*
Copyright @copyright{} 2012 Attila Lendvai <attila.lendvai gmail.com> @*
@quotation
This manual describes the @name{} Common Lisp library which is
based on Erik Naggum's @emph{The Long, Painful History of Time}
[NaggumPaper] paper.
@end quotation
@end copying
@c %**end of header
@titlepage
@title The @name{} Manual
@subtitle Version 1.0.0
@author Daniel Lowe
@author Attila Lendvai
@page
@vskip 0pt plus 1filll
@insertcopying
@end titlepage
@contents
@ifnottex
@node Top
@top @name{}
@insertcopying
@end ifnottex
@menu
* Introduction::
* Public API::
* Other Features::
* References::
* Comprehensive Index::
@end menu
@c ===================================================================
@node Introduction
@chapter Introduction
@menu
* Portability::
@end menu
The @name{} library is a Common Lisp library for the manipulation of
dates, times and intervals. It was originally based almost entirely
upon Erik Naggum's paper @emph{The Long Painful History of Time}
[NaggumPaper]. Many of the core concepts originated from this paper,
such as the seperation of days and seconds, the choice of 2000-03-01
as the standard epoch, and the timestring format.
@c ===================================================================
@node Portability
@section Portability
This implementation assumes that time zone information is stored in
the tzfile format. The default timezone is loaded from
/etc/localtime. On non-POSIX systems, this will certainly give
different results than the system time handling.
local-time currently supports sub-second precision clocks with ABCL,
Allegro, CMUCL, CCL, SBCL, and LispWorks for Linux or Darwin. All
others will be able to retrieve the time with second precision using
@code{get-universal-time}. You may add support for your own
implementation by implementing the clock generic protocol documented
here.
@c ===================================================================
@node Public API
@chapter Public API
@menu
* Types::
* Timezones::
* Creating timestamp Objects::
* Querying timestamp Objects::
* Manipulating Date and Time Values::
* Parsing and Formatting::
* Clocks::
@end menu
@c ===================================================================
@node Types
@section Types
It's a good idea to treat all values as immutable objects. @name{}
will not modify any object it was given unless explicitly asked to by
the @code{:into} keyword argument.
@itindex timestamp
@deftp Class timestamp day sec nsec
@code{timestamp} values can represent either a @emph{date},
a @emph{daytime} or a @emph{time} value. It has the following slots:
@lisp
(defclass timestamp ()
((day :type integer)
(sec :type integer)
(nsec :type (integer 0 999999999))))
@end lisp
The following constraints apply to the specific types:
@itemize
@item
@emph{date}: must have a @var{+utc-zone+} timezone and the @var{sec}
slot must be the first second of a day; In other words, the time
elements of the @code{timestamp} value must have their least possible
values.
@item
@emph{time}: the @var{day} slot must be zero.
@end itemize
@end deftp
@deftp Struct timezone path name loaded
@code{timezone} objects represent timezones - local and political
modifications to the time representation. Timezones are responsible
for storing offsets from GMT, abbreviations for different
sub-timezones, and the times each sub-timezone is to be in effect.
@end deftp
@c ===================================================================
@node Timezones
@section Timezones
@itindex *default-timezone*
@defvr Default *default-timezone*
The variable @var{*default-timezone*} contains the timezone that will
be used by default if none is specified. It is loaded from
@emph{/etc/localtime} when the library is loaded. If
@emph{/etc/localtime} is not present, it will default to UTC.
@end defvr
@itindex +utc-zone+
@defvr Constant +utc-zone+
The variable @var{+utc-zone+} contains a timezone corresponding to
UTC.
@end defvr
@itindex define-timezone
@defmac define-timezone zone-name zone-file &key (load nil)
Define @var{zone-name} (a symbol or a string) as a new timezone,
lazy-loaded from @var{zone-file} (a pathname designator relative to
the zoneinfo directory on this system. If @var{load} is true, load
immediately.
@end defmac
@itindex zone-name
@defmac zone-name timezone
Returns timezone name.
@end defmac
@itindex find-timezone-by-location-name
@defun find-timezone-by-location-name name
Returns the timezone found at the location name (such as
@code{US/Eastern}). @code{reread-timezone-repository} must be called
before this function is used.
@end defun
@itindex timezones-matching-subzone
@defun timezones-matching-subzone abbreviated-name timestamp
Returns list of lists of active timezone, matched subzone and last transition time
for timezones that have subzone matching specified @code{ABBREVIATED-NAME} as of @code{TIMESTAMP} moment if provided.
@code{reread-timezone-repository} must be called before this function
is used.
@end defun
@itindex all-timezones-matching-subzone
@defun all-timezones-matching-subzone abbreviated-name
Returns list of lists of timezone, matched subzone and last transition time
for timezones that have subzone matching specified @code{ABBREVIATED-NAME}.
Includes both active and historical timezones.
@code{reread-timezone-repository} must be called before this function
is used.
@end defun
@itindex reread-timezone-repository
@defun reread-timezone-repository &key (timezone-repository *default-timezone-repository-path*)
Walks the current repository, reading all tzinfo files updating
indexes. The default timezone repository is set to the zoneinfo/
directory of the local-time system.
@end defun
@c ===================================================================
@node Creating timestamp Objects
@section Creating @code{timestamp} Objects
@itindex universal-to-timestamp
@defun universal-to-timestamp universal &key (nsec 0)
Produces a @code{timestamp} instance from the provided universal time
@var{universal}. Universal time is defined in the Common Lisp
Specification as the number of seconds since 1900-01-01T00:00:00Z.
@end defun
@itindex unix-to-timestamp
@defun unix-to-timestamp unix &key (nsec 0)
Produces a @code{timestamp} instance from the provided unix time
@var{unix}. Unix time is defined by POSIX as the number of seconds
since 1970-01-01T00:00:00Z.
@end defun
@itindex now
@defun now
Produces a @code{timestamp} instance with the current time. With
Allegro, CMUCL, CCL, SBCL, and LispWorks for Linux or Darwin, the new
timestamp will be precise to the microsecond (usec); with ABCL, to the
millisecond (ms). Otherwise, the precision is limited to the second.
@end defun
@itindex today
@defun today
Produces a @code{timestamp} instance that corresponds to today's
date, which is the midnight of the current day in the UTC zone.
@end defun
@itindex encode-timestamp
@defun encode-timestamp nsec sec minute hour day month year &key timezone offset into
Returns a new @code{timestamp} instance corresponding to the specified
time elements. The @var{offset} is the number of seconds offset from
UTC of the locale. If @var{offset} is not specified, the offset will
be guessed from the @var{timezone}. If a @code{timestamp} is passed
as the @var{into} argument, its value will be set and that
@code{timestamp} will be returned. Otherwise, a new @code{timestamp}
is created.
@end defun
@itindex make-timestamp
@defmac make-timestamp &key :day :sec :nsec
Expands to an expression that creates an instance of a
@code{timestamp} exactly as specified.
@end defmac
@itindex clone-timestamp
@defun clone-timestamp timestamp
Expands to an expression that creates another copy of @var{timestamp}
that is @code{timestamp=} to it.
@end defun
@c ===================================================================
@node Querying timestamp Objects
@section Querying @code{timestamp} Objects
@itindex day-of
@defun day-of timestamp
Returns the day component of @var{timestamp}. Although Naggum's paper
specifies that the day should be a signed fixnum, it is left unbounded
for flexibility reasons.
@end defun
@itindex sec-of
@defun sec-of timestamp
Returns the 'seconds' component of the time. Valid values for the
seconds range from 0 to 86399.
@end defun
@itindex nsec-of
@defun nsec-of timestamp
Returns the 'microseconds' component of the time. Valid values for
the nanoseconds range from 0 to 999999999.
@end defun
@itindex timestamp-to-universal
@defun timestamp-to-universal timestamp
This returns the date/time specified in @var{timestamp} encoded as
the number of seconds since January 1st, 1900 12:00am UTC.
@end defun
@itindex timestamp-to-unix
@defun timestamp-to-unix timestamp
This returns the date/time specified in @var{timestamp} encoded as
the number of seconds since January 1st, 1970 12:00am UTC. It
corresponds with the time received from the POSIX call @code{time()}.
@end defun
@itindex timestamp-subtimezone
@defun timestamp-subtimezone timestamp timezone
Returns as multiple values the time zone applicable at the given time
as the number of seconds east of UTC, a boolean daylight-saving-p, and
the customary abbreviation of the timezone.
@end defun
@itindex with-decoded-timestamp
@defmac with-decoded-timestamp (&key nsec sec minute hour day month year day-of-week daylight-p timezone) timestamp &body body
This macro binds variables to the decoded elements of @var{timestamp}.
The timezone argument is used for decoding the timestamp, and is not
bound by the macro. The value of @var{day-of-week} starts from 0 which
means Sunday.
@end defmac
@itindex decode-timestamp
@defun decode-timestamp timestamp
Returns the decoded time as @code{(values ns ss mm hh day month
year day-of-week daylight-saving-time-p timezone-offset timezone-abbreviation)}.
@end defun
@itindex timestamp<
@itindex timestamp<=
@itindex timestamp>
@itindex timestamp>=
@itindex timestamp=
@itindex timestamp/=
@defun timestamp< time-a time-b
@defunx timestamp<= time-a time-b
@defunx timestamp> time-a time-b
@defunx timestamp>= time-a time-b
@defunx timestamp= time-a time-b
@defunx timestamp/= time-a time-b
These comparison functions act like their string and char counterparts.
@end defun
@itindex timestamp-minimum
@defun timestamp-minimum timestamp &rest timestamps
Returns the earliest timestamp passed to it.
@end defun
@itindex timestamp-maximum
@defun timestamp-maximum timestamp &rest timestamps
Returns the latest timestamp passed to it.
@end defun
@itindex timestamp-day-of-week
@defun timestamp-day-of-week timestamp
This returns the index of the day of the week,
starting at 0 which means Sunday.
@quotation Note
''Day of the week'' is ambigous and locale dependent.
@end quotation
@end defun
@itindex universal-to-timestamp
@defun universal-to-timestamp timestamp
Returns the UNIVERSAL-TIME corresponding to @var{timestamp}.
@quotation Note
Subsecond precision is not preserved.
@end quotation
@end defun
@itindex timestamp-millennium
@itindex timestamp-century
@itindex timestamp-decade
@defun timestamp-millennium timestamp &key timezone
@defunx timestamp-century timestamp &key timezone
@defunx timestamp-decade timestamp &key timezone
Returns the ordinal millennium, century or decade upon which the
timestamp falls. Ordinal time values start at 1, so the
(timestamp-century (now)) will return 21.
@end defun
@itindex timestamp-year
@itindex timestamp-month
@itindex timestamp-day
@itindex timestamp-hour
@itindex timestamp-minute
@itindex timestamp-second
@itindex timestamp-millisecond
@itindex timestamp-microsecond
@defun timestamp-year timestamp &key timezone
@defunx timestamp-month timestamp &key timezone
@defunx timestamp-day timestamp &key timezone
@defunx timestamp-hour timestamp &key timezone
@defunx timestamp-minute timestamp &key timezone
@defunx timestamp-second timestamp &key timezone
@defunx timestamp-millisecond timestamp &key timezone
@defunx timestamp-microsecond timestamp &key timezone
@defunx timestamp-microsecond timestamp &key timezone
Returns the decoded part of the timestamp.
@end defun
@c ===================================================================
@node Manipulating Date and Time Values
@section Manipulating Date and Time Values
@itindex timestamp+
@itindex timestamp-
@defun timestamp+ time amount unit
@defunx timestamp- time amount unit
Add or subtract the @var{amount} to the @var{time} using the specified
@var{unit}. @var{unit} may be one of ( @code{:nsec} @code{:sec}
@code{:minute} @code{:hour} @code{:day} @code{:month} @code{:year}).
The value of the parts of the timestamp of higher resolution than the
UNIT will never be touched. If you want a precise number of seconds
from a time, you should specify the offset in seconds.
@end defun
@itindex timestamp-maximize-part
@defun timestamp-maximize-part timestamp part &key offset timezone into
Returns a timestamp with its parts maximized up to @var{part}. @var{part} can be
any of (:nsec :sec :min :hour :day :month). If @var{into} is specified, it
will be modified and returned, otherwise a new timestamp will be
created.
@end defun
@itindex timestamp-minimize-part
@defun timestamp-minimize-part timestamp part &key offset timezone into
Returns a timestamp with its parts minimized up to @var{part}. @var{part} can be
any of (:nsec :sec :min :hour :day :month). If @var{into} is specified, it
will be modified and returned, otherwise a new timestamp will be
created.
@end defun
@itindex adjust-timestamp
@defmac adjust-timestamp timestamp &body changes
Alters various parts of @var{timestamp}, given a list of changes. The
changes are in the format @code{(offset part value)} and @code{(set
part value)}.
@lisp
;; Return a new @code{timestamp} value that points to the Monday in
;; the week of @code{(today)}
(adjust-timestamp (today) (offset :day-of-week :monday))
;; Return a new @code{timestamp} value that points three days ahead from now
(adjust-timestamp (today) (offset :day 3))
@end lisp
Keep in mind that @code{adjust-timestamp} is not a mere setter for
fields but instead it handles overflows and timezone conversions as
expected. Also note that it's possible to specify multiple commands.
The list of possible places to manipulate are: @code{:nsec}
@code{:sec} @code{:sec-of-day} @code{:minute} @code{:hour}
@code{:day} @code{:day-of-month} @code{:month} @code{:year}.
@end defmac
@itindex adjust-timestamp!
@defmac adjust-timestamp! timestamp &body changes
Just like @code{adjust-timestamp}, but instead of returning a freshly
constructed value, it alters the provided @var{timestamp} value (and
returns it).
@end defmac
@itindex timestamp-whole-year-difference
@defun timestamp-whole-year-difference time-a time-b
Returns the number of whole years elapsed between @var{time-a} and @var{time-b}.
@quotation Note
This is useful for calculating anniversaries and birthdays.
@end quotation
@end defun
@itindex days-in-month
@defun days-in-month month year
Returns the number of days in a given month of the specified year.
@end defun
@c ===================================================================
@node Parsing and Formatting
@section Parsing and Formatting
@itindex +iso-8601-format+
@defvr Constant +iso-8601-format+
The constant @var{+iso-8601-format+} is bound to a description of the ISO 8601 format. An output with this format will look like this: @samp{2008-03-01T19:42:34.608506+01:00}. This is the default format for the @code{format-timestring} function.
@end defvr
@itindex +asctime-format+
@defvr Constant +asctime-format+
The constant @var{+asctime-format+} is bound to a format mirroring the output of the POSIX asctime() function. An output with this format will look like this: @samp{Sat Mar 1 19:42:34 2008}.
@end defvr
@itindex +rfc-1123-format+
@defvr Constant +rfc-1123-format+
The constant @var{+rfc-1123-format+} is bound to a description of the format defined in RFC 1123 for Internet timestamps. An output with this format will look like this: @samp{Sat, 01 Mar 2008 19:42:34 -0500}.
@end defvr
@itindex +iso-week-date-format+
@defvr Constant +iso-week-date-format+
The constant @var{+iso-week-date-format+} is bound to a description of the ISO 8601 Week Date format. An output with this format will look like this: @samp{2009-W53-5}.
@end defvr
@itindex parse-timestring
@defun parse-timestring timestring &key (start 0) end (fail-on-error t) (offset 0)
Parses a timestring and returns the corresponding @code{timestamp}.
Parsing begins at @var{start} and stops at the @var{end}
position. If there are invalid characters within @code{timestring}
and @var{fail-on-error} is @code{T}, then an @code{invalid-timestring}
error is signaled, otherwise @code{NIL} is returned.
If there is no timezone specified in @code{timestring} then
@var{offset} is used as the default timezone offset (in seconds).
@end defun
@itindex format-timestring
@defun format-timestring (destination timestamp &key (format +iso-8601-format+) (timezone *default-timezone*))
Constructs a string representation of TIMESTAMP according to FORMAT and returns it. If destination is @code{T}, the string is written to @code{*standard-output*}. If destination is a stream, the string is written to the stream.
FORMAT is a list containing one or more of strings, characters, and keywords. Strings and characters are output literally, while keywords are replaced by the values here:
@table @code
@item :year
*year
@item :month
*numeric month
@item :day
*day of month
@item :weekday
*numeric day of week, starting from 0 which means Sunday
@item :hour
*hour
@item :min
*minutes
@item :sec
*seconds
@item :msec
*milliseconds
@item :usec
*microseconds
@item :nsec
*nanoseconds
@item :iso-week-year
*year for ISO week date (can be different from regular calendar year)
@item :iso-week-number
*ISO week number (i.e. 1 through 53)
@item :iso-week-day
*ISO compatible weekday number (i.e. monday=1, sunday=7)
@item :ordinal-day
day of month as an ordinal (e.g. 1st, 23rd)
@item :long-weekday
long form of weekday (e.g. Sunday, Monday)
@item :short-weekday
short form of weekday (e.g. Sun, Mon)
@item :minimal-weekday
minimal form of weekday (e.g. Su, Mo)
@item :short-year
short form of year (last 2 digits, e.g. 41, 42 instead of 2041, 2042)
@item :long-month
long form of month (e.g. January, February)
@item :short-month
short form of month (e.g. Jan, Feb)
@item :hour12
hour on a 12-hour clock
@item :ampm
am/pm marker in lowercase
@item :gmt-offset
the gmt-offset of the time, in +00:00 form
@item :gmt-offset-or-z
like :gmt-offset, but is Z when UTC
@item :gmt-offset-hhmm
like :gmt-offset, but in +0000 form
@item :timezone
timezone abbrevation for the time
@end table
Elements marked by * can be placed in a list in the form:
@lisp
(:keyword padding &optional (padchar #\0))
@end lisp
The string representation of the value will be padded with the padchar.
You can see examples by examining the values in @var{+iso-8601-format+}, @var{+asctime-format+}, and @var{+rfc-1123-format+}.
Produces on @var{stream} the timestring corresponding to the @var{timestamp} with
the given options. If @var{stream} is @code{nil}, only returns a string containing what
would have been the output. If @var{stream} is @code{t}, prints the string to
@var{*standard-output*}.
Example output:
@lisp
LOCAL-TIME> (format-timestring nil (now))
"2008-03-01T19:42:34.608506+01:00"
@end lisp
@end defun
@itindex format-rfc3339-timestring
@defun format-rfc3339-timestring (destination timestamp &key omit-date-part omit-time-part omit-timezone-part (use-zulu t))
Formats the time like format-timestring, but in RFC 3339 format. The options control valid options in the RFC.
@end defun
@itindex format-rfc1123-timestring
@defun format-rfc1123-timestring (destination timestamp &key (timezone *default-timezone*))
Formats the time like format-timestring, but in RFC 1123 format.
@end defun
@c ===================================================================
@node Clocks
@section Clocks
@defvr Default *clock*
The *clock* special variable and the following generic functions are
exposed so that applications may re-define the current time or date as
required. This can be used for testing or to support alternate clocks.
The currently supported values are:
@itemize
@item @code{t} - Use the standard system clock with no adjustments
@item @code{leap-second-adjusted} - The system clock, adjusted for leap seconds using the information in *default-timezone*.
@end itemize
@end defvr
@defun clock-now (clock)
Specialize this generic function to re-define the present moment
@end defun
@defun clock-today (clock)
Specialize this generic function to re-define the present day
@end defun
@c ===================================================================
@node Other Features
@chapter Other Features
@section Reader Macros
@itindex enable-read-macros
@defun enable-read-macros
Adds @@TIMESTRING and #@@UNIVERSAL-TIME as reader macros.
@end defun
@section Support for non-Gregorian Calendars
@itindex astronomical-julian-date
@defun astronomical-julian-date timestamp
Returns the julian date of the date portion of @var{timestamp}.
@end defun
@itindex modified-julian-date
@defun astronomical-julian-date timestamp
Returns the modified julian date of the date portion of @var{timestamp}.
@end defun
@c ===================================================================
@node References
@chapter References
@itemize
@item
[NaggumPaper] Erik Naggum. @emph{The Long Painful History of Time}
@url{http://naggum.no/lugm-time.html}, 1999.
@end itemize
@c ===================================================================
@node Comprehensive Index
@unnumbered Index
@printindex cp
@bye
| 22,792 | Common Lisp | .l | 589 | 37.315789 | 247 | 0.767863 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | efc798d8a90be4429ac214be3704b51f57726e95e6e2e4969924ba5ba62b4ab6 | 43,776 | [
-1
] |
43,777 | Makefile | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/doc/Makefile | # -*- Mode: Makefile; tab-width: 4; indent-tabs-mode: t -*-
all: docs
docs:
sh gendocs.sh -o manual --html "--css-include=style.css" local-time "The local-time Manual"
clean:
find . \( -name "*.info" -o -name "*.it" -o -name "*.aux" -o -name "*.cp" -o -name "*.fn" -o -name "*.fns" -o -name "*.ky" -o -name "*.log" -o -name "*.pg" -o -name "*.toc" -o -name "*.tp" -o -name "*.vr" -o -name "*.dvi" -o -name "*.cps" -o -name "*.vrs" \) -exec rm {} \;
rm -rf manual
upload-docs:
rsync -av --delete -e ssh manual common-lisp.net:/project/local-time/public_html/
# scp -r manual spec common-lisp.net:/project/local-time/public_html/
# vim: ft=make ts=4 noet
| 662 | Common Lisp | .l | 11 | 58.363636 | 274 | 0.608359 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | 2a6508e511986211ff0946855bb34f6b8c7d238da74fd5f09aae9b2a438c2dd2 | 43,777 | [
-1
] |
43,778 | style.css | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/doc/style.css | body {font-family: century schoolbook, serif;
line-height: 1.3;
padding-left: 5em; padding-right: 1em;
padding-bottom: 1em; max-width: 60em;}
table {border-collapse: collapse}
span.roman { font-family: century schoolbook, serif; font-weight: normal; }
h1, h2, h3, h4, h5, h6 {font-family: Helvetica, sans-serif}
/*h4 {padding-top: 0.75em;}*/
dfn {font-family: inherit; font-variant: italic; font-weight: bolder }
kbd {font-family: monospace; text-decoration: underline}
/*var {font-family: Helvetica, sans-serif; font-variant: slanted}*/
var {font-variant: slanted;}
td {padding-right: 1em; padding-left: 1em}
sub {font-size: smaller}
.node {padding: 0; margin: 0}
.lisp { font-family: monospace;
background-color: #F4F4F4; border: 1px solid #AAA;
padding-top: 0.5em; padding-bottom: 0.5em; }
/* coloring */
.lisp-bg { background-color: #F4F4F4 ; color: black; }
.lisp-bg:hover { background-color: #F4F4F4 ; color: black; }
.symbol { font-weight: bold; color: #770055; background-color : transparent; border: 0px; margin: 0px;}
a.symbol:link { font-weight: bold; color : #229955; background-color : transparent; text-decoration: none; border: 0px; margin: 0px; }
a.symbol:active { font-weight: bold; color : #229955; background-color : transparent; text-decoration: none; border: 0px; margin: 0px; }
a.symbol:visited { font-weight: bold; color : #229955; background-color : transparent; text-decoration: none; border: 0px; margin: 0px; }
a.symbol:hover { font-weight: bold; color : #229955; background-color : transparent; text-decoration: none; border: 0px; margin: 0px; }
.special { font-weight: bold; color: #FF5000; background-color: inherit; }
.keyword { font-weight: bold; color: #770000; background-color: inherit; }
.comment { font-weight: normal; color: #007777; background-color: inherit; }
.string { font-weight: bold; color: #777777; background-color: inherit; }
.character { font-weight: bold; color: #0055AA; background-color: inherit; }
.syntaxerror { font-weight: bold; color: #FF0000; background-color: inherit; }
span.paren1 { font-weight: bold; color: #777777; }
span.paren1:hover { color: #777777; background-color: #BAFFFF; }
span.paren2 { color: #777777; }
span.paren2:hover { color: #777777; background-color: #FFCACA; }
span.paren3 { color: #777777; }
span.paren3:hover { color: #777777; background-color: #FFFFBA; }
span.paren4 { color: #777777; }
span.paren4:hover { color: #777777; background-color: #CACAFF; }
span.paren5 { color: #777777; }
span.paren5:hover { color: #777777; background-color: #CAFFCA; }
span.paren6 { color: #777777; }
span.paren6:hover { color: #777777; background-color: #FFBAFF; }
| 2,675 | Common Lisp | .l | 44 | 58.931818 | 137 | 0.71831 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | cbfeab089c9136f22e6f9e4f1a1023e8e8704e50d4819b720b7c8a301efc5dba | 43,778 | [
-1
] |
43,779 | gendocs_template | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/doc/gendocs_template | <?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!-- $Id: gendocs_template,v 1.7 2005/05/15 00:00:08 karl Exp $ -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<!--
This template was adapted from Texinfo:
http://savannah.gnu.org/cgi-bin/viewcvs/texinfo/texinfo/util/gendocs_template
-->
<head>
<title>%%TITLE%%</title>
<meta http-equiv="content-type" content='text/html; charset=utf-8' />
<!-- <link rel="stylesheet" type="text/css" href="/gnu.css" /> -->
<!-- <link rev="made" href="[email protected]" /> -->
<style>
/* CSS style taken from http://gnu.org/gnu.css */
html, body {
background-color: #FFFFFF;
color: #000000;
font-family: sans-serif;
}
a:link {
color: #1f00ff;
background-color: transparent;
text-decoration: underline;
}
a:visited {
color: #9900dd;
background-color: transparent;
text-decoration: underline;
}
a:hover {
color: #9900dd;
background-color: transparent;
text-decoration: none;
}
.center {
text-align: center;
}
.italic {
font-style: italic;
}
.bold {
font-weight: bold;
}
.quote {
margin-left: 40px;
margin-right: 40px;
}
.hrsmall {
width: 80px;
height: 1px;
margin-left: 20px;
}
.td_title {
border-color: #3366cc;
border-style: solid;
border-width: thin;
color: #3366cc;
background-color : #f2f2f9;
font-weight: bold;
}
.td_con {
padding-top: 3px;
padding-left: 8px;
padding-bottom: 3px;
color : #303030;
background-color : #fefefe;
font-size: smaller;
}
.translations {
background-color: transparent;
color: black;
font-family: serif;
font-size: smaller;
}
.fsflink {
font-size: smaller;
font-family: monospace;
color : #000000;
border-left: #3366cc thin solid;
border-bottom: #3366cc thin solid;
padding-left: 5px;
padding-bottom: 5px;
}
/*
* rtl stands for right-to-left layout, as in farsi/persian,
* arabic, etc. See also trans_rtl.
*/
.fsflink_rtl {
font-size: smaller;
font-family: monospace;
color : #000000;
border-right: #3366cc thin solid;
border-bottom: #3366cc thin solid;
padding-right: 5px;
padding-bottom: 5px;
}
.trans {
font-size: smaller;
color : #000000;
border-left: #3366cc thin solid;
padding-left: 20px;
}
.trans_rtl {
font-size: smaller;
color : #000000;
border-right: #3366cc thin solid;
padding-right: 20px;
}
img {
border: none 0;
}
td.side {
color: #3366cc;
/* background: #f2f2f9;
border-color: #3366cc;
border-style: solid;
border-width: thin; */
border-color: white;
border-style: none;
vertical-align: top;
width: 150px;
}
div.copyright {
font-size: 80%;
border: 2px solid #3366cc;
padding: 4px;
background: #f2f2f9;
border-style: solid;
border-width: thin;
}
.footnoteref {
font-size: smaller;
vertical-align: text-top;
}
</style>
</head>
<!-- This document is in XML, and xhtml 1.0 -->
<!-- Please make sure to properly nest your tags -->
<!-- and ensure that your final document validates -->
<!-- consistent with W3C xhtml 1.0 and CSS standards -->
<!-- See validator.w3.org -->
<body>
<h3>%%TITLE%%</h3>
<!-- <address>Free Software Foundation</address> -->
<address>last updated %%DATE%%</address>
<!--
<p>
<a href="/graphics/gnu-head.jpg">
<img src="/graphics/gnu-head-sm.jpg"
alt=" [image of the head of a GNU] "
width="129" height="122" />
</a>
<a href="/philosophy/gif.html">(no gifs due to patent problems)</a>
</p>
-->
<hr />
<p>This document <!--(%%PACKAGE%%)--> is available in the following formats:</p>
<ul>
<li><a href="%%PACKAGE%%.html">HTML
(%%HTML_MONO_SIZE%%K characters)</a> - entirely on one web page.</li>
<li><a href="html_node/index.html">HTML</a> - with one web page per
node.</li>
<li><a href="%%PACKAGE%%.html.gz">HTML compressed
(%%HTML_MONO_GZ_SIZE%%K gzipped characters)</a> - entirely on
one web page.</li>
<li><a href="%%PACKAGE%%.html_node.tar.gz">HTML compressed
(%%HTML_NODE_TGZ_SIZE%%K gzipped tar file)</a> -
with one web page per node.</li>
<li><a href="%%PACKAGE%%.info.tar.gz">Info document
(%%INFO_TGZ_SIZE%%K characters gzipped tar file)</a>.</li>
<li><a href="%%PACKAGE%%.txt">ASCII text
(%%ASCII_SIZE%%K characters)</a>.</li>
<li><a href="%%PACKAGE%%.txt.gz">ASCII text compressed
(%%ASCII_GZ_SIZE%%K gzipped characters)</a>.</li>
<li><a href="%%PACKAGE%%.dvi.gz">TeX dvi file
(%%DVI_GZ_SIZE%%K characters gzipped)</a>.</li>
<li><a href="%%PACKAGE%%.ps.gz">PostScript file
(%%PS_GZ_SIZE%%K characters gzipped)</a>.</li>
<li><a href="%%PACKAGE%%.pdf">PDF file
(%%PDF_SIZE%%K characters)</a>.</li>
<li><a href="%%PACKAGE%%.texi.tar.gz">Texinfo source
(%%TEXI_TGZ_SIZE%%K characters gzipped tar file)</a></li>
</ul>
<p>(This page was generated by the <a href="%%SCRIPTURL%%">%%SCRIPTNAME%%
script</a>.)</p>
<div class="copyright">
<p>
Return to <a href="/project/local-time/">local-time's home page</a>.
</p>
<!--
<p>
Please send FSF & GNU inquiries to
<a href="mailto:[email protected]"><em>[email protected]</em></a>.
There are also <a href="/home.html#ContactInfo">other ways to contact</a>
the FSF.
<br />
Please send broken links and other corrections (or suggestions) to
<a href="mailto:[email protected]"><em>[email protected]</em></a>.
</p>
-->
<p>
<!--
Copyright (C) 2008
Daniel Lowe <dlowe dlowe.net>
Attila Lendvai <attila.lendvai gmail.com>
<br />
Verbatim copying and distribution of this entire article is
permitted in any medium, provided this notice is preserved.
-->
</p>
<p>
Updated: %%DATE%%
<!-- timestamp start -->
<!-- $Date: 2005/05/15 00:00:08 $ $Author: karl $ -->
<!-- timestamp end -->
</p>
</div>
</body>
</html>
| 5,722 | Common Lisp | .l | 221 | 23.746606 | 80 | 0.677408 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | 93fc64661e6728efd70ac8471844941ed2b2fda64c04f411ad0c352249948eef | 43,779 | [
-1
] |
43,780 | leap-seconds.list | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/zoneinfo/leap-seconds.list | #
# In the following text, the symbol '#' introduces
# a comment, which continues from that symbol until
# the end of the line. A plain comment line has a
# whitespace character following the comment indicator.
# There are also special comment lines defined below.
# A special comment will always have a non-whitespace
# character in column 2.
#
# A blank line should be ignored.
#
# The following table shows the corrections that must
# be applied to compute International Atomic Time (TAI)
# from the Coordinated Universal Time (UTC) values that
# are transmitted by almost all time services.
#
# The first column shows an epoch as a number of seconds
# since 1 January 1900, 00:00:00 (1900.0 is also used to
# indicate the same epoch.) Both of these time stamp formats
# ignore the complexities of the time scales that were
# used before the current definition of UTC at the start
# of 1972. (See note 3 below.)
# The second column shows the number of seconds that
# must be added to UTC to compute TAI for any timestamp
# at or after that epoch. The value on each line is
# valid from the indicated initial instant until the
# epoch given on the next one or indefinitely into the
# future if there is no next line.
# (The comment on each line shows the representation of
# the corresponding initial epoch in the usual
# day-month-year format. The epoch always begins at
# 00:00:00 UTC on the indicated day. See Note 5 below.)
#
# Important notes:
#
# 1. Coordinated Universal Time (UTC) is often referred to
# as Greenwich Mean Time (GMT). The GMT time scale is no
# longer used, and the use of GMT to designate UTC is
# discouraged.
#
# 2. The UTC time scale is realized by many national
# laboratories and timing centers. Each laboratory
# identifies its realization with its name: Thus
# UTC(NIST), UTC(USNO), etc. The differences among
# these different realizations are typically on the
# order of a few nanoseconds (i.e., 0.000 000 00x s)
# and can be ignored for many purposes. These differences
# are tabulated in Circular T, which is published monthly
# by the International Bureau of Weights and Measures
# (BIPM). See www.bipm.org for more information.
#
# 3. The current definition of the relationship between UTC
# and TAI dates from 1 January 1972. A number of different
# time scales were in use before that epoch, and it can be
# quite difficult to compute precise timestamps and time
# intervals in those "prehistoric" days. For more information,
# consult:
#
# The Explanatory Supplement to the Astronomical
# Ephemeris.
# or
# Terry Quinn, "The BIPM and the Accurate Measurement
# of Time," Proc. of the IEEE, Vol. 79, pp. 894-905,
# July, 1991. <http://dx.doi.org/10.1109/5.84965>
# reprinted in:
# Christine Hackman and Donald B Sullivan (eds.)
# Time and Frequency Measurement
# American Association of Physics Teachers (1996)
# <http://tf.nist.gov/general/pdf/1168.pdf>, pp. 75-86
#
# 4. The decision to insert a leap second into UTC is currently
# the responsibility of the International Earth Rotation and
# Reference Systems Service. (The name was changed from the
# International Earth Rotation Service, but the acronym IERS
# is still used.)
#
# Leap seconds are announced by the IERS in its Bulletin C.
#
# See www.iers.org for more details.
#
# Every national laboratory and timing center uses the
# data from the BIPM and the IERS to construct UTC(lab),
# their local realization of UTC.
#
# Although the definition also includes the possibility
# of dropping seconds ("negative" leap seconds), this has
# never been done and is unlikely to be necessary in the
# foreseeable future.
#
# 5. If your system keeps time as the number of seconds since
# some epoch (e.g., NTP timestamps), then the algorithm for
# assigning a UTC time stamp to an event that happens during a positive
# leap second is not well defined. The official name of that leap
# second is 23:59:60, but there is no way of representing that time
# in these systems.
# Many systems of this type effectively stop the system clock for
# one second during the leap second and use a time that is equivalent
# to 23:59:59 UTC twice. For these systems, the corresponding TAI
# timestamp would be obtained by advancing to the next entry in the
# following table when the time equivalent to 23:59:59 UTC
# is used for the second time. Thus the leap second which
# occurred on 30 June 1972 at 23:59:59 UTC would have TAI
# timestamps computed as follows:
#
# ...
# 30 June 1972 23:59:59 (2287785599, first time): TAI= UTC + 10 seconds
# 30 June 1972 23:59:60 (2287785599,second time): TAI= UTC + 11 seconds
# 1 July 1972 00:00:00 (2287785600) TAI= UTC + 11 seconds
# ...
#
# If your system realizes the leap second by repeating 00:00:00 UTC twice
# (this is possible but not usual), then the advance to the next entry
# in the table must occur the second time that a time equivalent to
# 00:00:00 UTC is used. Thus, using the same example as above:
#
# ...
# 30 June 1972 23:59:59 (2287785599): TAI= UTC + 10 seconds
# 30 June 1972 23:59:60 (2287785600, first time): TAI= UTC + 10 seconds
# 1 July 1972 00:00:00 (2287785600,second time): TAI= UTC + 11 seconds
# ...
#
# in both cases the use of timestamps based on TAI produces a smooth
# time scale with no discontinuity in the time interval. However,
# although the long-term behavior of the time scale is correct in both
# methods, the second method is technically not correct because it adds
# the extra second to the wrong day.
#
# This complexity would not be needed for negative leap seconds (if they
# are ever used). The UTC time would skip 23:59:59 and advance from
# 23:59:58 to 00:00:00 in that case. The TAI offset would decrease by
# 1 second at the same instant. This is a much easier situation to deal
# with, since the difficulty of unambiguously representing the epoch
# during the leap second does not arise.
#
# Some systems implement leap seconds by amortizing the leap second
# over the last few minutes of the day. The frequency of the local
# clock is decreased (or increased) to realize the positive (or
# negative) leap second. This method removes the time step described
# above. Although the long-term behavior of the time scale is correct
# in this case, this method introduces an error during the adjustment
# period both in time and in frequency with respect to the official
# definition of UTC.
#
# Questions or comments to:
# Judah Levine
# Time and Frequency Division
# NIST
# Boulder, Colorado
# [email protected]
#
# Last Update of leap second values: 8 July 2016
#
# The following line shows this last update date in NTP timestamp
# format. This is the date on which the most recent change to
# the leap second data was added to the file. This line can
# be identified by the unique pair of characters in the first two
# columns as shown below.
#
#$ 3676924800
#
# The NTP timestamps are in units of seconds since the NTP epoch,
# which is 1 January 1900, 00:00:00. The Modified Julian Day number
# corresponding to the NTP time stamp, X, can be computed as
#
# X/86400 + 15020
#
# where the first term converts seconds to days and the second
# term adds the MJD corresponding to the time origin defined above.
# The integer portion of the result is the integer MJD for that
# day, and any remainder is the time of day, expressed as the
# fraction of the day since 0 hours UTC. The conversion from day
# fraction to seconds or to hours, minutes, and seconds may involve
# rounding or truncation, depending on the method used in the
# computation.
#
# The data in this file will be updated periodically as new leap
# seconds are announced. In addition to being entered on the line
# above, the update time (in NTP format) will be added to the basic
# file name leap-seconds to form the name leap-seconds.<NTP TIME>.
# In addition, the generic name leap-seconds.list will always point to
# the most recent version of the file.
#
# This update procedure will be performed only when a new leap second
# is announced.
#
# The following entry specifies the expiration date of the data
# in this file in units of seconds since the origin at the instant
# 1 January 1900, 00:00:00. This expiration date will be changed
# at least twice per year whether or not a new leap second is
# announced. These semi-annual changes will be made no later
# than 1 June and 1 December of each year to indicate what
# action (if any) is to be taken on 30 June and 31 December,
# respectively. (These are the customary effective dates for new
# leap seconds.) This expiration date will be identified by a
# unique pair of characters in columns 1 and 2 as shown below.
# In the unlikely event that a leap second is announced with an
# effective date other than 30 June or 31 December, then this
# file will be edited to include that leap second as soon as it is
# announced or at least one month before the effective date
# (whichever is later).
# If an announcement by the IERS specifies that no leap second is
# scheduled, then only the expiration date of the file will
# be advanced to show that the information in the file is still
# current -- the update time stamp, the data and the name of the file
# will not change.
#
# Updated through IERS Bulletin C60
# File expires on: 28 June 2021
#
#@ 3833827200
#
2272060800 10 # 1 Jan 1972
2287785600 11 # 1 Jul 1972
2303683200 12 # 1 Jan 1973
2335219200 13 # 1 Jan 1974
2366755200 14 # 1 Jan 1975
2398291200 15 # 1 Jan 1976
2429913600 16 # 1 Jan 1977
2461449600 17 # 1 Jan 1978
2492985600 18 # 1 Jan 1979
2524521600 19 # 1 Jan 1980
2571782400 20 # 1 Jul 1981
2603318400 21 # 1 Jul 1982
2634854400 22 # 1 Jul 1983
2698012800 23 # 1 Jul 1985
2776982400 24 # 1 Jan 1988
2840140800 25 # 1 Jan 1990
2871676800 26 # 1 Jan 1991
2918937600 27 # 1 Jul 1992
2950473600 28 # 1 Jul 1993
2982009600 29 # 1 Jul 1994
3029443200 30 # 1 Jan 1996
3076704000 31 # 1 Jul 1997
3124137600 32 # 1 Jan 1999
3345062400 33 # 1 Jan 2006
3439756800 34 # 1 Jan 2009
3550089600 35 # 1 Jul 2012
3644697600 36 # 1 Jul 2015
3692217600 37 # 1 Jan 2017
#
# the following special comment contains the
# hash value of the data in this file computed
# use the secure hash algorithm as specified
# by FIPS 180-1. See the files in ~/pub/sha for
# the details of how this hash value is
# computed. Note that the hash computation
# ignores comments and whitespace characters
# in data lines. It includes the NTP values
# of both the last modification time and the
# expiration time of the file, but not the
# white space on those lines.
# the hash line is also ignored in the
# computation.
#
#h 064356a8 39268b92 76e4d5ef 3e22fae1 0cca529c
| 10,662 | Common Lisp | .l | 255 | 40.811765 | 77 | 0.770731 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | 973cf781b14bdac882e41b043118fcfdec7459673fb9e0ee1322c3d87891d4f8 | 43,780 | [
-1
] |
43,781 | Tripoli | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/zoneinfo/Africa/Tripoli | TZif2 °тЅ$Ёї±ё#≠`бx“бзeае/?pе©ћалN∆рТB`чpъ+ак*рџ_`ћѓрљд`іzрЯаУpВо` pJp!a~а"Rѕp#Dа$4р%%7`&@Јр2Nс`3D6p45jаPЭЩ QTўАRiіА \
LMT CEST CET EET TZif2 €€€€°тЅ$€€€€Ёї±€€€€ё#≠`€€€€бx“€€€€бзeа€€€€е/?p€€€€е©ћа€€€€лN∆р ТB` чp ъ+а к*р џ_` ћѓр љд` іzр Яа Уp Во` pJp !a~а "Rѕp #Dа $4р %%7` &@Јр 2Nс` 3D6p 45jа PЭЩ QTўА RiіА \
LMT CEST CET EET
EET-2
| 641 | Common Lisp | .l | 2 | 319.5 | 634 | 0.309859 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | 5855b163dd960930b46424b8af10e52ac48bccd28150ecf33ca9652bc16f378b | 43,781 | [
-1
] |
43,782 | Bougainville | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/zoneinfo/Pacific/Bougainville | TZif2 А ╠C6`╥+lЁTЮ╫А С╪ Ма ~Р Ъ░ LMT +10 +09 +11 TZif2 V╢R( rэдР ╠C6` ╥+lЁ TЮ╫А С╪ ЙЁ Ма ~Р
Ъ░ LMT PMMT +10 +09 +11
<+11>-11
| 286 | Common Lisp | .l | 2 | 142 | 276 | 0.242958 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | 12d15b881e0c0cd5a31d6b2fd9bda935d184af7ac32525f4fa3182af0e042369 | 43,782 | [
-1
] |
43,783 | Galapagos | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/zoneinfo/Pacific/Galapagos | TZif2 ¶¤L€ÄP+
à+qôPÿÿÿÿÿ¬ ÿÿ¹° ÿÿ¹°ÿÿ« LMT -05 -06 TZif2 ÿÿÿÿ¶¤L€ ÄP +
à +qôP ÿÿÿÿÿ¬ ÿÿ¹° ÿÿ¹°ÿÿ« LMT -05 -06
<-06>6
| 254 | Common Lisp | .l | 4 | 62.5 | 124 | 0.284 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | b7191c8e020b319f2c9c1a5633775153c5e81ef2a74381ad0b7c1cd7a8f11db7 | 43,783 | [
-1
] |
43,784 | Belize | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/zoneinfo/America/Belize | TZif2 7 У^┘░ЯЯ;раEQ╪брв.nXг^ рдPXе>срею2Xз'■`з╬Xйр`йнЎXкч┬`лЧ╪м╟д`нvЇ╪озЖ`пV╓╪░Зh`▒6╕╪▓pДр│Ъ╪┤Pfр┤Ў|╪╢0Hр╢▀ЩX╕*р╕┐{X╣Ёр║Я]X╗┘)`╝?X╜╣`╛_!X┐Шэ`└?X┴x╧`┬(╪├X▒`─╪┼8У`┼чу╪╟!пр╟╟┼╪╔Ср╔зз╪╩сsр╦Р─X╠┴Uр═pжXb█`╣╨Paq`л7P нP ▓и ла
╣░LMT -0530 CST CDT TZif2 7 У^┘░ ЯЯ;р аEQ╪ бр в.nX г^ р дPX е>ср ею2X з'■` з╬X йр` йнЎX кч┬` лЧ╪ м╟д` нvЇ╪ озЖ` пV╓╪ ░Зh` ▒6╕╪ ▓pДр │Ъ╪ ┤Pfр ┤Ў|╪ ╢0Hр ╢▀ЩX ╕*р ╕┐{X ╣Ёр ║Я]X ╗┘)` ╝?X ╜╣` ╛_!X ┐Шэ` └?X ┴x╧` ┬(╪ ├X▒` ─╪ ┼8У` ┼чу╪ ╟!пр ╟╟┼╪ ╔Ср ╔зз╪ ╩сsр ╦Р─X ╠┴Uр ═pжX b█` ╣╨P aq` л7P нP ▓и ла
╣░LMT -0530 CST CDT
CST6
| 964 | Common Lisp | .l | 4 | 239 | 588 | 0.26875 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | 1301277865f2edb04d57e6cdffebc941a4f60401f21f25443e0081b2e74b7edc | 43,784 | [
-1
] |
43,785 | Hermosillo | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/zoneinfo/America/Hermosillo | TZif2 е╢шpпЄnр╢fV`╖C╥`╕6`╕¤ЖЁ╦ъq`╪С┤Ё pА1gД2sА3Gf4R°А5'H62┌А Ч° ЭР ла ПА ла ЭР LMT MST CST PST MDT TZif2 е╢шp пЄnр ╢fV` ╖C╥` ╕6` ╕¤ЖЁ ╦ъq` ╪С┤Ё pА 1gД 2sА 3Gf 4R°А 5'H 62┌А Ч° ЭР ла ПА ла ЭР LMT MST CST PST MDT
MST7
| 440 | Common Lisp | .l | 2 | 219 | 434 | 0.315068 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | 3f6bc4cf70c03b6bc600a25efd3db076df5666ac815cf2298eb381d58a444488 | 43,785 | [
-1
] |
43,786 | Coral_Harbour | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/zoneinfo/America/Coral_Harbour | TZif2 € ž¸¡€ŸºùpÈøW`ˈþ€Ò#ôpÒa ðÿÿª ÿÿ¹°ÿÿ« ÿÿ¹°ÿÿ¹°ÿÿ¹° LMT CDT CST CWT CPT EST TZif2 ÿÿÿÿrî„dÿÿÿÿž¸¡€ÿÿÿÿŸºùpÿÿÿÿÈøW`ÿÿÿÿˈþ€ÿÿÿÿÒ#ôpÿÿÿÿÒa ðÿÿª ÿÿ¹°ÿÿ« ÿÿ¹°ÿÿ¹°ÿÿ¹° LMT CDT CST CWT CPT EST
EST5
| 336 | Common Lisp | .l | 2 | 167 | 330 | 0.446108 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | 7dd84dc5efadd0234f0972dc28540fa645e05ba423e866ddc3986905cf1459c2 | 43,786 | [
-1
] |
43,787 | El_Salvador | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/zoneinfo/America/El_Salvador | TZif2 г╒ж Ъ▄р!\ЫP"z╛р#<}P м` ╣░ ла LMT CDT CST TZif2 г╒ж Ъ▄р !\ЫP "z╛р #<}P м` ╣░ ла LMT CDT CST
CST6
| 236 | Common Lisp | .l | 2 | 117 | 230 | 0.239316 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | 97e5f921b70e67c5968ba49963472ba6a756e3c1356f3d615b105bc496dcaaac | 43,787 | [
-1
] |
43,789 | Queensland | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/zoneinfo/Australia/Queensland | TZif2 А ЬNжЬЬ╝ Ё╦T│ ╦╟Wp╠╖VА═з9p╬аs ╧Зpp9А
%I═ %яъ ')п '╧╠ ) С )по Пx Ъ░ Ма Ъ░ Ма LMT AEDT AEST TZif2 rэЯ ЬNжЬ Ь╝ Ё ╦T│ ╦╟Wp ╠╖VА ═з9p ╬аs ╧Зp p9А
%I═ %яъ ')п '╧╠ ) С )по Пx Ъ░ Ма Ъ░ Ма LMT AEDT AEST
AEST-10
| 443 | Common Lisp | .l | 2 | 220.5 | 434 | 0.258503 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | d75ec40d4a0af779692d3b6ef1cc384f60becd6c3f641ad88c8048371485929a | 43,789 | [
-1
] |
43,790 | Universal | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/zoneinfo/right/Universal | TZif2 UTC ≤X §Ï ÜÇ gS HÜÑ
+Ö ? Ìrá Œ¶ ü â
IJ
b1ã %Í
!⁄Â
%ûùé '— *Pıê ,2) .\í 0Á$ 3∏Hî 6å C∑ñ I\ó OÔì Uì-ô XhFö TZif2 UTC ≤X §Ï ÜÇ gS HÜÑ
+Ö ? Ìrá Œ¶ ü â
IJ
b1ã %Í
!⁄Â
%ûùé '— *Pıê ,2) .\í 0Á$ 3∏Hî 6å C∑ñ I\ó OÔì Uì-ô XhFö
UTC0
| 658 | Common Lisp | .l | 6 | 108.666667 | 307 | 0.187117 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | 58754c53c390540187923fe2eb63e1d925f40f9c6a7d993437559c2392aeef76 | 43,790 | [
-1
] |
43,792 | Douala | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/zoneinfo/right/Africa/Douala | TZif2 °QÛP 0 LMT WAT ≤X §Ï ÜÇ gS HÜÑ
+Ö ? Ìrá Œ¶ ü â
IJ
b1ã %Í
!⁄Â
%ûùé '— *Pıê ,2) .\í 0Á$ 3∏Hî 6å C∑ñ I\ó OÔì Uì-ô XhFö TZif2 ˇˇˇˇ°QÛP 0 LMT WAT ≤X §Ï ÜÇ gS HÜÑ
+Ö ? Ìrá Œ¶ ü â
IJ
b1ã %Í
!⁄Â
%ûùé '— *Pıê ,2) .\í 0Á$ 3∏Hî 6å C∑ñ I\ó OÔì Uì-ô XhFö
WAT-1
| 697 | Common Lisp | .l | 6 | 115.166667 | 328 | 0.202605 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | 160c4f6f4f04a5e79e5d839603d377c7b8bb7e0d55070ba44a0dc27c724f9772 | 43,792 | [
-1
] |
43,796 | Kigali | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/zoneinfo/right/Africa/Kigali | TZif2 ÇF≈Ù å LMT CAT ≤X §Ï ÜÇ gS HÜÑ
+Ö ? Ìrá Œ¶ ü â
IJ
b1ã %Í
!⁄Â
%ûùé '— *Pıê ,2) .\í 0Á$ 3∏Hî 6å C∑ñ I\ó OÔì Uì-ô XhFö TZif2 ˇˇˇˇÇF≈Ù å LMT CAT ≤X §Ï ÜÇ gS HÜÑ
+Ö ? Ìrá Œ¶ ü â
IJ
b1ã %Í
!⁄Â
%ûùé '— *Pıê ,2) .\í 0Á$ 3∏Hî 6å C∑ñ I\ó OÔì Uì-ô XhFö
CAT-2
| 697 | Common Lisp | .l | 6 | 115.166667 | 328 | 0.202605 | NailykSturm/Info805-TP | 0 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:51:23 AM (Europe/Amsterdam) | 4fae4bdc4430b8dc048a2e6ffc4771e22bce49071623a94ebb1d4d0fa716612d | 43,796 | [
-1
] |
43,798 | Tegucigalpa | NailykSturm_Info805-TP/src/Import/quicklisp/dists/quicklisp/software/local-time-20220707-git/zoneinfo/right/America/Tegucigalpa | TZif2 §LKD ö‹Ì!\õ]"zæÓ#<}^D]å˜D÷»ÁˇˇÆ< |