Organization

Switzerland
Ask AI    

Education

234k

4%

Health

94k

1%

Security

16k

0.6%
See all transactions
Legislative program
def new_citizen_application(user):
	if user.reputation > 0.8:
		return 'approved'


def collect_tax(citizen):
	if citizen.income > 1000:
		citizen.wallet.tax = 0.1 * citizen.income
	else:
		citizen.wallet.tax = 0.05 * citizen.income
		

def budget_distribution(cluster):
	budget_allocation = {
			'education': 0.2,
			'health': 0.2,
			'infrastructure': 0.2,
			'security': 0.1,
			'social': 0.1,
			'environment': 0.2
	}
	for organization in cluster.organizations:
		organization.wallet = cluster.budget * budget_allocation[organization.name]

Proposals

TitleCodeDeadlineStatus
Increase education budget In 3 days Voting
Modify member requirements 1 day ago Deployed