Contract Overview
Balance:
0 AVAX
AVAX Value:
$0.00
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Contract Name:
AUSDSafeOwner
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2021-12-21 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IAUSD { function addCoin(address coin) external; function blockCoin(uint16 index, bool blocked) external; function updateMintFee(uint16 _mintFeePercent) external; function updateRedeemFee(uint16 _redeemFeePercent) external; function updateTreasury(address _treasury) external; function transferOwnership(address newOwner) external; } /// @notice The AUSDSafeOwner owns AUSD and locks down its functionality. /// @notice It prevents the owner from ever increasing the redemption fee beyond reasonable amounts. /// @notice It requires the owner to announce that they are adding a new token at least 24 hours in advance. /// @notice It moves us one step closer to decentralisation. contract AUSDSafeOwner { uint16 public maxMintFee = 1000; uint16 public maxRedemptionFee = 1000; uint256 public constant ownershipReclaimDelay = 7 * 24 hours; uint256 public ownershipReclaimTimestamp; address public pendingOwner; uint256 public delay = 24 hours; mapping(address => uint256) public addCoinAllowedAt; event DelayUpdated(uint256 delay); event MaxMintFeeUpdated(uint16 maxMintFee); event MaxRedemptionFeeUpdated(uint16 maxRedemptionFee); event CoinQueued(address indexed coin, bool indexed cancelled); event OwnershipTransferQueued(address indexed owner, bool indexed cancelled); event CoinAdded(address indexed coin); event CoinBlocked(uint16 indexed coin, bool indexed blocked); event MintFeeUpdated(uint16 mintFee); event RedemptionFeeUpdated(uint16 redemptionFee); event TreasuryUpdated(address indexed treasury); event UnderlyingOwnershipTransferred(address indexed newOwner); address public owner; IAUSD public immutable ausd; constructor(address _ausd) { ausd = IAUSD(_ausd); owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } //** GOVERNANCE FUNCTIONS **// /// @notice Increases the timelock delay which is initially set at 24 hours. Makes the contract even safer but cannot be undone. function increaseDelayTo(uint256 newDelay) external onlyOwner { require(newDelay > delay, "Cannot decrease timelock delay"); delay = newDelay; emit DelayUpdated(newDelay); } /// @notice Decreases the max mint fee which is initially set at 10%. Makes the contract even safer but cannot be undone. function decreaseMaxMintFee(uint16 newMaxMintFee) external onlyOwner { require(newMaxMintFee < maxMintFee, "Cannot decrease timelock delay"); maxMintFee = newMaxMintFee; emit MaxMintFeeUpdated(newMaxMintFee); } /// @notice Decreases the max redemption fee which is initially set at 10%. Makes the contract even safer but cannot be undone. function decreaseMaxRedemptionFee(uint16 newMaxRedemptionFee) external onlyOwner { require(newMaxRedemptionFee < maxRedemptionFee, "Cannot decrease timelock delay"); maxRedemptionFee = newMaxRedemptionFee; emit MaxRedemptionFeeUpdated(newMaxRedemptionFee); } /// @notice queues an addCoin call, addCoin can be called 24 hours later. function queueAddCoin(address coin) external onlyOwner { require(addCoinAllowedAt[coin] == 0, "!already queued"); addCoinAllowedAt[coin] = block.timestamp + delay; emit CoinQueued(coin, false); } /// @notice cancel the addCoin queue. function cancelAddCoin(address coin) external onlyOwner { require(addCoinAllowedAt[coin] != 0, "!not queued"); addCoinAllowedAt[coin] = 0; emit CoinQueued(coin, true); } /// @notice queues an transferOwnership, allows for ownership to be reclaimed 7 days later. function queueOwnershipTransfer(address _pendingOwner) external onlyOwner { require(ownershipReclaimTimestamp == 0, "!already queued"); pendingOwner = _pendingOwner; ownershipReclaimTimestamp = block.timestamp + ownershipReclaimDelay; emit OwnershipTransferQueued(_pendingOwner, false); } /// @notice cancels the ownershipTransfer queue. function cancelOwnershipReclaim() external onlyOwner { require(ownershipReclaimTimestamp != 0, "!not queued"); pendingOwner = address(0); ownershipReclaimTimestamp = 0; } //** SAFEGUARDED FUNCTIONS **// /// @notice Calls addcoin on ausd, requires this to be announced at least 24 hours beforehand. function addCoin(address coin) external onlyOwner { require(addCoinAllowedAt[coin] != 0, "!not queued"); require(block.timestamp >= addCoinAllowedAt[coin], "!not ready"); addCoinAllowedAt[coin] = 0; ausd.addCoin(coin); emit CoinAdded(coin); } /// @notice Blocks minting using the specified stablecoin, can be called at any time to prevent exploits if a stable loses peg. function blockCoin(uint16 index, bool blocked) external onlyOwner { ausd.blockCoin(index, blocked); emit CoinBlocked(index, blocked); } /// @notice updates the mintFee, adds the requirement that it can be at most 10%. function updateMintFee(uint16 _mintFeePercent) external onlyOwner { require(_mintFeePercent <= maxMintFee, "!too high"); ausd.updateMintFee(_mintFeePercent); emit MintFeeUpdated(_mintFeePercent); } /// @notice updates the redeemFee, adds the requirement that it can be at most 10%. function updateRedeemFee(uint16 _redeemFeePercent) external onlyOwner { require(_redeemFeePercent <= maxRedemptionFee, "!too high"); ausd.updateRedeemFee(_redeemFeePercent); emit RedemptionFeeUpdated(_redeemFeePercent); } /// @notice sets the treasury, adds the requirement that it must be non-zero. function updateTreasury(address _treasury) external onlyOwner { require(_treasury != address(0), "!zero address"); ausd.updateTreasury(_treasury); emit TreasuryUpdated(_treasury); } /// @notice transfers ownership away from the safeOwner, adds the requirement that this must be announced 7 days in advance. function transferUnderlyingOwnership() external onlyOwner { require(pendingOwner != address(0), "!zero address"); require(ownershipReclaimTimestamp != 0, "!not queued"); require(block.timestamp >= ownershipReclaimTimestamp, "!not ready"); ausd.transferOwnership(pendingOwner); emit UnderlyingOwnershipTransferred(pendingOwner); } function transferOwnership(address newOwner) external onlyOwner { require(newOwner != address(0), "!zero address"); owner = newOwner; } }
[{"inputs":[{"internalType":"address","name":"_ausd","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"coin","type":"address"}],"name":"CoinAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"coin","type":"uint16"},{"indexed":true,"internalType":"bool","name":"blocked","type":"bool"}],"name":"CoinBlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"coin","type":"address"},{"indexed":true,"internalType":"bool","name":"cancelled","type":"bool"}],"name":"CoinQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"delay","type":"uint256"}],"name":"DelayUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"maxMintFee","type":"uint16"}],"name":"MaxMintFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"maxRedemptionFee","type":"uint16"}],"name":"MaxRedemptionFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"mintFee","type":"uint16"}],"name":"MintFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"bool","name":"cancelled","type":"bool"}],"name":"OwnershipTransferQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"redemptionFee","type":"uint16"}],"name":"RedemptionFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasury","type":"address"}],"name":"TreasuryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"UnderlyingOwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"coin","type":"address"}],"name":"addCoin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addCoinAllowedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ausd","outputs":[{"internalType":"contract IAUSD","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"index","type":"uint16"},{"internalType":"bool","name":"blocked","type":"bool"}],"name":"blockCoin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"coin","type":"address"}],"name":"cancelAddCoin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cancelOwnershipReclaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newMaxMintFee","type":"uint16"}],"name":"decreaseMaxMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newMaxRedemptionFee","type":"uint16"}],"name":"decreaseMaxRedemptionFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"delay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDelay","type":"uint256"}],"name":"increaseDelayTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMintFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRedemptionFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownershipReclaimDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownershipReclaimTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"coin","type":"address"}],"name":"queueAddCoin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pendingOwner","type":"address"}],"name":"queueOwnershipTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferUnderlyingOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintFeePercent","type":"uint16"}],"name":"updateMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_redeemFeePercent","type":"uint16"}],"name":"updateRedeemFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"updateTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526103e86000806101000a81548161ffff021916908361ffff1602179055506103e8600060026101000a81548161ffff021916908361ffff160217905550620151806003553480156200005557600080fd5b506040516200203a3803806200203a83398181016040528101906200007b919062000111565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200018b565b6000815190506200010b8162000171565b92915050565b6000602082840312156200012457600080fd5b60006200013484828501620000fa565b91505092915050565b60006200014a8262000151565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6200017c816200013d565b81146200018857600080fd5b50565b60805160601c611e66620001d46000396000818161065b01528181610a4401528181610bbc01528181610e7201528181611246015281816112c4015261173f0152611e666000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063823accae116100c3578063c23af8321161007c578063c23af8321461033c578063e1ccd0571461035a578063e30c397814610376578063edaa40d214610394578063f2fde38b146103b0578063f54a7e29146103cc5761014d565b8063823accae1461027a5780638da5cb5b1461029657806391245f9f146102b457806397d66464146102d2578063a1ce1c9b146102ee578063b18550551461030c5761014d565b80635cc66106116101155780635cc66106146101cc5780635f0dff83146101e857806366ce4bda146102065780636a42b8f81461022257806374c9e481146102405780637f51bb1f1461025e5761014d565b80630665a4c31461015257806316da86321461016e57806323837c411461018a57806327aa0cf3146101a65780632cb1036b146101b0575b600080fd5b61016c60048036038101906101679190611933565b6103d6565b005b610188600480360381019061018391906118a5565b6104b5565b005b6101a4600480360381019061019f91906118a5565b61072a565b005b6101ae6108a1565b005b6101ca60048036038101906101c591906118ce565b61098d565b005b6101e660048036038101906101e191906118ce565b610b07565b005b6101f0610c7f565b6040516101fd9190611bb3565b60405180910390f35b610220600480360381019061021b91906118ce565b610c86565b005b61022a610d8e565b6040516102379190611bb3565b60405180910390f35b610248610d94565b6040516102559190611b6f565b60405180910390f35b610278600480360381019061027391906118a5565b610da6565b005b610294600480360381019061028f91906118a5565b610f41565b005b61029e611080565b6040516102ab9190611a79565b60405180910390f35b6102bc6110a6565b6040516102c99190611b6f565b60405180910390f35b6102ec60048036038101906102e791906118a5565b6110ba565b005b6102f6611226565b6040516103039190611bb3565b60405180910390f35b610326600480360381019061032191906118a5565b61122c565b6040516103339190611bb3565b60405180910390f35b610344611244565b6040516103519190611a94565b60405180910390f35b610374600480360381019061036f91906118f7565b611268565b005b61037e611387565b60405161038b9190611a79565b60405180910390f35b6103ae60048036038101906103a991906118ce565b6113ad565b005b6103ca60048036038101906103c591906118a5565b6114b8565b005b6103d46115c6565b005b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461043057600080fd5b6003548111610474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046b90611b0f565b60405180910390fd5b806003819055507f7ed9288af3fe7320be9af1fcb6714d780e3ffd1a17c1a395594978fd6741ddcb816040516104aa9190611bb3565b60405180910390a150565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461050f57600080fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058990611b2f565b60405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054421015610614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060b90611acf565b60405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166316da8632826040518263ffffffff1660e01b81526004016106b29190611a79565b600060405180830381600087803b1580156106cc57600080fd5b505af11580156106e0573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff167f079d90738577c8caf6b4700748a20dbf77c1b79f3d1573799086d59f7cfa746f60405160405180910390a250565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461078457600080fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90611b4f565b60405180910390fd5b600354426108149190611bdf565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600015158173ffffffffffffffffffffffffffffffffffffffff167f6e7261beedcd3ac9a76216bc0953c5ae9a71a1a515f7295a95aa50d5c7d52bf260405160405180910390a350565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108fb57600080fd5b60006001541415610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890611b2f565b60405180910390fd5b6000600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600181905550565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109e757600080fd5b600060029054906101000a900461ffff1661ffff168161ffff161115610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3990611aef565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632cb1036b826040518263ffffffff1660e01b8152600401610a9b9190611b6f565b600060405180830381600087803b158015610ab557600080fd5b505af1158015610ac9573d6000803e3d6000fd5b505050507f9de314ad468330bb68940f6f5b9fc3de54220473d759b690b121b567e5c9522f81604051610afc9190611b6f565b60405180910390a150565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b6157600080fd5b60008054906101000a900461ffff1661ffff168161ffff161115610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190611aef565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635cc66106826040518263ffffffff1660e01b8152600401610c139190611b6f565b600060405180830381600087803b158015610c2d57600080fd5b505af1158015610c41573d6000803e3d6000fd5b505050507fd7305c2100875d296d51b558aeed69b9bb3322315f65b9f0a3d588790514f54d81604051610c749190611b6f565b60405180910390a150565b62093a8081565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ce057600080fd5b60008054906101000a900461ffff1661ffff168161ffff1610610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90611b0f565b60405180910390fd5b806000806101000a81548161ffff021916908361ffff1602179055507fa042693d69db7f08dbec63b236468f8d79ec1790ce8dba24da17937556e43be881604051610d839190611b6f565b60405180910390a150565b60035481565b60008054906101000a900461ffff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e0057600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790611aaf565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637f51bb1f826040518263ffffffff1660e01b8152600401610ec99190611a79565b600060405180830381600087803b158015610ee357600080fd5b505af1158015610ef7573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff167f7dae230f18360d76a040c81f050aa14eb9d6dc7901b20fc5d855e2a20fe814d160405160405180910390a250565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f9b57600080fd5b600060015414610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790611b4f565b60405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062093a80426110309190611bdf565b600181905550600015158173ffffffffffffffffffffffffffffffffffffffff167f3055275a1e2d22e7d33f2d8914a022ccfeb1975b79bc37ed8ebff88676ce63f760405160405180910390a350565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060029054906101000a900461ffff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461111457600080fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90611b2f565b60405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600115158173ffffffffffffffffffffffffffffffffffffffff167f6e7261beedcd3ac9a76216bc0953c5ae9a71a1a515f7295a95aa50d5c7d52bf260405160405180910390a350565b60015481565b60046020528060005260406000206000915090505481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112c257600080fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e1ccd05783836040518363ffffffff1660e01b815260040161131d929190611b8a565b600060405180830381600087803b15801561133757600080fd5b505af115801561134b573d6000803e3d6000fd5b505050508015158261ffff167f85406e9099c49365f95fccd32f1d6d3f609cb236a2aa4989f887d223d4db175960405160405180910390a35050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461140757600080fd5b600060029054906101000a900461ffff1661ffff168161ffff1610611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890611b0f565b60405180910390fd5b80600060026101000a81548161ffff021916908361ffff1602179055507fb54bd384f699d9c565580f2da27c64c449a60fba332d0b7a059b011cddac1048816040516114ad9190611b6f565b60405180910390a150565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461151257600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990611aaf565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461162057600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a990611aaf565b60405180910390fd5b600060015414156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90611b2f565b60405180910390fd5b60015442101561173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490611acf565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f2fde38b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016117b89190611a79565b600060405180830381600087803b1580156117d257600080fd5b505af11580156117e6573d6000803e3d6000fd5b50505050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f4622407c10a55ac5d625167f633801250080746f7d4accea8975cd88d7f5ba6860405160405180910390a2565b60008135905061186081611dd4565b92915050565b60008135905061187581611deb565b92915050565b60008135905061188a81611e02565b92915050565b60008135905061189f81611e19565b92915050565b6000602082840312156118b757600080fd5b60006118c584828501611851565b91505092915050565b6000602082840312156118e057600080fd5b60006118ee8482850161187b565b91505092915050565b6000806040838503121561190a57600080fd5b60006119188582860161187b565b925050602061192985828601611866565b9150509250929050565b60006020828403121561194557600080fd5b600061195384828501611890565b91505092915050565b61196581611c35565b82525050565b61197481611c47565b82525050565b61198381611c8b565b82525050565b6000611996600d83611bce565b91506119a182611cde565b602082019050919050565b60006119b9600a83611bce565b91506119c482611d07565b602082019050919050565b60006119dc600983611bce565b91506119e782611d30565b602082019050919050565b60006119ff601e83611bce565b9150611a0a82611d59565b602082019050919050565b6000611a22600b83611bce565b9150611a2d82611d82565b602082019050919050565b6000611a45600f83611bce565b9150611a5082611dab565b602082019050919050565b611a6481611c53565b82525050565b611a7381611c81565b82525050565b6000602082019050611a8e600083018461195c565b92915050565b6000602082019050611aa9600083018461197a565b92915050565b60006020820190508181036000830152611ac881611989565b9050919050565b60006020820190508181036000830152611ae8816119ac565b9050919050565b60006020820190508181036000830152611b08816119cf565b9050919050565b60006020820190508181036000830152611b28816119f2565b9050919050565b60006020820190508181036000830152611b4881611a15565b9050919050565b60006020820190508181036000830152611b6881611a38565b9050919050565b6000602082019050611b846000830184611a5b565b92915050565b6000604082019050611b9f6000830185611a5b565b611bac602083018461196b565b9392505050565b6000602082019050611bc86000830184611a6a565b92915050565b600082825260208201905092915050565b6000611bea82611c81565b9150611bf583611c81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c2a57611c29611caf565b5b828201905092915050565b6000611c4082611c61565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000611c9682611c9d565b9050919050565b6000611ca882611c61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f217a65726f206164647265737300000000000000000000000000000000000000600082015250565b7f216e6f7420726561647900000000000000000000000000000000000000000000600082015250565b7f21746f6f20686967680000000000000000000000000000000000000000000000600082015250565b7f43616e6e6f742064656372656173652074696d656c6f636b2064656c61790000600082015250565b7f216e6f7420717565756564000000000000000000000000000000000000000000600082015250565b7f21616c7265616479207175657565640000000000000000000000000000000000600082015250565b611ddd81611c35565b8114611de857600080fd5b50565b611df481611c47565b8114611dff57600080fd5b50565b611e0b81611c53565b8114611e1657600080fd5b50565b611e2281611c81565b8114611e2d57600080fd5b5056fea2646970667358221220bac44cff32ced7ade59e56c07784d2e074f6bd25f1dc7b0f26832d997dd73b7b64736f6c63430008040033000000000000000000000000783c08b5f26e3daf8c4681f3bf49844e425b6393
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000783c08b5f26e3daf8c4681f3bf49844e425b6393
-----Decoded View---------------
Arg [0] : _ausd (address): 0x783c08b5f26e3daf8c4681f3bf49844e425b6393
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000783c08b5f26e3daf8c4681f3bf49844e425b6393
Deployed ByteCode Sourcemap
781:5644:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2108:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4346:263;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3133:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4027:181;;;:::i;:::-;;5279:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4978:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;886:60;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2423:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1027:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;808;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5598:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3667:304;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1725:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;843:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3386:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;950:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1062:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1749:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4744:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;994:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2781:271;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6277:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5924:348;;;:::i;:::-;;2108:186;1917:5;;;;;;;;;;;1903:19;;:10;:19;;;1895:28;;;;;;2194:5:::1;;2183:8;:16;2175:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;2247:8;2239:5;:16;;;;2267:22;2280:8;2267:22;;;;;;:::i;:::-;;;;;;;;2108:186:::0;:::o;4346:263::-;1917:5;;;;;;;;;;;1903:19;;:10;:19;;;1895:28;;;;;;4435:1:::1;4409:16;:22;4426:4;4409:22;;;;;;;;;;;;;;;;:27;;4401:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;4484:16;:22;4501:4;4484:22;;;;;;;;;;;;;;;;4465:15;:41;;4457:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;4551:1;4526:16;:22;4543:4;4526:22;;;;;;;;;;;;;;;:26;;;;4559:4;:12;;;4572:4;4559:18;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;4599:4;4589:15;;;;;;;;;;;;4346:263:::0;:::o;3133:208::-;1917:5;;;;;;;;;;;1903:19;;:10;:19;;;1895:28;;;;;;3227:1:::1;3201:16;:22;3218:4;3201:22;;;;;;;;;;;;;;;;:27;3193:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;3296:5;;3278:15;:23;;;;:::i;:::-;3253:16;:22;3270:4;3253:22;;;;;;;;;;;;;;;:48;;;;3330:5;3313:23;;3324:4;3313:23;;;;;;;;;;;;3133:208:::0;:::o;4027:181::-;1917:5;;;;;;;;;;;1903:19;;:10;:19;;;1895:28;;;;;;4122:1:::1;4093:25;;:30;;4085:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;4167:1;4144:12;;:25;;;;;;;;;;;;;;;;;;4202:1;4174:25;:29;;;;4027:181::o:0;5279:234::-;1917:5;;;;;;;;;;;1903:19;;:10;:19;;;1895:28;;;;;;5383:16:::1;;;;;;;;;;;5362:37;;:17;:37;;;;5354:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;5418:4;:20;;;5439:17;5418:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;5469;5490:17;5469:39;;;;;;:::i;:::-;;;;;;;;5279:234:::0;:::o;4978:210::-;1917:5;;;;;;;;;;;1903:19;;:10;:19;;;1895:28;;;;;;5076:10:::1;::::0;::::1;;;;;;;;5057:29;;:15;:29;;;;5049:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;5105:4;:18;;;5124:15;5105:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;5152:31;5167:15;5152:31;;;;;;:::i;:::-;;;;;;;;4978:210:::0;:::o;886:60::-;934:12;886:60;:::o;2423:223::-;1917:5;;;;;;;;;;;1903:19;;:10;:19;;;1895:28;;;;;;2521:10:::1;::::0;::::1;;;;;;;;2505:26;;:13;:26;;;2497:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;2584:13;2571:10;::::0;:26:::1;;;;;;;;;;;;;;;;;;2609:32;2627:13;2609:32;;;;;;:::i;:::-;;;;;;;;2423:223:::0;:::o;1027:31::-;;;;:::o;808:::-;;;;;;;;;;;;:::o;5598:194::-;1917:5;;;;;;;;;;;1903:19;;:10;:19;;;1895:28;;;;;;5694:1:::1;5673:23;;:9;:23;;;;5665:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;5719:4;:19;;;5739:9;5719:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;5777:9;5761:26;;;;;;;;;;;;5598:194:::0;:::o;3667:304::-;1917:5;;;;;;;;;;;1903:19;;:10;:19;;;1895:28;;;;;;3783:1:::1;3754:25;;:30;3746:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;3824:13;3809:12;;:28;;;;;;;;;;;;;;;;;;934:12;3870:15;:39;;;;:::i;:::-;3842:25;:67;;;;3960:5;3921:45;;3945:13;3921:45;;;;;;;;;;;;3667:304:::0;:::o;1725:20::-;;;;;;;;;;;;;:::o;843:37::-;;;;;;;;;;;;;:::o;3386:182::-;1917:5;;;;;;;;;;;1903:19;;:10;:19;;;1895:28;;;;;;3481:1:::1;3455:16;:22;3472:4;3455:22;;;;;;;;;;;;;;;;:27;;3447:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;3528:1;3503:16;:22;3520:4;3503:22;;;;;;;;;;;;;;;:26;;;;3558:4;3541:22;;3552:4;3541:22;;;;;;;;;;;;3386:182:::0;:::o;950:40::-;;;;:::o;1062:51::-;;;;;;;;;;;;;;;;;:::o;1749:27::-;;;:::o;4744:145::-;1917:5;;;;;;;;;;;1903:19;;:10;:19;;;1895:28;;;;;;4815:4:::1;:14;;;4830:5;4837:7;4815:30;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;4876:7;4857:27;;4869:5;4857:27;;;;;;;;;;;;4744:145:::0;;:::o;994:27::-;;;;;;;;;;;;;:::o;2781:271::-;1917:5;;;;;;;;;;;1903:19;;:10;:19;;;1895:28;;;;;;2897:16:::1;;;;;;;;;;;2875:38;;:19;:38;;;2867:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;2972:19;2953:16;;:38;;;;;;;;;;;;;;;;;;3003:44;3027:19;3003:44;;;;;;:::i;:::-;;;;;;;;2781:271:::0;:::o;6277:145::-;1917:5;;;;;;;;;;;1903:19;;:10;:19;;;1895:28;;;;;;6374:1:::1;6354:22;;:8;:22;;;;6346:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;6409:8;6401:5;;:16;;;;;;;;;;;;;;;;;;6277:145:::0;:::o;5924:348::-;1917:5;;;;;;;;;;;1903:19;;:10;:19;;;1895:28;;;;;;6019:1:::1;5995:26;;:12;;;;;;;;;;;:26;;;;5987:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;6081:1;6052:25;;:30;;6044:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;6130:25;;6111:15;:44;;6103:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6175:4;:22;;;6198:12;;;;;;;;;;;6175:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;6254:12;;;;;;;;;;;6223:44;;;;;;;;;;;;5924:348::o:0;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;195:5;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:137::-;336:5;374:6;361:20;352:29;;390:32;416:5;390:32;:::i;:::-;342:86;;;;:::o;434:139::-;480:5;518:6;505:20;496:29;;534:33;561:5;534:33;:::i;:::-;486:87;;;;:::o;579:262::-;638:6;687:2;675:9;666:7;662:23;658:32;655:2;;;703:1;700;693:12;655:2;746:1;771:53;816:7;807:6;796:9;792:22;771:53;:::i;:::-;761:63;;717:117;645:196;;;;:::o;847:260::-;905:6;954:2;942:9;933:7;929:23;925:32;922:2;;;970:1;967;960:12;922:2;1013:1;1038:52;1082:7;1073:6;1062:9;1058:22;1038:52;:::i;:::-;1028:62;;984:116;912:195;;;;:::o;1113:399::-;1177:6;1185;1234:2;1222:9;1213:7;1209:23;1205:32;1202:2;;;1250:1;1247;1240:12;1202:2;1293:1;1318:52;1362:7;1353:6;1342:9;1338:22;1318:52;:::i;:::-;1308:62;;1264:116;1419:2;1445:50;1487:7;1478:6;1467:9;1463:22;1445:50;:::i;:::-;1435:60;;1390:115;1192:320;;;;;:::o;1518:262::-;1577:6;1626:2;1614:9;1605:7;1601:23;1597:32;1594:2;;;1642:1;1639;1632:12;1594:2;1685:1;1710:53;1755:7;1746:6;1735:9;1731:22;1710:53;:::i;:::-;1700:63;;1656:117;1584:196;;;;:::o;1786:118::-;1873:24;1891:5;1873:24;:::i;:::-;1868:3;1861:37;1851:53;;:::o;1910:109::-;1991:21;2006:5;1991:21;:::i;:::-;1986:3;1979:34;1969:50;;:::o;2025:155::-;2124:49;2167:5;2124:49;:::i;:::-;2119:3;2112:62;2102:78;;:::o;2186:366::-;2328:3;2349:67;2413:2;2408:3;2349:67;:::i;:::-;2342:74;;2425:93;2514:3;2425:93;:::i;:::-;2543:2;2538:3;2534:12;2527:19;;2332:220;;;:::o;2558:366::-;2700:3;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2797:93;2886:3;2797:93;:::i;:::-;2915:2;2910:3;2906:12;2899:19;;2704:220;;;:::o;2930:365::-;3072:3;3093:66;3157:1;3152:3;3093:66;:::i;:::-;3086:73;;3168:93;3257:3;3168:93;:::i;:::-;3286:2;3281:3;3277:12;3270:19;;3076:219;;;:::o;3301:366::-;3443:3;3464:67;3528:2;3523:3;3464:67;:::i;:::-;3457:74;;3540:93;3629:3;3540:93;:::i;:::-;3658:2;3653:3;3649:12;3642:19;;3447:220;;;:::o;3673:366::-;3815:3;3836:67;3900:2;3895:3;3836:67;:::i;:::-;3829:74;;3912:93;4001:3;3912:93;:::i;:::-;4030:2;4025:3;4021:12;4014:19;;3819:220;;;:::o;4045:366::-;4187:3;4208:67;4272:2;4267:3;4208:67;:::i;:::-;4201:74;;4284:93;4373:3;4284:93;:::i;:::-;4402:2;4397:3;4393:12;4386:19;;4191:220;;;:::o;4417:115::-;4502:23;4519:5;4502:23;:::i;:::-;4497:3;4490:36;4480:52;;:::o;4538:118::-;4625:24;4643:5;4625:24;:::i;:::-;4620:3;4613:37;4603:53;;:::o;4662:222::-;4755:4;4793:2;4782:9;4778:18;4770:26;;4806:71;4874:1;4863:9;4859:17;4850:6;4806:71;:::i;:::-;4760:124;;;;:::o;4890:246::-;4995:4;5033:2;5022:9;5018:18;5010:26;;5046:83;5126:1;5115:9;5111:17;5102:6;5046:83;:::i;:::-;5000:136;;;;:::o;5142:419::-;5308:4;5346:2;5335:9;5331:18;5323:26;;5395:9;5389:4;5385:20;5381:1;5370:9;5366:17;5359:47;5423:131;5549:4;5423:131;:::i;:::-;5415:139;;5313:248;;;:::o;5567:419::-;5733:4;5771:2;5760:9;5756:18;5748:26;;5820:9;5814:4;5810:20;5806:1;5795:9;5791:17;5784:47;5848:131;5974:4;5848:131;:::i;:::-;5840:139;;5738:248;;;:::o;5992:419::-;6158:4;6196:2;6185:9;6181:18;6173:26;;6245:9;6239:4;6235:20;6231:1;6220:9;6216:17;6209:47;6273:131;6399:4;6273:131;:::i;:::-;6265:139;;6163:248;;;:::o;6417:419::-;6583:4;6621:2;6610:9;6606:18;6598:26;;6670:9;6664:4;6660:20;6656:1;6645:9;6641:17;6634:47;6698:131;6824:4;6698:131;:::i;:::-;6690:139;;6588:248;;;:::o;6842:419::-;7008:4;7046:2;7035:9;7031:18;7023:26;;7095:9;7089:4;7085:20;7081:1;7070:9;7066:17;7059:47;7123:131;7249:4;7123:131;:::i;:::-;7115:139;;7013:248;;;:::o;7267:419::-;7433:4;7471:2;7460:9;7456:18;7448:26;;7520:9;7514:4;7510:20;7506:1;7495:9;7491:17;7484:47;7548:131;7674:4;7548:131;:::i;:::-;7540:139;;7438:248;;;:::o;7692:218::-;7783:4;7821:2;7810:9;7806:18;7798:26;;7834:69;7900:1;7889:9;7885:17;7876:6;7834:69;:::i;:::-;7788:122;;;;:::o;7916:316::-;8029:4;8067:2;8056:9;8052:18;8044:26;;8080:69;8146:1;8135:9;8131:17;8122:6;8080:69;:::i;:::-;8159:66;8221:2;8210:9;8206:18;8197:6;8159:66;:::i;:::-;8034:198;;;;;:::o;8238:222::-;8331:4;8369:2;8358:9;8354:18;8346:26;;8382:71;8450:1;8439:9;8435:17;8426:6;8382:71;:::i;:::-;8336:124;;;;:::o;8466:169::-;8550:11;8584:6;8579:3;8572:19;8624:4;8619:3;8615:14;8600:29;;8562:73;;;;:::o;8641:305::-;8681:3;8700:20;8718:1;8700:20;:::i;:::-;8695:25;;8734:20;8752:1;8734:20;:::i;:::-;8729:25;;8888:1;8820:66;8816:74;8813:1;8810:81;8807:2;;;8894:18;;:::i;:::-;8807:2;8938:1;8935;8931:9;8924:16;;8685:261;;;;:::o;8952:96::-;8989:7;9018:24;9036:5;9018:24;:::i;:::-;9007:35;;8997:51;;;:::o;9054:90::-;9088:7;9131:5;9124:13;9117:21;9106:32;;9096:48;;;:::o;9150:89::-;9186:7;9226:6;9219:5;9215:18;9204:29;;9194:45;;;:::o;9245:126::-;9282:7;9322:42;9315:5;9311:54;9300:65;;9290:81;;;:::o;9377:77::-;9414:7;9443:5;9432:16;;9422:32;;;:::o;9460:150::-;9522:9;9555:49;9598:5;9555:49;:::i;:::-;9542:62;;9532:78;;;:::o;9616:125::-;9678:9;9711:24;9729:5;9711:24;:::i;:::-;9698:37;;9688:53;;;:::o;9747:180::-;9795:77;9792:1;9785:88;9892:4;9889:1;9882:15;9916:4;9913:1;9906:15;9933:163;10073:15;10069:1;10061:6;10057:14;10050:39;10039:57;:::o;10102:160::-;10242:12;10238:1;10230:6;10226:14;10219:36;10208:54;:::o;10268:159::-;10408:11;10404:1;10396:6;10392:14;10385:35;10374:53;:::o;10433:180::-;10573:32;10569:1;10561:6;10557:14;10550:56;10539:74;:::o;10619:161::-;10759:13;10755:1;10747:6;10743:14;10736:37;10725:55;:::o;10786:165::-;10926:17;10922:1;10914:6;10910:14;10903:41;10892:59;:::o;10957:122::-;11030:24;11048:5;11030:24;:::i;:::-;11023:5;11020:35;11010:2;;11069:1;11066;11059:12;11010:2;11000:79;:::o;11085:116::-;11155:21;11170:5;11155:21;:::i;:::-;11148:5;11145:32;11135:2;;11191:1;11188;11181:12;11135:2;11125:76;:::o;11207:120::-;11279:23;11296:5;11279:23;:::i;:::-;11272:5;11269:34;11259:2;;11317:1;11314;11307:12;11259:2;11249:78;:::o;11333:122::-;11406:24;11424:5;11406:24;:::i;:::-;11399:5;11396:35;11386:2;;11445:1;11442;11435:12;11386:2;11376:79;:::o
Swarm Source
ipfs://bac44cff32ced7ade59e56c07784d2e074f6bd25f1dc7b0f26832d997dd73b7b
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.