Simulation for $1000

{{ object }}

Assuming equal throughput for platforms and requisitions. Note that this is just a simulation, equal throughput is highly unlikely.

    {% for key, list in simulation.items %}
  • {{ key.0 }}: ${{ key.1 }}
      {% for item in list %}
    • ${{ item.amount }} to {{ item.name }} at {{ item.address }}
    • {% endfor %}
  • {% endfor %}

Total for wallets

{% for wallet, pay_list in pay_list.items %} {{ wallet }}: ${{ pay_list.amount }} {% endfor %}
{% for key, list in simulation.items %} {{ key.0 }}: ${{ key.1 }} {% for item in list %} {{ item.name }}: ${{ item.amount }} {% endfor %} {% endfor %}