2019-07-25 18:42:08 +00:00
|
|
|
"""
|
|
|
|
Definition of cli arguments used in arguments.py
|
|
|
|
"""
|
2020-01-26 12:41:04 +00:00
|
|
|
from argparse import ArgumentTypeError
|
2019-07-25 18:42:08 +00:00
|
|
|
|
|
|
|
from freqtrade import __version__, constants
|
|
|
|
|
|
|
|
|
|
|
|
def check_int_positive(value: str) -> int:
|
|
|
|
try:
|
|
|
|
uint = int(value)
|
|
|
|
if uint <= 0:
|
|
|
|
raise ValueError
|
|
|
|
except ValueError:
|
2020-01-26 12:41:04 +00:00
|
|
|
raise ArgumentTypeError(
|
2019-07-25 18:42:08 +00:00
|
|
|
f"{value} is invalid for this parameter, should be a positive integer value"
|
|
|
|
)
|
|
|
|
return uint
|
|
|
|
|
|
|
|
|
2019-11-26 12:01:42 +00:00
|
|
|
def check_int_nonzero(value: str) -> int:
|
|
|
|
try:
|
|
|
|
uint = int(value)
|
|
|
|
if uint == 0:
|
|
|
|
raise ValueError
|
|
|
|
except ValueError:
|
2020-01-26 12:41:04 +00:00
|
|
|
raise ArgumentTypeError(
|
2019-11-26 12:01:42 +00:00
|
|
|
f"{value} is invalid for this parameter, should be a non-zero integer value"
|
|
|
|
)
|
|
|
|
return uint
|
|
|
|
|
|
|
|
|
2019-07-25 18:42:08 +00:00
|
|
|
class Arg:
|
|
|
|
# Optional CLI arguments
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.cli = args
|
|
|
|
self.kwargs = kwargs
|
|
|
|
|
|
|
|
|
|
|
|
# List of available command line options
|
|
|
|
AVAILABLE_CLI_OPTIONS = {
|
|
|
|
# Common options
|
|
|
|
"verbosity": Arg(
|
|
|
|
'-v', '--verbose',
|
|
|
|
help='Verbose mode (-vv for more, -vvv to get all messages).',
|
|
|
|
action='count',
|
|
|
|
default=0,
|
|
|
|
),
|
|
|
|
"logfile": Arg(
|
|
|
|
'--logfile',
|
2019-10-26 09:45:05 +00:00
|
|
|
help="Log to the file specified. Special values are: 'syslog', 'journald'. "
|
|
|
|
"See the documentation for more details.",
|
2019-07-25 18:42:08 +00:00
|
|
|
metavar='FILE',
|
|
|
|
),
|
|
|
|
"version": Arg(
|
|
|
|
'-V', '--version',
|
|
|
|
action='version',
|
|
|
|
version=f'%(prog)s {__version__}',
|
|
|
|
),
|
|
|
|
"config": Arg(
|
|
|
|
'-c', '--config',
|
|
|
|
help=f'Specify configuration file (default: `{constants.DEFAULT_CONFIG}`). '
|
|
|
|
f'Multiple --config options may be used. '
|
|
|
|
f'Can be set to `-` to read config from stdin.',
|
|
|
|
action='append',
|
|
|
|
metavar='PATH',
|
|
|
|
),
|
|
|
|
"datadir": Arg(
|
|
|
|
'-d', '--datadir',
|
2019-07-31 04:49:25 +00:00
|
|
|
help='Path to directory with historical backtesting data.',
|
2019-07-25 18:42:08 +00:00
|
|
|
metavar='PATH',
|
|
|
|
),
|
2019-07-21 12:13:38 +00:00
|
|
|
"user_data_dir": Arg(
|
|
|
|
'--userdir', '--user-data-dir',
|
2019-07-31 04:49:25 +00:00
|
|
|
help='Path to userdata directory.',
|
2019-07-21 12:13:38 +00:00
|
|
|
metavar='PATH',
|
|
|
|
),
|
2019-11-01 13:08:55 +00:00
|
|
|
"reset": Arg(
|
|
|
|
'--reset',
|
|
|
|
help='Reset sample files to their original state.',
|
|
|
|
action='store_true',
|
|
|
|
),
|
2019-07-25 18:42:08 +00:00
|
|
|
# Main options
|
|
|
|
"strategy": Arg(
|
|
|
|
'-s', '--strategy',
|
2019-09-21 17:54:44 +00:00
|
|
|
help='Specify strategy class name which will be used by the bot.',
|
2019-07-25 18:42:08 +00:00
|
|
|
metavar='NAME',
|
|
|
|
),
|
|
|
|
"strategy_path": Arg(
|
|
|
|
'--strategy-path',
|
|
|
|
help='Specify additional strategy lookup path.',
|
|
|
|
metavar='PATH',
|
|
|
|
),
|
|
|
|
"db_url": Arg(
|
|
|
|
'--db-url',
|
|
|
|
help=f'Override trades database URL, this is useful in custom deployments '
|
|
|
|
f'(default: `{constants.DEFAULT_DB_PROD_URL}` for Live Run mode, '
|
|
|
|
f'`{constants.DEFAULT_DB_DRYRUN_URL}` for Dry Run).',
|
|
|
|
metavar='PATH',
|
|
|
|
),
|
|
|
|
"sd_notify": Arg(
|
|
|
|
'--sd-notify',
|
|
|
|
help='Notify systemd service manager.',
|
|
|
|
action='store_true',
|
|
|
|
),
|
2019-10-15 04:51:03 +00:00
|
|
|
"dry_run": Arg(
|
|
|
|
'--dry-run',
|
2019-10-15 10:26:06 +00:00
|
|
|
help='Enforce dry-run for trading (removes Exchange secrets and simulates trades).',
|
2019-10-15 04:51:03 +00:00
|
|
|
action='store_true',
|
|
|
|
),
|
2019-07-25 18:42:08 +00:00
|
|
|
# Optimize common
|
|
|
|
"ticker_interval": Arg(
|
|
|
|
'-i', '--ticker-interval',
|
|
|
|
help='Specify ticker interval (`1m`, `5m`, `30m`, `1h`, `1d`).',
|
|
|
|
),
|
|
|
|
"timerange": Arg(
|
|
|
|
'--timerange',
|
|
|
|
help='Specify what timerange of data to use.',
|
|
|
|
),
|
|
|
|
"max_open_trades": Arg(
|
2019-12-21 21:17:51 +00:00
|
|
|
'--max-open-trades',
|
|
|
|
help='Override the value of the `max_open_trades` configuration setting.',
|
2019-07-25 18:42:08 +00:00
|
|
|
type=int,
|
|
|
|
metavar='INT',
|
|
|
|
),
|
|
|
|
"stake_amount": Arg(
|
2019-12-21 21:17:51 +00:00
|
|
|
'--stake-amount',
|
|
|
|
help='Override the value of the `stake_amount` configuration setting.',
|
2019-07-25 18:42:08 +00:00
|
|
|
type=float,
|
|
|
|
),
|
|
|
|
# Backtesting
|
|
|
|
"position_stacking": Arg(
|
|
|
|
'--eps', '--enable-position-stacking',
|
|
|
|
help='Allow buying the same pair multiple times (position stacking).',
|
|
|
|
action='store_true',
|
|
|
|
default=False,
|
|
|
|
),
|
|
|
|
"use_max_market_positions": Arg(
|
|
|
|
'--dmmp', '--disable-max-market-positions',
|
|
|
|
help='Disable applying `max_open_trades` during backtest '
|
|
|
|
'(same as setting `max_open_trades` to a very high number).',
|
|
|
|
action='store_false',
|
|
|
|
default=True,
|
|
|
|
),
|
|
|
|
"strategy_list": Arg(
|
|
|
|
'--strategy-list',
|
2019-08-06 04:27:38 +00:00
|
|
|
help='Provide a space-separated list of strategies to backtest. '
|
2019-07-25 18:42:08 +00:00
|
|
|
'Please note that ticker-interval needs to be set either in config '
|
|
|
|
'or via command line. When using this together with `--export trades`, '
|
|
|
|
'the strategy-name is injected into the filename '
|
|
|
|
'(so `backtest-data.json` becomes `backtest-data-DefaultStrategy.json`',
|
|
|
|
nargs='+',
|
|
|
|
),
|
|
|
|
"export": Arg(
|
|
|
|
'--export',
|
|
|
|
help='Export backtest results, argument are: trades. '
|
|
|
|
'Example: `--export=trades`',
|
|
|
|
),
|
|
|
|
"exportfilename": Arg(
|
|
|
|
'--export-filename',
|
2019-10-20 17:35:38 +00:00
|
|
|
help='Save backtest results to the file with this filename. '
|
2019-07-25 18:42:08 +00:00
|
|
|
'Requires `--export` to be set as well. '
|
2019-07-21 11:31:42 +00:00
|
|
|
'Example: `--export-filename=user_data/backtest_results/backtest_today.json`',
|
2019-07-25 18:42:08 +00:00
|
|
|
metavar='PATH',
|
|
|
|
),
|
2019-10-05 13:29:00 +00:00
|
|
|
"fee": Arg(
|
|
|
|
'--fee',
|
2019-10-07 05:02:43 +00:00
|
|
|
help='Specify fee ratio. Will be applied twice (on trade entry and exit).',
|
2019-10-05 13:29:00 +00:00
|
|
|
type=float,
|
|
|
|
metavar='FLOAT',
|
2019-07-25 18:42:08 +00:00
|
|
|
),
|
|
|
|
# Edge
|
|
|
|
"stoploss_range": Arg(
|
|
|
|
'--stoplosses',
|
|
|
|
help='Defines a range of stoploss values against which edge will assess the strategy. '
|
|
|
|
'The format is "min,max,step" (without any space). '
|
|
|
|
'Example: `--stoplosses=-0.01,-0.1,-0.001`',
|
|
|
|
),
|
|
|
|
# Hyperopt
|
|
|
|
"hyperopt": Arg(
|
2019-10-14 17:42:28 +00:00
|
|
|
'--hyperopt',
|
2019-10-10 01:37:32 +00:00
|
|
|
help='Specify hyperopt class name which will be used by the bot.',
|
2019-07-25 18:42:08 +00:00
|
|
|
metavar='NAME',
|
|
|
|
),
|
|
|
|
"hyperopt_path": Arg(
|
|
|
|
'--hyperopt-path',
|
2019-11-13 08:38:06 +00:00
|
|
|
help='Specify additional lookup path for Hyperopt and Hyperopt Loss functions.',
|
2019-07-25 18:42:08 +00:00
|
|
|
metavar='PATH',
|
|
|
|
),
|
|
|
|
"epochs": Arg(
|
|
|
|
'-e', '--epochs',
|
|
|
|
help='Specify number of epochs (default: %(default)d).',
|
|
|
|
type=check_int_positive,
|
|
|
|
metavar='INT',
|
|
|
|
default=constants.HYPEROPT_EPOCH,
|
|
|
|
),
|
|
|
|
"spaces": Arg(
|
2019-09-14 11:19:05 +00:00
|
|
|
'--spaces',
|
2019-11-07 22:55:14 +00:00
|
|
|
help='Specify which parameters to hyperopt. Space-separated list.',
|
|
|
|
choices=['all', 'buy', 'sell', 'roi', 'stoploss', 'trailing', 'default'],
|
2019-07-25 18:42:08 +00:00
|
|
|
nargs='+',
|
2019-11-07 22:55:14 +00:00
|
|
|
default='default',
|
2019-07-25 18:42:08 +00:00
|
|
|
),
|
|
|
|
"print_all": Arg(
|
|
|
|
'--print-all',
|
|
|
|
help='Print all results, not only the best ones.',
|
|
|
|
action='store_true',
|
|
|
|
default=False,
|
|
|
|
),
|
2019-08-03 16:09:42 +00:00
|
|
|
"print_colorized": Arg(
|
2019-08-12 18:07:29 +00:00
|
|
|
'--no-color',
|
|
|
|
help='Disable colorization of hyperopt results. May be useful if you are '
|
|
|
|
'redirecting output to a file.',
|
|
|
|
action='store_false',
|
|
|
|
default=True,
|
2019-08-03 16:09:42 +00:00
|
|
|
),
|
2019-08-15 18:39:04 +00:00
|
|
|
"print_json": Arg(
|
|
|
|
'--print-json',
|
|
|
|
help='Print best result detailization in JSON format.',
|
|
|
|
action='store_true',
|
|
|
|
default=False,
|
|
|
|
),
|
2019-07-25 18:42:08 +00:00
|
|
|
"hyperopt_jobs": Arg(
|
|
|
|
'-j', '--job-workers',
|
|
|
|
help='The number of concurrently running jobs for hyperoptimization '
|
|
|
|
'(hyperopt worker processes). '
|
|
|
|
'If -1 (default), all CPUs are used, for -2, all CPUs but one are used, etc. '
|
|
|
|
'If 1 is given, no parallel computing code is used at all.',
|
|
|
|
type=int,
|
|
|
|
metavar='JOBS',
|
|
|
|
default=-1,
|
|
|
|
),
|
|
|
|
"hyperopt_random_state": Arg(
|
|
|
|
'--random-state',
|
|
|
|
help='Set random state to some positive integer for reproducible hyperopt results.',
|
|
|
|
type=check_int_positive,
|
|
|
|
metavar='INT',
|
|
|
|
),
|
|
|
|
"hyperopt_min_trades": Arg(
|
|
|
|
'--min-trades',
|
|
|
|
help="Set minimal desired number of trades for evaluations in the hyperopt "
|
|
|
|
"optimization path (default: 1).",
|
|
|
|
type=check_int_positive,
|
|
|
|
metavar='INT',
|
|
|
|
default=1,
|
|
|
|
),
|
|
|
|
"hyperopt_continue": Arg(
|
|
|
|
"--continue",
|
|
|
|
help="Continue hyperopt from previous runs. "
|
|
|
|
"By default, temporary files will be removed and hyperopt will start from scratch.",
|
|
|
|
default=False,
|
|
|
|
action='store_true',
|
|
|
|
),
|
|
|
|
"hyperopt_loss": Arg(
|
|
|
|
'--hyperopt-loss',
|
|
|
|
help='Specify the class name of the hyperopt loss function class (IHyperOptLoss). '
|
|
|
|
'Different functions can generate completely different results, '
|
2019-08-12 04:45:27 +00:00
|
|
|
'since the target for optimization is different. Built-in Hyperopt-loss-functions are: '
|
2020-02-06 05:49:08 +00:00
|
|
|
'DefaultHyperOptLoss, OnlyProfitHyperOptLoss, SharpeHyperOptLoss, SharpeHyperOptLossDaily.'
|
2019-10-11 20:33:22 +00:00
|
|
|
'(default: `%(default)s`).',
|
2019-07-25 18:42:08 +00:00
|
|
|
metavar='NAME',
|
2019-10-11 20:33:22 +00:00
|
|
|
default=constants.DEFAULT_HYPEROPT_LOSS,
|
2019-07-25 18:42:08 +00:00
|
|
|
),
|
|
|
|
# List exchanges
|
|
|
|
"print_one_column": Arg(
|
|
|
|
'-1', '--one-column',
|
2019-10-10 17:44:24 +00:00
|
|
|
help='Print output in one column.',
|
2019-07-25 18:42:08 +00:00
|
|
|
action='store_true',
|
|
|
|
),
|
2019-09-30 21:33:33 +00:00
|
|
|
"list_exchanges_all": Arg(
|
|
|
|
'-a', '--all',
|
|
|
|
help='Print all exchanges known to the ccxt library.',
|
2019-07-25 18:42:08 +00:00
|
|
|
action='store_true',
|
|
|
|
),
|
2019-10-13 10:12:20 +00:00
|
|
|
# List pairs / markets
|
2019-10-16 23:42:07 +00:00
|
|
|
"list_pairs_all": Arg(
|
|
|
|
'-a', '--all',
|
|
|
|
help='Print all pairs or market symbols. By default only active '
|
|
|
|
'ones are shown.',
|
|
|
|
action='store_true',
|
|
|
|
),
|
2019-10-13 10:12:20 +00:00
|
|
|
"print_list": Arg(
|
|
|
|
'--print-list',
|
|
|
|
help='Print list of pairs or market symbols. By default data is '
|
|
|
|
'printed in the tabular format.',
|
|
|
|
action='store_true',
|
|
|
|
),
|
2019-10-15 19:31:23 +00:00
|
|
|
"list_pairs_print_json": Arg(
|
|
|
|
'--print-json',
|
|
|
|
help='Print list of pairs or market symbols in JSON format.',
|
|
|
|
action='store_true',
|
|
|
|
default=False,
|
|
|
|
),
|
2019-10-15 23:22:27 +00:00
|
|
|
"print_csv": Arg(
|
|
|
|
'--print-csv',
|
|
|
|
help='Print exchange pair or market data in the csv format.',
|
|
|
|
action='store_true',
|
|
|
|
),
|
2019-10-16 23:09:19 +00:00
|
|
|
"quote_currencies": Arg(
|
|
|
|
'--quote',
|
|
|
|
help='Specify quote currency(-ies). Space-separated list.',
|
|
|
|
nargs='+',
|
2019-10-17 14:31:49 +00:00
|
|
|
metavar='QUOTE_CURRENCY',
|
2019-10-13 10:12:20 +00:00
|
|
|
),
|
2019-10-16 23:09:19 +00:00
|
|
|
"base_currencies": Arg(
|
|
|
|
'--base',
|
|
|
|
help='Specify base currency(-ies). Space-separated list.',
|
|
|
|
nargs='+',
|
2019-10-17 14:31:49 +00:00
|
|
|
metavar='BASE_CURRENCY',
|
2019-10-13 10:12:20 +00:00
|
|
|
),
|
2019-07-25 18:42:08 +00:00
|
|
|
# Script options
|
|
|
|
"pairs": Arg(
|
|
|
|
'-p', '--pairs',
|
2019-08-16 12:37:10 +00:00
|
|
|
help='Show profits for only these pairs. Pairs are space-separated.',
|
|
|
|
nargs='+',
|
2019-07-25 18:42:08 +00:00
|
|
|
),
|
|
|
|
# Download data
|
|
|
|
"pairs_file": Arg(
|
|
|
|
'--pairs-file',
|
|
|
|
help='File containing a list of pairs to download.',
|
|
|
|
metavar='FILE',
|
|
|
|
),
|
|
|
|
"days": Arg(
|
|
|
|
'--days',
|
|
|
|
help='Download data for given number of days.',
|
|
|
|
type=check_int_positive,
|
|
|
|
metavar='INT',
|
|
|
|
),
|
2019-10-08 18:31:01 +00:00
|
|
|
"download_trades": Arg(
|
|
|
|
'--dl-trades',
|
2019-10-19 08:05:30 +00:00
|
|
|
help='Download trades instead of OHLCV data. The bot will resample trades to the '
|
|
|
|
'desired timeframe as specified as --timeframes/-t.',
|
2019-10-08 18:31:01 +00:00
|
|
|
action='store_true',
|
|
|
|
),
|
2019-07-25 18:42:08 +00:00
|
|
|
"exchange": Arg(
|
|
|
|
'--exchange',
|
|
|
|
help=f'Exchange name (default: `{constants.DEFAULT_EXCHANGE}`). '
|
|
|
|
f'Only valid if no config is provided.',
|
|
|
|
),
|
|
|
|
"timeframes": Arg(
|
|
|
|
'-t', '--timeframes',
|
|
|
|
help=f'Specify which tickers to download. Space-separated list. '
|
2019-08-16 12:37:10 +00:00
|
|
|
f'Default: `1m 5m`.',
|
2019-07-25 18:42:08 +00:00
|
|
|
choices=['1m', '3m', '5m', '15m', '30m', '1h', '2h', '4h',
|
|
|
|
'6h', '8h', '12h', '1d', '3d', '1w'],
|
2019-08-16 12:37:10 +00:00
|
|
|
default=['1m', '5m'],
|
2019-07-25 18:42:08 +00:00
|
|
|
nargs='+',
|
|
|
|
),
|
|
|
|
"erase": Arg(
|
|
|
|
'--erase',
|
|
|
|
help='Clean all existing data for the selected exchange/pairs/timeframes.',
|
|
|
|
action='store_true',
|
|
|
|
),
|
2019-11-21 06:21:19 +00:00
|
|
|
# Templating options
|
|
|
|
"template": Arg(
|
|
|
|
'--template',
|
|
|
|
help='Use a template which is either `minimal` or '
|
2019-11-24 08:55:34 +00:00
|
|
|
'`full` (containing multiple sample indicators). Default: `%(default)s`.',
|
2019-11-21 06:21:19 +00:00
|
|
|
choices=['full', 'minimal'],
|
|
|
|
default='full',
|
|
|
|
),
|
2019-07-25 18:42:08 +00:00
|
|
|
# Plot dataframe
|
|
|
|
"indicators1": Arg(
|
|
|
|
'--indicators1',
|
|
|
|
help='Set indicators from your strategy you want in the first row of the graph. '
|
2020-01-04 10:14:00 +00:00
|
|
|
"Space-separated list. Example: `ema3 ema5`. Default: `['sma', 'ema3', 'ema5']`.",
|
2019-08-22 15:09:58 +00:00
|
|
|
nargs='+',
|
2019-07-25 18:42:08 +00:00
|
|
|
),
|
|
|
|
"indicators2": Arg(
|
|
|
|
'--indicators2',
|
|
|
|
help='Set indicators from your strategy you want in the third row of the graph. '
|
2020-01-04 10:14:00 +00:00
|
|
|
"Space-separated list. Example: `fastd fastk`. Default: `['macd', 'macdsignal']`.",
|
2019-08-22 15:09:58 +00:00
|
|
|
nargs='+',
|
2019-07-25 18:42:08 +00:00
|
|
|
),
|
|
|
|
"plot_limit": Arg(
|
|
|
|
'--plot-limit',
|
|
|
|
help='Specify tick limit for plotting. Notice: too high values cause huge files. '
|
|
|
|
'Default: %(default)s.',
|
|
|
|
type=check_int_positive,
|
|
|
|
metavar='INT',
|
|
|
|
default=750,
|
|
|
|
),
|
|
|
|
"trade_source": Arg(
|
|
|
|
'--trade-source',
|
|
|
|
help='Specify the source for trades (Can be DB or file (backtest file)) '
|
|
|
|
'Default: %(default)s',
|
|
|
|
choices=["DB", "file"],
|
|
|
|
default="file",
|
|
|
|
),
|
2019-11-26 12:01:42 +00:00
|
|
|
# hyperopt-list, hyperopt-show
|
|
|
|
"hyperopt_list_profitable": Arg(
|
|
|
|
'--profitable',
|
|
|
|
help='Select only profitable epochs.',
|
|
|
|
action='store_true',
|
|
|
|
),
|
|
|
|
"hyperopt_list_best": Arg(
|
|
|
|
'--best',
|
|
|
|
help='Select only best epochs.',
|
|
|
|
action='store_true',
|
|
|
|
),
|
2020-02-08 22:21:42 +00:00
|
|
|
"hyperopt_list_min_avg_time": Arg(
|
|
|
|
'--min-avg-time',
|
|
|
|
help='Select epochs on above average time.',
|
|
|
|
type=check_int_nonzero,
|
|
|
|
metavar='INT',
|
|
|
|
),
|
|
|
|
"hyperopt_list_max_avg_time": Arg(
|
|
|
|
'--max-avg-time',
|
|
|
|
help='Select epochs on under average time.',
|
|
|
|
type=check_int_nonzero,
|
|
|
|
metavar='INT',
|
|
|
|
),
|
|
|
|
"hyperopt_list_min_avg_profit": Arg(
|
|
|
|
'--min-avg-profit',
|
|
|
|
help='Select epochs on above average profit.',
|
|
|
|
type=float,
|
|
|
|
metavar='FLOAT',
|
|
|
|
),
|
|
|
|
"hyperopt_list_min_total_profit": Arg(
|
|
|
|
'--min-total-profit',
|
|
|
|
help='Select epochs on above total profit.',
|
|
|
|
type=float,
|
|
|
|
metavar='FLOAT',
|
|
|
|
),
|
2019-11-26 12:01:42 +00:00
|
|
|
"hyperopt_list_no_details": Arg(
|
|
|
|
'--no-details',
|
|
|
|
help='Do not print best epoch details.',
|
|
|
|
action='store_true',
|
|
|
|
),
|
|
|
|
"hyperopt_show_index": Arg(
|
|
|
|
'-n', '--index',
|
|
|
|
help='Specify the index of the epoch to print details for.',
|
|
|
|
type=check_int_nonzero,
|
|
|
|
metavar='INT',
|
|
|
|
),
|
|
|
|
"hyperopt_show_no_header": Arg(
|
|
|
|
'--no-header',
|
|
|
|
help='Do not print epoch details header.',
|
|
|
|
action='store_true',
|
|
|
|
),
|
2019-07-25 18:42:08 +00:00
|
|
|
}
|