##########################################################################
#    This is the charge file for the				         #
#       >>>> Swiss phone company Telecom PTT (Date 1997) <<<<		 #
#    Derived from the file 'ch-costs.c' written				 #
#    by Roland Egli <egli@swissonline.ch>				 #
#    'ch-costs.c' is a part of 'pppcosts' by Tillmann Steinbrecher	 #
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#
# This file is a part of tcharge, version 1.3, 11MAY98			 #
# Copyright (C) 1997,98 Volker B"orchers (boercher@physik.uni-bremen.de) #
# See file `tcharge.c' for legal affairs.				 #
##########################################################################

## Format for Variables:
#########################
#  VARIABLENAME=VALUE   (One each line, var.-names are not case-sensitive!)

## Comments:
#############
#  * everything after the "comment char" `#' is ignored
#  * you may include empty lines to improve readability

###########################################
## Global Variables ("Per unit billing")  #
###########################################
billing_per_unit = true
billing_per_second = false
unit_price = 0.10
currency_name = "Fr."
charge_date = "1997"
decimals = 2
currency_after_charge = false
zone_help_string="-zone <n>\t  n = 0) Ortszone (Default)\n\t\t      1) Nachbarzone, 2) Fernzone1, 3) Fernzone2"
# (Sorry, `zone_help_string' MUST be one line!)

## Public holidays:
###################
holidays = 0
# (sorted, comma-separated list of days since January 1, in the
# range 0 to 365. Has to be one line!)
# Holidays 1997:
#   0     January 1
#   sorry, not more known

##################################################
## Time/Charge Definitions (not case-sensitive)  #
##################################################
## Format:
#     BEGIN
#     "Local" variable declarations (optional)
#     00:00    <sec>  #-> Begin of time band     length of one unit or
#     <hh:mm>  <sec>  #                          the price per second (per
#        .       .    #                              second billing)
#        .       .
#     END

##
## Ortszone
##
BEGIN
# Sunday and Saturday
    00:00	224
# Working days
    00:00	224
    08:00	99
    17:00	224
    19:00	99
    21:00	224
END


##
## Nachbarzone
##
BEGIN
# Sunday and Saturday
    00:00	59
# Working days
    00:00	59
    08:00	38
    17:00	59
    19:00	38
    21:00	59
END


##
## Fernzone1
##
BEGIN
# Sunday and Saturday
    00:00	41
# Working days
    00:00	41
    08:00	23
    17:00	41
    19:00	23
    21:00	41
END


##
## Fernzone2
##
BEGIN
# Sunday and Saturday
    00:00	41
# Working days
    00:00	41
    08:00	17
    17:00	41
    19:00	17
    21:00	41
END
