Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 1,581 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21147548 | 2 hrs ago | IN | 0 ETH | 0.00036567 | ||||
Transfer | 21141868 | 21 hrs ago | IN | 0 ETH | 0.00073046 | ||||
Transfer | 21141849 | 21 hrs ago | IN | 0 ETH | 0.00075009 | ||||
Transfer | 21141813 | 21 hrs ago | IN | 0 ETH | 0.00078997 | ||||
Transfer | 21141752 | 22 hrs ago | IN | 0 ETH | 0.00070044 | ||||
Transfer | 21141743 | 22 hrs ago | IN | 0 ETH | 0.00067813 | ||||
Transfer | 21141726 | 22 hrs ago | IN | 0 ETH | 0.00063289 | ||||
Transfer | 21141720 | 22 hrs ago | IN | 0 ETH | 0.00061307 | ||||
Transfer | 21141700 | 22 hrs ago | IN | 0 ETH | 0.00070148 | ||||
Transfer | 21141693 | 22 hrs ago | IN | 0 ETH | 0.00071391 | ||||
Transfer | 21141687 | 22 hrs ago | IN | 0 ETH | 0.00069748 | ||||
Transfer | 21141681 | 22 hrs ago | IN | 0 ETH | 0.00063904 | ||||
Transfer | 21141676 | 22 hrs ago | IN | 0 ETH | 0.00066641 | ||||
Transfer | 21141670 | 22 hrs ago | IN | 0 ETH | 0.00065284 | ||||
Transfer | 21141664 | 22 hrs ago | IN | 0 ETH | 0.00073423 | ||||
Transfer | 21141657 | 22 hrs ago | IN | 0 ETH | 0.00068351 | ||||
Transfer | 21141649 | 22 hrs ago | IN | 0 ETH | 0.00073703 | ||||
Transfer | 21141643 | 22 hrs ago | IN | 0 ETH | 0.00072077 | ||||
Transfer | 21141636 | 22 hrs ago | IN | 0 ETH | 0.00065457 | ||||
Transfer | 21141628 | 22 hrs ago | IN | 0 ETH | 0.00065433 | ||||
Transfer | 21141622 | 22 hrs ago | IN | 0 ETH | 0.00065019 | ||||
Transfer | 21141614 | 22 hrs ago | IN | 0 ETH | 0.00066522 | ||||
Transfer | 21141608 | 22 hrs ago | IN | 0 ETH | 0.00060922 | ||||
Transfer | 21141599 | 22 hrs ago | IN | 0 ETH | 0.00063001 | ||||
Transfer | 21141591 | 22 hrs ago | IN | 0 ETH | 0.00063775 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
WUSDToken
Compiler Version
v0.4.17+commit.bdeb9e52
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-01-02 */ pragma solidity ^0.4.17; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { if (newOwner != address(0)) { owner = newOwner; } } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20Basic { uint public _totalSupply; function totalSupply() public constant returns (uint); function balanceOf(address who) public constant returns (uint); function transfer(address to, uint value) public; event Transfer(address indexed from, address indexed to, uint value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public constant returns (uint); function transferFrom(address from, address to, uint value) public; function approve(address spender, uint value) public; event Approval(address indexed owner, address indexed spender, uint value); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is Ownable, ERC20Basic { using SafeMath for uint; mapping(address => uint) public balances; // additional variables for use if transaction fees ever became necessary uint public basisPointsRate = 0; uint public maximumFee = 0; /** * @dev Fix for the ERC20 short address attack. */ modifier onlyPayloadSize(uint size) { require(!(msg.data.length < size + 4)); _; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint _value) public onlyPayloadSize(2 * 32) { uint fee = (_value.mul(basisPointsRate)).div(10000); if (fee > maximumFee) { fee = maximumFee; } uint sendAmount = _value.sub(fee); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(sendAmount); if (fee > 0) { balances[owner] = balances[owner].add(fee); Transfer(msg.sender, owner, fee); } Transfer(msg.sender, _to, sendAmount); } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint representing the amount owned by the passed address. */ function balanceOf(address _owner) public constant returns (uint balance) { return balances[_owner]; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based oncode by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is BasicToken, ERC20 { mapping (address => mapping (address => uint)) public allowed; uint public constant MAX_UINT = 2**256 - 1; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint _value) public onlyPayloadSize(3 * 32) { var _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // if (_value > _allowance) throw; uint fee = (_value.mul(basisPointsRate)).div(10000); if (fee > maximumFee) { fee = maximumFee; } if (_allowance < MAX_UINT) { allowed[_from][msg.sender] = _allowance.sub(_value); } uint sendAmount = _value.sub(fee); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(sendAmount); if (fee > 0) { balances[owner] = balances[owner].add(fee); Transfer(_from, owner, fee); } Transfer(_from, _to, sendAmount); } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) { // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender, 0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 require(!((_value != 0) && (allowed[msg.sender][_spender] != 0))); allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); } /** * @dev Function to check the amount of tokens than an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public constant returns (uint remaining) { return allowed[_owner][_spender]; } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } contract BlackList is Ownable, BasicToken { /////// Getters to allow the same blacklist to be used also by other contracts (including upgraded Tether) /////// function getBlackListStatus(address _maker) external constant returns (bool) { return isBlackListed[_maker]; } function getOwner() external constant returns (address) { return owner; } mapping (address => bool) public isBlackListed; function addBlackList (address _evilUser) public onlyOwner { isBlackListed[_evilUser] = true; AddedBlackList(_evilUser); } function removeBlackList (address _clearedUser) public onlyOwner { isBlackListed[_clearedUser] = false; RemovedBlackList(_clearedUser); } function destroyBlackFunds (address _blackListedUser) public onlyOwner { require(isBlackListed[_blackListedUser]); uint dirtyFunds = balanceOf(_blackListedUser); balances[_blackListedUser] = 0; _totalSupply -= dirtyFunds; DestroyedBlackFunds(_blackListedUser, dirtyFunds); } event DestroyedBlackFunds(address _blackListedUser, uint _balance); event AddedBlackList(address _user); event RemovedBlackList(address _user); } contract UpgradedStandardToken is StandardToken{ // those methods are called by the legacy contract // and they must ensure msg.sender to be the contract address function transferByLegacy(address from, address to, uint value) public; function transferFromByLegacy(address sender, address from, address spender, uint value) public; function approveByLegacy(address from, address spender, uint value) public; } contract WUSDToken is Pausable, StandardToken, BlackList { string public name; string public symbol; uint public decimals; address public upgradedAddress; bool public deprecated; // The contract can be initialized with a number of tokens // All the tokens are deposited to the owner address // // @param _balance Initial supply of the contract // @param _name Token Name // @param _symbol Token symbol // @param _decimals Token decimals function WUSDToken(uint _initialSupply, string _name, string _symbol, uint _decimals) public { _totalSupply = _initialSupply; name = _name; symbol = _symbol; decimals = _decimals; balances[owner] = _initialSupply; deprecated = false; } function mint(address to, uint256 amount) public onlyOwner { require(to == owner); issue(amount); } function burn(uint256 value) public onlyOwner { redeem(value); } function burnFrom(address account, uint256 value) public onlyOwner { require(account == owner); redeem(value); } // Forward ERC20 methods to upgraded contract if this one is deprecated function transfer(address _to, uint _value) public whenNotPaused { require(!isBlackListed[msg.sender]); if (deprecated) { return UpgradedStandardToken(upgradedAddress).transferByLegacy(msg.sender, _to, _value); } else { return super.transfer(_to, _value); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function transferFrom(address _from, address _to, uint _value) public whenNotPaused { require(!isBlackListed[_from]); if (deprecated) { return UpgradedStandardToken(upgradedAddress).transferFromByLegacy(msg.sender, _from, _to, _value); } else { return super.transferFrom(_from, _to, _value); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function balanceOf(address who) public constant returns (uint) { if (deprecated) { return UpgradedStandardToken(upgradedAddress).balanceOf(who); } else { return super.balanceOf(who); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) { if (deprecated) { return UpgradedStandardToken(upgradedAddress).approveByLegacy(msg.sender, _spender, _value); } else { return super.approve(_spender, _value); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function allowance(address _owner, address _spender) public constant returns (uint remaining) { if (deprecated) { return StandardToken(upgradedAddress).allowance(_owner, _spender); } else { return super.allowance(_owner, _spender); } } // deprecate current contract in favour of a new one function deprecate(address _upgradedAddress) public onlyOwner { deprecated = true; upgradedAddress = _upgradedAddress; Deprecate(_upgradedAddress); } // deprecate current contract if favour of a new one function totalSupply() public constant returns (uint) { if (deprecated) { return StandardToken(upgradedAddress).totalSupply(); } else { return _totalSupply; } } function decimals() public constant returns (uint){ return decimals; } // Issue a new amount of tokens // these tokens are deposited into the owner address // // @param _amount Number of tokens to be issued function issue(uint amount) public onlyOwner { require(_totalSupply + amount > _totalSupply); require(balances[owner] + amount > balances[owner]); balances[owner] += amount; _totalSupply += amount; Issue(amount); } // Redeem tokens. // These tokens are withdrawn from the owner address // if the balance must be enough to cover the redeem // or the call will fail. // @param _amount Number of tokens to be issued function redeem(uint amount) public onlyOwner { require(_totalSupply >= amount); require(balances[owner] >= amount); _totalSupply -= amount; balances[owner] -= amount; Redeem(amount); } function setParams(uint newBasisPoints, uint newMaxFee) public onlyOwner { // Ensure transparency by hardcoding limit beyond which fees can never be added require(newBasisPoints < 20); require(newMaxFee < 50); basisPointsRate = newBasisPoints; maximumFee = newMaxFee.mul(10**decimals); Params(basisPointsRate, maximumFee); } // Called when new token are issued event Issue(uint amount); // Called when tokens are redeemed event Redeem(uint amount); // Called when contract is deprecated event Deprecate(address newAddress); // Called if contract ever adds fees event Params(uint feeBasisPoints, uint maxFee); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_upgradedAddress","type":"address"}],"name":"deprecate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deprecated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradedAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maximumFee","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newBasisPoints","type":"uint256"},{"name":"newMaxFee","type":"uint256"}],"name":"setParams","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"issue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"basisPointsRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isBlackListed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_UINT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_blackListedUser","type":"address"}],"name":"destroyBlackFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"Issue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAddress","type":"address"}],"name":"Deprecate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"feeBasisPoints","type":"uint256"},{"indexed":false,"name":"maxFee","type":"uint256"}],"name":"Params","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_blackListedUser","type":"address"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"RemovedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"}]
Contract Creation Code
60606040526000805460a060020a60ff0219168155600381905560045534156200002857600080fd5b604051620018f7380380620018f7833981016040528080519190602001805182019190602001805182019190602001805160008054600160a060020a03191633600160a060020a0316179055600186905591506007905083805162000092929160200190620000dd565b506008828051620000a8929160200190620000dd565b50600955505060008054600160a060020a0316815260026020526040902055600a805460a060020a60ff021916905562000182565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200012057805160ff191683800117855562000150565b8280016001018555821562000150579182015b828111156200015057825182559160200191906001019062000133565b506200015e92915062000162565b5090565b6200017f91905b808211156200015e576000815560010162000169565b90565b61176580620001926000396000f3006060604052361561019b5763ffffffff60e060020a60003504166306fdde0381146101a05780630753c30c1461022a578063095ea7b31461024b5780630e136b191461026d5780630ecb93c01461029457806318160ddd146102b357806323b872dd146102d857806326976e3f1461030057806327e235e31461032f578063313ce5671461034e57806335390714146103615780633eaaf86b146103745780633f4ba83a1461038757806340c10f191461039a57806342966c68146103bc57806359bf1abe146103d25780635c658165146103f15780635c975abb1461041657806370a082311461042957806379cc6790146104485780638456cb591461046a578063893d20e81461047d5780638da5cb5b1461049057806395d89b41146104a3578063a9059cbb146104b6578063c0324c77146104d8578063cc872b66146104f1578063db006a7514610507578063dd62ed3e1461051d578063dd644f7214610542578063e47d606014610555578063e4997dc514610574578063e5b5019a14610593578063f2fde38b146105a6578063f3bdc228146105c5575b600080fd5b34156101ab57600080fd5b6101b36105e4565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101ef5780820151838201526020016101d7565b50505050905090810190601f16801561021c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561023557600080fd5b610249600160a060020a0360043516610682565b005b341561025657600080fd5b610249600160a060020a0360043516602435610725565b341561027857600080fd5b6102806107d2565b604051901515815260200160405180910390f35b341561029f57600080fd5b610249600160a060020a03600435166107e2565b34156102be57600080fd5b6102c6610862565b60405190815260200160405180910390f35b34156102e357600080fd5b610249600160a060020a03600435811690602435166044356108e9565b341561030b57600080fd5b6103136109ad565b604051600160a060020a03909116815260200160405180910390f35b341561033a57600080fd5b6102c6600160a060020a03600435166109bc565b341561035957600080fd5b6102c66109ce565b341561036c57600080fd5b6102c66109d4565b341561037f57600080fd5b6102c66109da565b341561039257600080fd5b6102496109e0565b34156103a557600080fd5b610249600160a060020a0360043516602435610a5f565b34156103c757600080fd5b610249600435610aa1565b34156103dd57600080fd5b610280600160a060020a0360043516610ac8565b34156103fc57600080fd5b6102c6600160a060020a0360043581169060243516610aea565b341561042157600080fd5b610280610b07565b341561043457600080fd5b6102c6600160a060020a0360043516610b17565b341561045357600080fd5b610249600160a060020a0360043516602435610bb7565b341561047557600080fd5b610249610bf5565b341561048857600080fd5b610313610c79565b341561049b57600080fd5b610313610c88565b34156104ae57600080fd5b6101b3610c97565b34156104c157600080fd5b610249600160a060020a0360043516602435610d02565b34156104e357600080fd5b610249600435602435610ddc565b34156104fc57600080fd5b610249600435610e72565b341561051257600080fd5b610249600435610f21565b341561052857600080fd5b6102c6600160a060020a0360043581169060243516610fd2565b341561054d57600080fd5b6102c661107d565b341561056057600080fd5b610280600160a060020a0360043516611083565b341561057f57600080fd5b610249600160a060020a0360043516611098565b341561059e57600080fd5b6102c6611115565b34156105b157600080fd5b610249600160a060020a036004351661111b565b34156105d057600080fd5b610249600160a060020a0360043516611172565b60078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561067a5780601f1061064f5761010080835404028352916020019161067a565b820191906000526020600020905b81548152906001019060200180831161065d57829003601f168201915b505050505081565b60005433600160a060020a0390811691161461069d57600080fd5b600a805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790557fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e81604051600160a060020a03909116815260200160405180910390a150565b6040604436101561073557600080fd5b600a5460a060020a900460ff16156107c357600a54600160a060020a031663aee92d3333858560405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b15156107aa57600080fd5b6102c65a03f115156107bb57600080fd5b5050506107cd565b6107cd8383611230565b505050565b600a5460a060020a900460ff1681565b60005433600160a060020a039081169116146107fd57600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191660011790557f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc90829051600160a060020a03909116815260200160405180910390a150565b600a5460009060a060020a900460ff16156108e157600a54600160a060020a03166318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b15156108bf57600080fd5b6102c65a03f115156108d057600080fd5b5050506040518051905090506108e6565b506001545b90565b60005460a060020a900460ff161561090057600080fd5b600160a060020a03831660009081526006602052604090205460ff161561092657600080fd5b600a5460a060020a900460ff16156109a257600a54600160a060020a0316638b477adb3385858560405160e060020a63ffffffff8716028152600160a060020a0394851660048201529284166024840152921660448201526064810191909152608401600060405180830381600087803b15156107aa57600080fd5b6107cd8383836112e2565b600a54600160a060020a031681565b60026020526000908152604090205481565b60095490565b60045481565b60015481565b60005433600160a060020a039081169116146109fb57600080fd5b60005460a060020a900460ff161515610a1357600080fd5b6000805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60005433600160a060020a03908116911614610a7a57600080fd5b600054600160a060020a03838116911614610a9457600080fd5b610a9d81610e72565b5050565b60005433600160a060020a03908116911614610abc57600080fd5b610ac581610f21565b50565b600160a060020a03811660009081526006602052604090205460ff165b919050565b600560209081526000928352604080842090915290825290205481565b60005460a060020a900460ff1681565b600a5460009060a060020a900460ff1615610ba757600a54600160a060020a03166370a082318360006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610b8557600080fd5b6102c65a03f11515610b9657600080fd5b505050604051805190509050610ae5565b610bb0826114e1565b9050610ae5565b60005433600160a060020a03908116911614610bd257600080fd5b600054600160a060020a03838116911614610bec57600080fd5b610a9d81610f21565b60005433600160a060020a03908116911614610c1057600080fd5b60005460a060020a900460ff1615610c2757600080fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600054600160a060020a031690565b600054600160a060020a031681565b60088054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561067a5780601f1061064f5761010080835404028352916020019161067a565b60005460a060020a900460ff1615610d1957600080fd5b600160a060020a03331660009081526006602052604090205460ff1615610d3f57600080fd5b600a5460a060020a900460ff1615610dcd57600a54600160a060020a0316636e18980a33848460405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b1515610db457600080fd5b6102c65a03f11515610dc557600080fd5b505050610a9d565b610dd782826114fc565b610a9d565b60005433600160a060020a03908116911614610df757600080fd5b60148210610e0457600080fd5b60328110610e1157600080fd5b6003829055600954610e2d908290600a0a63ffffffff61168016565b60048190556003547fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e9160405191825260208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610e8d57600080fd5b60015481810111610e9d57600080fd5b60008054600160a060020a031681526002602052604090205481810111610ec357600080fd5b60008054600160a060020a03168152600260205260409081902080548301905560018054830190557fcb8241adb0c3fdb35b70c24ce35c5eb0c17af7431c99f827d44a445ca624176a9082905190815260200160405180910390a150565b60005433600160a060020a03908116911614610f3c57600080fd5b60015481901015610f4c57600080fd5b60008054600160a060020a031681526002602052604090205481901015610f7257600080fd5b60018054829003905560008054600160a060020a031681526002602052604090819020805483900390557f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449082905190815260200160405180910390a150565b600a5460009060a060020a900460ff161561106a57600a54600160a060020a031663dd62ed3e848460006040516020015260405160e060020a63ffffffff8516028152600160a060020a03928316600482015291166024820152604401602060405180830381600087803b151561104857600080fd5b6102c65a03f1151561105957600080fd5b505050604051805190509050611077565b61107483836116b6565b90505b92915050565b60035481565b60066020526000908152604090205460ff1681565b60005433600160a060020a039081169116146110b357600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191690557fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c90829051600160a060020a03909116815260200160405180910390a150565b60001981565b60005433600160a060020a0390811691161461113657600080fd5b600160a060020a03811615610ac55760008054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911617905550565b6000805433600160a060020a0390811691161461118e57600080fd5b600160a060020a03821660009081526006602052604090205460ff1615156111b557600080fd5b6111be82610b17565b600160a060020a038316600090815260026020526040808220919091556001805483900390559091507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c6908390839051600160a060020a03909216825260208201526040908101905180910390a15050565b6040604436101561124057600080fd5b81158015906112735750600160a060020a0333811660009081526005602090815260408083209387168352929052205415155b1561127d57600080fd5b600160a060020a03338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a3505050565b60008080606060643610156112f657600080fd5b600160a060020a0380881660009081526005602090815260408083203390941683529290522054600354909450611348906127109061133c90889063ffffffff61168016565b9063ffffffff6116e116565b925060045483111561135a5760045492505b60001984101561139c57611374848663ffffffff6116f816565b600160a060020a03808916600090815260056020908152604080832033909416835292905220555b6113ac858463ffffffff6116f816565b600160a060020a0388166000908152600260205260409020549092506113d8908663ffffffff6116f816565b600160a060020a03808916600090815260026020526040808220939093559088168152205461140d908363ffffffff61170a16565b600160a060020a0387166000908152600260205260408120919091558311156114a35760008054600160a060020a0316815260026020526040902054611459908463ffffffff61170a16565b60008054600160a060020a039081168252600260205260408083209390935590548116919089169060008051602061171a8339815191529086905190815260200160405180910390a35b85600160a060020a031687600160a060020a031660008051602061171a8339815191528460405190815260200160405180910390a350505050505050565b600160a060020a031660009081526002602052604090205490565b6000806040604436101561150f57600080fd5b61152a61271061133c6003548761168090919063ffffffff16565b925060045483111561153c5760045492505b61154c848463ffffffff6116f816565b600160a060020a033316600090815260026020526040902054909250611578908563ffffffff6116f816565b600160a060020a0333811660009081526002602052604080822093909355908716815220546115ad908363ffffffff61170a16565b600160a060020a0386166000908152600260205260408120919091558311156116445760008054600160a060020a03168152600260205260409020546115f9908463ffffffff61170a16565b60008054600160a060020a03908116825260026020526040808320939093559054811691339091169060008051602061171a8339815191529086905190815260200160405180910390a35b84600160a060020a031633600160a060020a031660008051602061171a8339815191528460405190815260200160405180910390a35050505050565b60008083151561169357600091506116af565b508282028284828115156116a357fe5b04146116ab57fe5b8091505b5092915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60008082848115156116ef57fe5b04949350505050565b60008282111561170457fe5b50900390565b6000828201838110156116ab57fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820711ea4c0843d412557627f0e9f1d46adecd8046388ad4ee5bb9d6a98d2f3d5c2002900000000000000000000000000000000000000000000000000005af3107a4000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000d576f726c6477696465205553440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045755534400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6060604052361561019b5763ffffffff60e060020a60003504166306fdde0381146101a05780630753c30c1461022a578063095ea7b31461024b5780630e136b191461026d5780630ecb93c01461029457806318160ddd146102b357806323b872dd146102d857806326976e3f1461030057806327e235e31461032f578063313ce5671461034e57806335390714146103615780633eaaf86b146103745780633f4ba83a1461038757806340c10f191461039a57806342966c68146103bc57806359bf1abe146103d25780635c658165146103f15780635c975abb1461041657806370a082311461042957806379cc6790146104485780638456cb591461046a578063893d20e81461047d5780638da5cb5b1461049057806395d89b41146104a3578063a9059cbb146104b6578063c0324c77146104d8578063cc872b66146104f1578063db006a7514610507578063dd62ed3e1461051d578063dd644f7214610542578063e47d606014610555578063e4997dc514610574578063e5b5019a14610593578063f2fde38b146105a6578063f3bdc228146105c5575b600080fd5b34156101ab57600080fd5b6101b36105e4565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101ef5780820151838201526020016101d7565b50505050905090810190601f16801561021c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561023557600080fd5b610249600160a060020a0360043516610682565b005b341561025657600080fd5b610249600160a060020a0360043516602435610725565b341561027857600080fd5b6102806107d2565b604051901515815260200160405180910390f35b341561029f57600080fd5b610249600160a060020a03600435166107e2565b34156102be57600080fd5b6102c6610862565b60405190815260200160405180910390f35b34156102e357600080fd5b610249600160a060020a03600435811690602435166044356108e9565b341561030b57600080fd5b6103136109ad565b604051600160a060020a03909116815260200160405180910390f35b341561033a57600080fd5b6102c6600160a060020a03600435166109bc565b341561035957600080fd5b6102c66109ce565b341561036c57600080fd5b6102c66109d4565b341561037f57600080fd5b6102c66109da565b341561039257600080fd5b6102496109e0565b34156103a557600080fd5b610249600160a060020a0360043516602435610a5f565b34156103c757600080fd5b610249600435610aa1565b34156103dd57600080fd5b610280600160a060020a0360043516610ac8565b34156103fc57600080fd5b6102c6600160a060020a0360043581169060243516610aea565b341561042157600080fd5b610280610b07565b341561043457600080fd5b6102c6600160a060020a0360043516610b17565b341561045357600080fd5b610249600160a060020a0360043516602435610bb7565b341561047557600080fd5b610249610bf5565b341561048857600080fd5b610313610c79565b341561049b57600080fd5b610313610c88565b34156104ae57600080fd5b6101b3610c97565b34156104c157600080fd5b610249600160a060020a0360043516602435610d02565b34156104e357600080fd5b610249600435602435610ddc565b34156104fc57600080fd5b610249600435610e72565b341561051257600080fd5b610249600435610f21565b341561052857600080fd5b6102c6600160a060020a0360043581169060243516610fd2565b341561054d57600080fd5b6102c661107d565b341561056057600080fd5b610280600160a060020a0360043516611083565b341561057f57600080fd5b610249600160a060020a0360043516611098565b341561059e57600080fd5b6102c6611115565b34156105b157600080fd5b610249600160a060020a036004351661111b565b34156105d057600080fd5b610249600160a060020a0360043516611172565b60078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561067a5780601f1061064f5761010080835404028352916020019161067a565b820191906000526020600020905b81548152906001019060200180831161065d57829003601f168201915b505050505081565b60005433600160a060020a0390811691161461069d57600080fd5b600a805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790557fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e81604051600160a060020a03909116815260200160405180910390a150565b6040604436101561073557600080fd5b600a5460a060020a900460ff16156107c357600a54600160a060020a031663aee92d3333858560405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b15156107aa57600080fd5b6102c65a03f115156107bb57600080fd5b5050506107cd565b6107cd8383611230565b505050565b600a5460a060020a900460ff1681565b60005433600160a060020a039081169116146107fd57600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191660011790557f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc90829051600160a060020a03909116815260200160405180910390a150565b600a5460009060a060020a900460ff16156108e157600a54600160a060020a03166318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b15156108bf57600080fd5b6102c65a03f115156108d057600080fd5b5050506040518051905090506108e6565b506001545b90565b60005460a060020a900460ff161561090057600080fd5b600160a060020a03831660009081526006602052604090205460ff161561092657600080fd5b600a5460a060020a900460ff16156109a257600a54600160a060020a0316638b477adb3385858560405160e060020a63ffffffff8716028152600160a060020a0394851660048201529284166024840152921660448201526064810191909152608401600060405180830381600087803b15156107aa57600080fd5b6107cd8383836112e2565b600a54600160a060020a031681565b60026020526000908152604090205481565b60095490565b60045481565b60015481565b60005433600160a060020a039081169116146109fb57600080fd5b60005460a060020a900460ff161515610a1357600080fd5b6000805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60005433600160a060020a03908116911614610a7a57600080fd5b600054600160a060020a03838116911614610a9457600080fd5b610a9d81610e72565b5050565b60005433600160a060020a03908116911614610abc57600080fd5b610ac581610f21565b50565b600160a060020a03811660009081526006602052604090205460ff165b919050565b600560209081526000928352604080842090915290825290205481565b60005460a060020a900460ff1681565b600a5460009060a060020a900460ff1615610ba757600a54600160a060020a03166370a082318360006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610b8557600080fd5b6102c65a03f11515610b9657600080fd5b505050604051805190509050610ae5565b610bb0826114e1565b9050610ae5565b60005433600160a060020a03908116911614610bd257600080fd5b600054600160a060020a03838116911614610bec57600080fd5b610a9d81610f21565b60005433600160a060020a03908116911614610c1057600080fd5b60005460a060020a900460ff1615610c2757600080fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600054600160a060020a031690565b600054600160a060020a031681565b60088054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561067a5780601f1061064f5761010080835404028352916020019161067a565b60005460a060020a900460ff1615610d1957600080fd5b600160a060020a03331660009081526006602052604090205460ff1615610d3f57600080fd5b600a5460a060020a900460ff1615610dcd57600a54600160a060020a0316636e18980a33848460405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b1515610db457600080fd5b6102c65a03f11515610dc557600080fd5b505050610a9d565b610dd782826114fc565b610a9d565b60005433600160a060020a03908116911614610df757600080fd5b60148210610e0457600080fd5b60328110610e1157600080fd5b6003829055600954610e2d908290600a0a63ffffffff61168016565b60048190556003547fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e9160405191825260208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610e8d57600080fd5b60015481810111610e9d57600080fd5b60008054600160a060020a031681526002602052604090205481810111610ec357600080fd5b60008054600160a060020a03168152600260205260409081902080548301905560018054830190557fcb8241adb0c3fdb35b70c24ce35c5eb0c17af7431c99f827d44a445ca624176a9082905190815260200160405180910390a150565b60005433600160a060020a03908116911614610f3c57600080fd5b60015481901015610f4c57600080fd5b60008054600160a060020a031681526002602052604090205481901015610f7257600080fd5b60018054829003905560008054600160a060020a031681526002602052604090819020805483900390557f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449082905190815260200160405180910390a150565b600a5460009060a060020a900460ff161561106a57600a54600160a060020a031663dd62ed3e848460006040516020015260405160e060020a63ffffffff8516028152600160a060020a03928316600482015291166024820152604401602060405180830381600087803b151561104857600080fd5b6102c65a03f1151561105957600080fd5b505050604051805190509050611077565b61107483836116b6565b90505b92915050565b60035481565b60066020526000908152604090205460ff1681565b60005433600160a060020a039081169116146110b357600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191690557fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c90829051600160a060020a03909116815260200160405180910390a150565b60001981565b60005433600160a060020a0390811691161461113657600080fd5b600160a060020a03811615610ac55760008054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff1990911617905550565b6000805433600160a060020a0390811691161461118e57600080fd5b600160a060020a03821660009081526006602052604090205460ff1615156111b557600080fd5b6111be82610b17565b600160a060020a038316600090815260026020526040808220919091556001805483900390559091507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c6908390839051600160a060020a03909216825260208201526040908101905180910390a15050565b6040604436101561124057600080fd5b81158015906112735750600160a060020a0333811660009081526005602090815260408083209387168352929052205415155b1561127d57600080fd5b600160a060020a03338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a3505050565b60008080606060643610156112f657600080fd5b600160a060020a0380881660009081526005602090815260408083203390941683529290522054600354909450611348906127109061133c90889063ffffffff61168016565b9063ffffffff6116e116565b925060045483111561135a5760045492505b60001984101561139c57611374848663ffffffff6116f816565b600160a060020a03808916600090815260056020908152604080832033909416835292905220555b6113ac858463ffffffff6116f816565b600160a060020a0388166000908152600260205260409020549092506113d8908663ffffffff6116f816565b600160a060020a03808916600090815260026020526040808220939093559088168152205461140d908363ffffffff61170a16565b600160a060020a0387166000908152600260205260408120919091558311156114a35760008054600160a060020a0316815260026020526040902054611459908463ffffffff61170a16565b60008054600160a060020a039081168252600260205260408083209390935590548116919089169060008051602061171a8339815191529086905190815260200160405180910390a35b85600160a060020a031687600160a060020a031660008051602061171a8339815191528460405190815260200160405180910390a350505050505050565b600160a060020a031660009081526002602052604090205490565b6000806040604436101561150f57600080fd5b61152a61271061133c6003548761168090919063ffffffff16565b925060045483111561153c5760045492505b61154c848463ffffffff6116f816565b600160a060020a033316600090815260026020526040902054909250611578908563ffffffff6116f816565b600160a060020a0333811660009081526002602052604080822093909355908716815220546115ad908363ffffffff61170a16565b600160a060020a0386166000908152600260205260408120919091558311156116445760008054600160a060020a03168152600260205260409020546115f9908463ffffffff61170a16565b60008054600160a060020a03908116825260026020526040808320939093559054811691339091169060008051602061171a8339815191529086905190815260200160405180910390a35b84600160a060020a031633600160a060020a031660008051602061171a8339815191528460405190815260200160405180910390a35050505050565b60008083151561169357600091506116af565b508282028284828115156116a357fe5b04146116ab57fe5b8091505b5092915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60008082848115156116ef57fe5b04949350505050565b60008282111561170457fe5b50900390565b6000828201838110156116ab57fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820711ea4c0843d412557627f0e9f1d46adecd8046388ad4ee5bb9d6a98d2f3d5c20029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000005af3107a4000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000d576f726c6477696465205553440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045755534400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 100000000000000
Arg [1] : _name (string): Worldwide USD
Arg [2] : _symbol (string): WUSD
Arg [3] : _decimals (uint256): 6
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000005af3107a4000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 576f726c64776964652055534400000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5755534400000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
9971:5350:0:-;;;;;;;;-1:-1:-1;;;9971:5350:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10037:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;71:3;;;64:6;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13136:181:0;;;;;;;;;;-1:-1:-1;;;;;13136:181:0;;;;;;;12390:302;;;;;;;;;;-1:-1:-1;;;;;12390:302:0;;;;;;;10153:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8714:145;;;;;;;;;;-1:-1:-1;;;;;8714:145:0;;;;;13383:218;;;;;;;;;;;;;;;;;;;;;;;;;;;11614:362;;;;;;;;;;-1:-1:-1;;;;;11614:362:0;;;;;;;;;;;;10116:30;;;;;;;;;;;;;;;-1:-1:-1;;;;;10116:30:0;;;;;;;;;;;;;;2951:40;;;;;;;;;;-1:-1:-1;;;;;2951:40:0;;;;;13609:84;;;;;;;;;;;;3117:26;;;;;;;;;;;;2053:24;;;;;;;;;;;;8160:90;;;;;;;;;;;;10778:113;;;;;;;;;;-1:-1:-1;;;;;10778:113:0;;;;;;;10899:76;;;;;;;;;;;;;;8428:124;;;;;;;;;;-1:-1:-1;;;;;8428:124:0;;;;;4741:61;;;;;;;;;;-1:-1:-1;;;;;4741:61:0;;;;;;;;;;7544:26;;;;;;;;;;;;12061:244;;;;;;;;;;-1:-1:-1;;;;;12061:244:0;;;;;10983:135;;;;;;;;;;-1:-1:-1;;;;;10983:135:0;;;;;;;7985:88;;;;;;;;;;;;8560:87;;;;;;;;;;;;1162:20;;;;;;;;;;;;10062;;;;;;;;;;;;11203:326;;;;;;;;;;-1:-1:-1;;;;;11203:326:0;;;;;;;14599:387;;;;;;;;;;;;;;;;13857:266;;;;;;;;;;;;;;14354:237;;;;;;;;;;;;;;12777:293;;;;;;;;;;-1:-1:-1;;;;;12777:293:0;;;;;;;;;;3079:31;;;;;;;;;;;;8655:46;;;;;;;;;;-1:-1:-1;;;;;8655:46:0;;;;;8867:160;;;;;;;;;;-1:-1:-1;;;;;8867:160:0;;;;;4811:42;;;;;;;;;;;;1734:151;;;;;;;;;;-1:-1:-1;;;;;1734:151:0;;;;;9035:324;;;;;;;;;;-1:-1:-1;;;;;9035:324:0;;;;;10037:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13136:181::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;13209:10;:17;;-1:-1:-1;;;;;13209:17:0;;;;-1:-1:-1;;13237:34:0;-1:-1:-1;;;;;13237:34:0;;;;;13282:27;13237:34;13282:27;;-1:-1:-1;;;;;13282:27:0;;;;;;;;;;;;;;13136:181;:::o;12390:302::-;12461:6;3296:8;3278;:26;3276:29;3268:38;;;;;;12484:10;;-1:-1:-1;;;12484:10:0;;;;12480:205;;;12540:15;;-1:-1:-1;;;;;12540:15:0;12518:54;12573:10;12585:8;12595:6;12518:84;;-1:-1:-1;;;12518:84:0;;;;;;-1:-1:-1;;;;;12518:84:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12518:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12511:91;;12480:205;12642:31;12656:8;12666:6;12642:13;:31::i;:::-;12390:302;;;:::o;10153:22::-;;;-1:-1:-1;;;10153:22:0;;;;;:::o;8714:145::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;-1:-1:-1;;;;;8784:24:0;;;;;;:13;:24;;;;;;;:31;;-1:-1:-1;;8784:31:0;8811:4;8784:31;;;8826:25;;8798:9;;8826:25;-1:-1:-1;;;;;8826:25:0;;;;;;;;;;;;;;8714:145;:::o;13383:218::-;13452:10;;13431:4;;-1:-1:-1;;;13452:10:0;;;;13448:146;;;13500:15;;-1:-1:-1;;;;;13500:15:0;13486:42;13500:15;13486:44;;;;;;;;;;-1:-1:-1;;;13486:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13479:51;;;;13448:146;-1:-1:-1;13570:12:0;;13448:146;13383:218;:::o;11614:362::-;7720:6;;-1:-1:-1;;;7720:6:0;;;;7719:7;7711:16;;;;;;-1:-1:-1;;;;;11718:20:0;;;;;;:13;:20;;;;;;;;11717:21;11709:30;;;;;;11754:10;;-1:-1:-1;;;11754:10:0;;;;11750:219;;;11810:15;;-1:-1:-1;;;;;11810:15:0;11788:59;11848:10;11860:5;11867:3;11872:6;11788:91;;-1:-1:-1;;;11788:91:0;;;;;;-1:-1:-1;;;;;11788:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11788:91:0;;;;;;;;;;;;;;;;;11750:219;11919:38;11938:5;11945:3;11950:6;11919:18;:38::i;10116:30::-;;;-1:-1:-1;;;;;10116:30:0;;:::o;2951:40::-;;;;;;;;;;;;;:::o;13609:84::-;13677:8;;13609:84;:::o;3117:26::-;;;;:::o;2053:24::-;;;;:::o;8160:90::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;7880:6;;-1:-1:-1;;;7880:6:0;;;;7872:15;;;;;;;;8223:5;8214:14;;-1:-1:-1;;8214:14:0;;;8235:9;;;;;;;;;;8160:90::o;10778:113::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;10862:5;;-1:-1:-1;;;;;10856:11:0;;;10862:5;;10856:11;10848:20;;;;;;10873:13;10879:6;10873:5;:13::i;:::-;10778:113;;:::o;10899:76::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;10954:13;10961:5;10954:6;:13::i;:::-;10899:76;:::o;8428:124::-;-1:-1:-1;;;;;8523:21:0;;8499:4;8523:21;;;:13;:21;;;;;;;;8428:124;;;;:::o;4741:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;7544:26::-;;;-1:-1:-1;;;7544:26:0;;;;;:::o;12061:244::-;12139:10;;12118:4;;-1:-1:-1;;;12139:10:0;;;;12135:163;;;12195:15;;-1:-1:-1;;;;;12195:15:0;12173:48;12222:3;12195:15;12173:53;;;;;;;-1:-1:-1;;;12173:53:0;;;;;;-1:-1:-1;;;;;12173:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12166:60;;;;12135:163;12266:20;12282:3;12266:15;:20::i;:::-;12259:27;;;;10983:135;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;11080:5;;-1:-1:-1;;;;;11069:16:0;;;11080:5;;11069:16;11061:25;;;;;;11097:13;11104:5;11097:6;:13::i;7985:88::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;7720:6;;-1:-1:-1;;;7720:6:0;;;;7719:7;7711:16;;;;;;8040:6;:13;;-1:-1:-1;;8040:13:0;-1:-1:-1;;;8040:13:0;;;8060:7;;;;;;;;;;7985:88::o;8560:87::-;8607:7;8634:5;-1:-1:-1;;;;;8634:5:0;8560:87;:::o;1162:20::-;;;-1:-1:-1;;;;;1162:20:0;;:::o;10062:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11203:326;7720:6;;-1:-1:-1;;;7720:6:0;;;;7719:7;7711:16;;;;;;-1:-1:-1;;;;;11302:10:0;11288:25;;;;;:13;:25;;;;;;;;11287:26;11279:35;;;;;;11329:10;;-1:-1:-1;;;11329:10:0;;;;11325:197;;;11385:15;;-1:-1:-1;;;;;11385:15:0;11363:55;11419:10;11431:3;11436:6;11363:80;;-1:-1:-1;;;11363:80:0;;;;;;-1:-1:-1;;;;;11363:80:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11363:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11356:87;;11325:197;11483:27;11498:3;11503:6;11483:14;:27::i;:::-;11476:34;;14599:387;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;14797:2;14780:19;;14772:28;;;;;;14831:2;14819:14;;14811:23;;;;;;14847:15;:32;;;14921:8;;14903:27;;:9;;14917:2;:12;14903:27;:13;:27;:::i;:::-;14890:10;:40;;;14950:15;;14943:35;;;;;;;;;;;;;;;;;;;;;;14599:387;;:::o;13857:266::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;13945:12;;13921:21;;;:36;13913:45;;;;;;14004:15;14013:5;;-1:-1:-1;;;;;14013:5:0;14004:15;;:8;:15;;;;;;13977:24;;;:42;13969:51;;;;;;14033:15;14042:5;;-1:-1:-1;;;;;14042:5:0;14033:15;;:8;:15;;;;;;;:25;;;;;;14042:5;14069:22;;;;;;14102:13;;14052:6;;14102:13;;;;;;;;;;;;;13857:266;:::o;14354:237::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;14419:12;;:22;;;;14411:31;;;;;;14461:15;14470:5;;-1:-1:-1;;;;;14470:5:0;14461:15;;:8;:15;;;;;;:25;;;;14453:34;;;;;;14500:12;:22;;;;;;;:12;14542:5;;-1:-1:-1;;;;;14542:5:0;14533:15;;:8;:15;;;;;;;:25;;;;;;;14569:14;;14516:6;;14569:14;;;;;;;;;;;;;14354:237;:::o;12777:293::-;12886:10;;12855:14;;-1:-1:-1;;;12886:10:0;;;;12882:181;;;12934:15;;-1:-1:-1;;;;;12934:15:0;12920:40;12961:6;12969:8;12934:15;12920:58;;;;;;;-1:-1:-1;;;12920:58:0;;;;;;-1:-1:-1;;;;;12920:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12913:65;;;;12882:181;13018:33;13034:6;13042:8;13018:15;:33::i;:::-;13011:40;;12882:181;12777:293;;;;:::o;3079:31::-;;;;:::o;8655:46::-;;;;;;;;;;;;;;;:::o;8867:160::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;-1:-1:-1;;;;;8943:27:0;;8973:5;8943:27;;;:13;:27;;;;;;;:35;;-1:-1:-1;;8943:35:0;;;8989:30;;8957:12;;8989:30;-1:-1:-1;;;;;8989:30:0;;;;;;;;;;;;;;8867:160;:::o;4811:42::-;-1:-1:-1;;4811:42:0;:::o;1734:151::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;-1:-1:-1;;;;;1811:22:0;;;1807:71;;1850:5;:16;;-1:-1:-1;;;;;1850:16:0;;-1:-1:-1;;1850:16:0;;;;;;1734:151;:::o;9035:324::-;9168:15;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;-1:-1:-1;;;;;9125:31:0;;;;;;:13;:31;;;;;;;;9117:40;;;;;;;;9186:27;9196:16;9186:9;:27::i;:::-;-1:-1:-1;;;;;9224:26:0;;9253:1;9224:26;;;:8;:26;;;;;;:30;;;;9265:12;:26;;;;;;;9168:45;;-1:-1:-1;9302:49:0;;9233:16;;9168:45;;9302:49;-1:-1:-1;;;;;9302:49:0;;;;;;;;;;;;;;;;;;;;9035:324;;:::o;6291:573::-;6362:6;3296:8;3278;:26;3276:29;3268:38;;;;;;6702:11;;;;;6701:53;;-1:-1:-1;;;;;;6727:10:0;6719:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;:34;;6701:53;6699:56;6691:65;;;;;;-1:-1:-1;;;;;6777:10:0;6769:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;;:38;;;6818;;6801:6;;6818:38;;;;;;;;;;;;;6291:573;;;:::o;5143:901::-;5248:14;;;5229:6;3296:8;3278;:26;3276:29;3268:38;;;;;;-1:-1:-1;;;;;5265:14:0;;;;;;;:7;:14;;;;;;;;5280:10;5265:26;;;;;;;;;;5485:15;;5265:26;;-1:-1:-1;5473:40:0;;5507:5;;5474:27;;:6;;:27;:10;:27;:::i;:::-;5473:33;:40;:33;:40;:::i;:::-;5462:51;;5534:10;;5528:3;:16;5524:65;;;5567:10;;5561:16;;5524:65;-1:-1:-1;;5603:10:0;:21;5599:105;;;5670:22;:10;5685:6;5670:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;5641:14:0;;;;;;;:7;:14;;;;;;;;5656:10;5641:26;;;;;;;;;:51;5599:105;5732:15;:6;5743:3;5732:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;5776:15:0;;;;;;:8;:15;;;;;;5714:33;;-1:-1:-1;5776:27:0;;5796:6;5776:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5758:15:0;;;;;;;:8;:15;;;;;;:45;;;;5830:13;;;;;;;:29;;5848:10;5830:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;5814:13:0;;;;;;:8;:13;;;;;:45;;;;5874:7;;5870:124;;;5916:15;5925:5;;-1:-1:-1;;;;;5925:5:0;5916:15;;:8;:15;;;;;;:24;;5936:3;5916:24;:19;:24;:::i;:::-;5898:15;5907:5;;-1:-1:-1;;;;;5907:5:0;;;5898:15;;:8;:15;;;;;;:42;;;;5971:5;;;;;5955:27;;;;-1:-1:-1;;;;;;;;;;;5955:27:0;5978:3;;5955:27;;;;;;;;;;;;;5870:124;6020:3;-1:-1:-1;;;;;6004:32:0;6013:5;-1:-1:-1;;;;;6004:32:0;-1:-1:-1;;;;;;;;;;;6025:10:0;6004:32;;;;;;;;;;;;;;5143:901;;;;;;;:::o;4290:116::-;-1:-1:-1;;;;;4382:16:0;4350:12;4382:16;;;:8;:16;;;;;;;4290:116::o;3499:573::-;3585:8;;3566:6;3296:8;3278;:26;3276:29;3268:38;;;;;;3596:40;3630:5;3597:27;3608:15;;3597:6;:10;;:27;;;;:::i;3596:40::-;3585:51;;3657:10;;3651:3;:16;3647:65;;;3690:10;;3684:16;;3647:65;3740:15;:6;3751:3;3740:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;3798:10:0;3789:20;;;;;:8;:20;;;;;;3722:33;;-1:-1:-1;3789:32:0;;3814:6;3789:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;3775:10:0;3766:20;;;;;;:8;:20;;;;;;:55;;;;3848:13;;;;;;;:29;;3866:10;3848:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;3832:13:0;;;;;;:8;:13;;;;;:45;;;;3892:7;;3888:129;;;3934:15;3943:5;;-1:-1:-1;;;;;3943:5:0;3934:15;;:8;:15;;;;;;:24;;3954:3;3934:24;:19;:24;:::i;:::-;3916:15;3925:5;;-1:-1:-1;;;;;3925:5:0;;;3916:15;;:8;:15;;;;;;:42;;;;3994:5;;;;;3982:10;3973:32;;;;-1:-1:-1;;;;;;;;;;;3973:32:0;4001:3;;3973:32;;;;;;;;;;;;;3888:129;4048:3;-1:-1:-1;;;;;4027:37:0;4036:10;-1:-1:-1;;;;;4027:37:0;-1:-1:-1;;;;;;;;;;;4053:10:0;4027:37;;;;;;;;;;;;;;3499:573;;;;;:::o;146:208::-;204:7;;228:6;;224:47;;;258:1;251:8;;;;224:47;-1:-1:-1;293:5:0;;;297:1;293;:5;316;;;;;;;;:10;309:18;;;;345:1;338:8;;146:208;;;;;;:::o;7197:145::-;-1:-1:-1;;;;;7309:15:0;;;7275:14;7309:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7197:145::o;362:288::-;420:7;519:9;535:1;531;:5;;;;;;;;;362:288;-1:-1:-1;;;;362:288:0:o;658:123::-;716:7;743:6;;;;736:14;;;;-1:-1:-1;768:5:0;;;658:123::o;789:147::-;847:7;879:5;;;902:6;;;;895:14;;
Swarm Source
bzzr://711ea4c0843d412557627f0e9f1d46adecd8046388ad4ee5bb9d6a98d2f3d5c2
Loading...
Loading
Loading...
Loading
OVERVIEW
WUSD is a fiat-collateralized stablecoin that is pegged to the U.S. Dollar at a 1:1 ratio.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.