{% if session.config.treatment_group == "control" %}
{% if C.GAME_SEQ == 1 %}
You will repeat a game with a randomly assigned player for at least {{C.MIN_ROUNDS}} rounds.
After the 20th round, there will be a 50% chance that another round will follow.
{% else %}
You will repeat a game with a newly randomly assigned player for at least {{C.MIN_ROUNDS}} rounds.
After the 20th round, there will be a 50% chance that another round will follow.
{% endif %}
In each round, both of you will get an initial point of {{ session.config.init_more }}.
You each will decide how many points you would like to contribute to the common pool and how many to keep for yourself.
For every 1 point contributed, the common pool increases by {{session.config.unit_more}} points.
{% endif %}
{% if session.config.treatment_group == "endowment" %}
{% if C.GAME_SEQ == 1 %}
In the first round, you and a co-player are randomly assigned the role of Player 1 and Player 2.
You will repeat the game for at least {{C.MIN_ROUNDS}} rounds.
After the 20th round, there will be a 50% chance that another round will follow.
Neither of your roles will be changed during the game.
{% else %}
Your role in Game 2 is different from that in Game 1.
You will repeat the game with another player randomly assigned for at least {{C.MIN_ROUNDS}} rounds.
After the 20th round, there will be a 50% chance that another round will follow.
Neither of your roles will be changed during the game.
{% endif %}
In each round, Player 1 has initial {{ session.config.init_more }} points and Player 2 has initial {{ session.config.init_less }} points.
You each will decide how many points you would like to contribute to the common pool and how many to keep for yourself.
For every 1 point contributed, the common pool increases by {{session.config.unit_more}} points.
{% endif %}
{% if session.config.treatment_group == "production" %}
{% if C.GAME_SEQ == 1 %}
In the first round, you and a co-player are randomly assigned the role of Player 1 and Player 2.
You will repeat the game for at least {{C.MIN_ROUNDS}} rounds.
After the 20th round, there will be a 50% chance that another round will follow.
Neither of your roles will be changed during the game.
{% else %}
Your role in Game 2 is different from that in Game 1.
You will repeat the game with another player randomly assigned for at least {{C.MIN_ROUNDS}} rounds.
After the 20th round, there will be a 50% chance that another round will follow.
Neither of your roles will be changed during the game.
{% endif %}
In each round, both of you will get an initial point of {{ session.config.init_more }}.
You each will decide how many points you would like to contribute to the common pool and how many to keep for yourself.
For every 1 point contributed by Player 1, the common pool increases by {{session.config.unit_more}} points.
For every 1 point contributed by Player 2, the common pool increases by {{session.config.unit_less}} ponits.
{% endif %}
{% if session.config.treatment_group == "endowment_and_production" %}
{% if C.GAME_SEQ == 1 %}
In the first round, you and a co-player are randomly assigned the role of Player 1 and Player 2.
You will repeat the game for at least {{C.MIN_ROUNDS}} rounds.
After the 20th round, there will be a 50% chance that another round will follow.
Neither of your roles will be changed during the game.
{% else %}
Your role in Game 2 is different from that in Game 1.
You will repeat the game with another player randomly assigned for at least {{C.MIN_ROUNDS}} rounds.
After the 20th round, there will be a 50% chance that another round will follow.
Neither of your roles will be changed during the game.
{% endif %}
In each round, Player 1 has initial {{ session.config.init_more }} points and Player 2 has initial {{ session.config.init_less }} points.
You each will decide how many points you would like to contribute to the common pool and how many to keep for yourself.
For every 1 point contributed by Player 1, the common pool increases by {{session.config.unit_more}} points.
For every 1 point contributed by Player 2, the common pool increases by {{session.config.unit_less}} ponits.
{% endif %}
The points in the common pool will be split evenly between two players at the end of each round.
Your points earned per round is the sum of the points kept for yourself and the points received from the common pool.