# Copyright (C) 2011 Xerxes Tsang
# This program is free software; you can redistribute it and/or modify it
# under the terms of Perl Artistic License.
use strict;
sub Fifteen {
return 'Fifteen';
}
sub FortyFive {
return 'FortyFive';
}
sub Seven {
return 'Seven';
}
sub Thirty {
return 'Thirty';
}
1;