| 12345678910111213 | # Each client sends to the hidden service simultaneously# This requires the appropriate chutney arguments to make each client send data# By default, Authorities are not configured as exitsAuthority = Node(tag="a", authority=1, relay=1, torrc="authority.tmpl")NonExitRelay = Node(tag="r", relay=1, torrc="relay-non-exit.tmpl")Client = Node(tag="c", torrc="client.tmpl")HS = Node(tag="h", hs=1, torrc="hs.tmpl")# Well, 100 instances, with lots of clientsNODES = Authority.getN(3) + NonExitRelay.getN(10) + \        Client.getN(86) + HS.getN(1)ConfigureNodes(NODES)
 |