#!/usr/local/bin/php
<?php
$tariff=$argv[1];

$tshape=file_get_contents(dirname(__FILE__)."/ts/tshape.dat");
$tshape=unserialize($tshape);
$table=$tshape[$tariff]['table'];
print($table);

?>
