import "./messages"; struct AddressList { addresses: map[Int]Address; length: Int; } contract Foundation { admins: AddressList; founders: AddressList; percents: map[Address]Int; vote_time: Int; tonb: Address; init(admins: AddressList, founders: AddressList, percents: map[Address]Int, vote_time: Int, tonb: Address) { self.admins = admins; self.founders = founders; self.percents = percents; self.vote_time = vote_time; self.tonb = tonb; } }