{{ block title }}Cartel Detection{{ endblock }} {{ block content }} {% if cartel_formed %} {% if cartel_discovered %}

Your cartel has been discovered and fined by the antitrust authority.

The fine is calculated as follows:

{% if session.config.mode == 'profit' %} Fine = {{ C.PROFIT_RATE }} * Profit this round {% elif session.config.mode == 'revenue' %} Fine = {{ C.REVENUE_RATE }} * Revenue this round {% elif session.config.mode == 'overcharge' %} Fine = {{ C.OVERCHARGE_RATE }} * Overcharge this round {% endif %}

Therefore, your individual fine equals:

{% if session.config.mode == 'profit' %} {{ C.PROFIT_RATE }} * {{ player.no_fine_payoff }} = {{ player.cartel_fine }} {% elif session.config.mode == 'revenue' %} {{ C.REVENUE_RATE }} * {{ player.round_revenue }} = {{ player.cartel_fine }} {% elif session.config.mode == 'overcharge' %} {{ C.OVERCHARGE_RATE }} * max(0, ({{ player.price }} - {{ C.NASH_PRICE }}) * {{ C.NASH_QUANTITY }}) = {{ player.cartel_fine }} {% endif %}

Your final profit for this round is:

{{ player.no_fine_payoff }} - {{ player.cartel_fine }} = {{ payoff_this_round }}

The cartel is no longer active, but can be re-established at the start of next round.

{% else %}

Your cartel was not discovered this round. You therefore receive no fine and your total payoff this round is:

{{ payoff_this_round }}

Your cartel remains active in the next round.

{% endif %} {% else %}

You are not in a cartel and can therefore not be fined. Your total payoff this round is:

{{ payoff_this_round }}
{% endif %}

The next page displays a table with the history of the game so far.

{{ next_button }} {{ endblock }}