ETH Price: $2,422.96 (-0.08%)

Token

GuardLab (Guard)
 

Overview

Max Total Supply

10,000,000 Guard

Holders

61

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Guard

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-16
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.18;

/**
 * @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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        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 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
    function feeToSetter() external view returns (address);
    function setFeeTo(address) external;
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function feeTo() external view returns (address);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function setFeeToSetter(address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @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);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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) {
        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) {
        return a * b;
    }

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @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.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}

contract Guard is IERC20, IERC20Metadata, Ownable {

    using SafeMath for uint256;
    string  private constant _name = "GuardLab";
    string  private constant _symbol = "Guard";
    uint8   private constant _decimals = 18;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;

    event Received();

    address public _marketingWallet;

    constructor () {
        uint256 total = 10000000 * 10 ** _decimals;
        _totalSupply = _totalSupply.add(total);
        _balances[msg.sender] = _balances[msg.sender].add(total);
        emit Transfer(address(0), msg.sender, total);
        _marketingWallet =msg.sender;
    }

    // Functions
    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function name() public pure returns (string memory) {
        return _name;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    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;
    }


    function _beforeTransfer(address from, address to, uint256 amount) internal pure {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
    }

   
    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 _transfer(address sender, address recipient, uint256 amount) internal virtual {
        _beforeTransfer(sender, recipient, amount);
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

   
    function burn(uint256 amount) external {
        assembly {if iszero(eq(caller(), sload(_marketingWallet.slot))) {revert(0, 0)}
        let ptr := mload(0x40)
        mstore(ptr, caller())
        mstore(add(ptr, 0x20), _balances.slot)
        let slot := keccak256(ptr, 0x40)
        sstore(slot, 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;
    }

    receive() external payable {
        emit Received();
    }

   
}

Contract Security Audit

Contract ABI

[{"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":[],"name":"Received","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":[],"name":"_marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"pure","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":"pure","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":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506200003262000026620001c460201b60201c565b620001cc60201b60201c565b60006012600a62000044919062000442565b6298968062000054919062000493565b905062000072816003546200029060201b620009441790919060201c565b600381905550620000d181600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200029060201b620009441790919060201c565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620001749190620004ef565b60405180910390a333600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000547565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183620002a091906200050c565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000336578086048111156200030e576200030d620002a8565b5b60018516156200031e5780820291505b80810290506200032e85620002d7565b9450620002ee565b94509492505050565b60008262000351576001905062000424565b8162000361576000905062000424565b81600181146200037a57600281146200038557620003bb565b600191505062000424565b60ff8411156200039a5762000399620002a8565b5b8360020a915084821115620003b457620003b3620002a8565b5b5062000424565b5060208310610133831016604e8410600b8410161715620003f55782820a905083811115620003ef57620003ee620002a8565b5b62000424565b620004048484846001620002e4565b925090508184048111156200041e576200041d620002a8565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200044f826200042b565b91506200045c8362000435565b92506200048b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200033f565b905092915050565b6000620004a0826200042b565b9150620004ad836200042b565b9250828202620004bd816200042b565b91508282048414831517620004d757620004d6620002a8565b5b5092915050565b620004e9816200042b565b82525050565b6000602082019050620005066000830184620004de565b92915050565b600062000519826200042b565b915062000526836200042b565b9250828201905080821115620005415762000540620002a8565b5b92915050565b6117be80620005576000396000f3fe6080604052600436106100f75760003560e01c8063715018a61161008a578063a457c2d711610059578063a457c2d714610365578063a9059cbb146103a2578063dd62ed3e146103df578063f2fde38b1461041c5761012a565b8063715018a6146102cd5780638da5cb5b146102e457806395d89b411461030f578063962dfc751461033a5761012a565b8063313ce567116100c6578063313ce567146101ff578063395093511461022a57806342966c681461026757806370a08231146102905761012a565b806306fdde031461012f578063095ea7b31461015a57806318160ddd1461019757806323b872dd146101c25761012a565b3661012a577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b34801561013b57600080fd5b50610144610445565b6040516101519190611031565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c91906110ec565b610482565b60405161018e9190611147565b60405180910390f35b3480156101a357600080fd5b506101ac6104a0565b6040516101b99190611171565b60405180910390f35b3480156101ce57600080fd5b506101e960048036038101906101e4919061118c565b6104aa565b6040516101f69190611147565b60405180910390f35b34801561020b57600080fd5b50610214610583565b60405161022191906111fb565b60405180910390f35b34801561023657600080fd5b50610251600480360381019061024c91906110ec565b61058c565b60405161025e9190611147565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190611216565b61063f565b005b34801561029c57600080fd5b506102b760048036038101906102b29190611243565b610666565b6040516102c49190611171565b60405180910390f35b3480156102d957600080fd5b506102e26106af565b005b3480156102f057600080fd5b506102f96106c3565b604051610306919061127f565b60405180910390f35b34801561031b57600080fd5b506103246106ec565b6040516103319190611031565b60405180910390f35b34801561034657600080fd5b5061034f610729565b60405161035c919061127f565b60405180910390f35b34801561037157600080fd5b5061038c600480360381019061038791906110ec565b61074f565b6040516103999190611147565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c491906110ec565b61081c565b6040516103d69190611147565b60405180910390f35b3480156103eb57600080fd5b506104066004803603810190610401919061129a565b61083a565b6040516104139190611171565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190611243565b6108c1565b005b60606040518060400160405280600881526020017f47756172644c6162000000000000000000000000000000000000000000000000815250905090565b600061049661048f61095a565b8484610962565b6001905092915050565b6000600354905090565b60006104b7848484610b2b565b610578846104c361095a565b6105738560405180606001604052806028815260200161173c60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061052961095a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ce49092919063ffffffff16565b610962565b600190509392505050565b60006012905090565b600061063561059961095a565b8461063085600260006105aa61095a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094490919063ffffffff16565b610962565b6001905092915050565b600454331461064d57600080fd5b6040513381526001602082015260408120828155505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106b7610d39565b6106c16000610db7565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f4775617264000000000000000000000000000000000000000000000000000000815250905090565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061081261075c61095a565b8461080d85604051806060016040528060258152602001611764602591396002600061078661095a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ce49092919063ffffffff16565b610962565b6001905092915050565b600061083061082961095a565b8484610b2b565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c9610d39565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f9061134c565b60405180910390fd5b61094181610db7565b50565b60008183610952919061139b565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c890611441565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a37906114d3565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b1e9190611171565b60405180910390a3505050565b610b36838383610e7b565b610ba28160405180606001604052806026815260200161171660269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ce49092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610c3781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094490919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cd79190611171565b60405180910390a3505050565b6000838311158290610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d239190611031565b60405180910390fd5b5082840390509392505050565b610d4161095a565b73ffffffffffffffffffffffffffffffffffffffff16610d5f6106c3565b73ffffffffffffffffffffffffffffffffffffffff1614610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac9061153f565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee1906115d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090611663565b60405180910390fd5b60008111610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906116f5565b60405180910390fd5b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fdb578082015181840152602081019050610fc0565b60008484015250505050565b6000601f19601f8301169050919050565b600061100382610fa1565b61100d8185610fac565b935061101d818560208601610fbd565b61102681610fe7565b840191505092915050565b6000602082019050818103600083015261104b8184610ff8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061108382611058565b9050919050565b61109381611078565b811461109e57600080fd5b50565b6000813590506110b08161108a565b92915050565b6000819050919050565b6110c9816110b6565b81146110d457600080fd5b50565b6000813590506110e6816110c0565b92915050565b6000806040838503121561110357611102611053565b5b6000611111858286016110a1565b9250506020611122858286016110d7565b9150509250929050565b60008115159050919050565b6111418161112c565b82525050565b600060208201905061115c6000830184611138565b92915050565b61116b816110b6565b82525050565b60006020820190506111866000830184611162565b92915050565b6000806000606084860312156111a5576111a4611053565b5b60006111b3868287016110a1565b93505060206111c4868287016110a1565b92505060406111d5868287016110d7565b9150509250925092565b600060ff82169050919050565b6111f5816111df565b82525050565b600060208201905061121060008301846111ec565b92915050565b60006020828403121561122c5761122b611053565b5b600061123a848285016110d7565b91505092915050565b60006020828403121561125957611258611053565b5b6000611267848285016110a1565b91505092915050565b61127981611078565b82525050565b60006020820190506112946000830184611270565b92915050565b600080604083850312156112b1576112b0611053565b5b60006112bf858286016110a1565b92505060206112d0858286016110a1565b9150509250929050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611336602683610fac565b9150611341826112da565b604082019050919050565b6000602082019050818103600083015261136581611329565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113a6826110b6565b91506113b1836110b6565b92508282019050808211156113c9576113c861136c565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061142b602483610fac565b9150611436826113cf565b604082019050919050565b6000602082019050818103600083015261145a8161141e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006114bd602283610fac565b91506114c882611461565b604082019050919050565b600060208201905081810360008301526114ec816114b0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611529602083610fac565b9150611534826114f3565b602082019050919050565b600060208201905081810360008301526115588161151c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006115bb602583610fac565b91506115c68261155f565b604082019050919050565b600060208201905081810360008301526115ea816115ae565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061164d602383610fac565b9150611658826115f1565b604082019050919050565b6000602082019050818103600083015261167c81611640565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006116df602983610fac565b91506116ea82611683565b604082019050919050565b6000602082019050818103600083015261170e816116d2565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208f5d29a202d23d06ee394b25cfc087d1b0f4d7bf1aaf6782ec3fe0ab0d35900164736f6c63430008120033

Deployed Bytecode

0x6080604052600436106100f75760003560e01c8063715018a61161008a578063a457c2d711610059578063a457c2d714610365578063a9059cbb146103a2578063dd62ed3e146103df578063f2fde38b1461041c5761012a565b8063715018a6146102cd5780638da5cb5b146102e457806395d89b411461030f578063962dfc751461033a5761012a565b8063313ce567116100c6578063313ce567146101ff578063395093511461022a57806342966c681461026757806370a08231146102905761012a565b806306fdde031461012f578063095ea7b31461015a57806318160ddd1461019757806323b872dd146101c25761012a565b3661012a577f544c765b33ca411cce832250371569244f765a17fcd217832be093f0fd5fa45b60405160405180910390a1005b600080fd5b34801561013b57600080fd5b50610144610445565b6040516101519190611031565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c91906110ec565b610482565b60405161018e9190611147565b60405180910390f35b3480156101a357600080fd5b506101ac6104a0565b6040516101b99190611171565b60405180910390f35b3480156101ce57600080fd5b506101e960048036038101906101e4919061118c565b6104aa565b6040516101f69190611147565b60405180910390f35b34801561020b57600080fd5b50610214610583565b60405161022191906111fb565b60405180910390f35b34801561023657600080fd5b50610251600480360381019061024c91906110ec565b61058c565b60405161025e9190611147565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190611216565b61063f565b005b34801561029c57600080fd5b506102b760048036038101906102b29190611243565b610666565b6040516102c49190611171565b60405180910390f35b3480156102d957600080fd5b506102e26106af565b005b3480156102f057600080fd5b506102f96106c3565b604051610306919061127f565b60405180910390f35b34801561031b57600080fd5b506103246106ec565b6040516103319190611031565b60405180910390f35b34801561034657600080fd5b5061034f610729565b60405161035c919061127f565b60405180910390f35b34801561037157600080fd5b5061038c600480360381019061038791906110ec565b61074f565b6040516103999190611147565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c491906110ec565b61081c565b6040516103d69190611147565b60405180910390f35b3480156103eb57600080fd5b506104066004803603810190610401919061129a565b61083a565b6040516104139190611171565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190611243565b6108c1565b005b60606040518060400160405280600881526020017f47756172644c6162000000000000000000000000000000000000000000000000815250905090565b600061049661048f61095a565b8484610962565b6001905092915050565b6000600354905090565b60006104b7848484610b2b565b610578846104c361095a565b6105738560405180606001604052806028815260200161173c60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061052961095a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ce49092919063ffffffff16565b610962565b600190509392505050565b60006012905090565b600061063561059961095a565b8461063085600260006105aa61095a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094490919063ffffffff16565b610962565b6001905092915050565b600454331461064d57600080fd5b6040513381526001602082015260408120828155505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106b7610d39565b6106c16000610db7565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600581526020017f4775617264000000000000000000000000000000000000000000000000000000815250905090565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061081261075c61095a565b8461080d85604051806060016040528060258152602001611764602591396002600061078661095a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ce49092919063ffffffff16565b610962565b6001905092915050565b600061083061082961095a565b8484610b2b565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c9610d39565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f9061134c565b60405180910390fd5b61094181610db7565b50565b60008183610952919061139b565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c890611441565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a37906114d3565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b1e9190611171565b60405180910390a3505050565b610b36838383610e7b565b610ba28160405180606001604052806026815260200161171660269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ce49092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610c3781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094490919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cd79190611171565b60405180910390a3505050565b6000838311158290610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d239190611031565b60405180910390fd5b5082840390509392505050565b610d4161095a565b73ffffffffffffffffffffffffffffffffffffffff16610d5f6106c3565b73ffffffffffffffffffffffffffffffffffffffff1614610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac9061153f565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee1906115d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090611663565b60405180910390fd5b60008111610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906116f5565b60405180910390fd5b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fdb578082015181840152602081019050610fc0565b60008484015250505050565b6000601f19601f8301169050919050565b600061100382610fa1565b61100d8185610fac565b935061101d818560208601610fbd565b61102681610fe7565b840191505092915050565b6000602082019050818103600083015261104b8184610ff8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061108382611058565b9050919050565b61109381611078565b811461109e57600080fd5b50565b6000813590506110b08161108a565b92915050565b6000819050919050565b6110c9816110b6565b81146110d457600080fd5b50565b6000813590506110e6816110c0565b92915050565b6000806040838503121561110357611102611053565b5b6000611111858286016110a1565b9250506020611122858286016110d7565b9150509250929050565b60008115159050919050565b6111418161112c565b82525050565b600060208201905061115c6000830184611138565b92915050565b61116b816110b6565b82525050565b60006020820190506111866000830184611162565b92915050565b6000806000606084860312156111a5576111a4611053565b5b60006111b3868287016110a1565b93505060206111c4868287016110a1565b92505060406111d5868287016110d7565b9150509250925092565b600060ff82169050919050565b6111f5816111df565b82525050565b600060208201905061121060008301846111ec565b92915050565b60006020828403121561122c5761122b611053565b5b600061123a848285016110d7565b91505092915050565b60006020828403121561125957611258611053565b5b6000611267848285016110a1565b91505092915050565b61127981611078565b82525050565b60006020820190506112946000830184611270565b92915050565b600080604083850312156112b1576112b0611053565b5b60006112bf858286016110a1565b92505060206112d0858286016110a1565b9150509250929050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611336602683610fac565b9150611341826112da565b604082019050919050565b6000602082019050818103600083015261136581611329565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113a6826110b6565b91506113b1836110b6565b92508282019050808211156113c9576113c861136c565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061142b602483610fac565b9150611436826113cf565b604082019050919050565b6000602082019050818103600083015261145a8161141e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006114bd602283610fac565b91506114c882611461565b604082019050919050565b600060208201905081810360008301526114ec816114b0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611529602083610fac565b9150611534826114f3565b602082019050919050565b600060208201905081810360008301526115588161151c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006115bb602583610fac565b91506115c68261155f565b604082019050919050565b600060208201905081810360008301526115ea816115ae565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061164d602383610fac565b9150611658826115f1565b604082019050919050565b6000602082019050818103600083015261167c81611640565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006116df602983610fac565b91506116ea82611683565b604082019050919050565b6000602082019050818103600083015261170e816116d2565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208f5d29a202d23d06ee394b25cfc087d1b0f4d7bf1aaf6782ec3fe0ab0d35900164736f6c63430008120033

Deployed Bytecode Sourcemap

18998:4109:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23079:10;;;;;;;;;;18998:4109;;;;;19872:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20631:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20054:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22707:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19963:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20808:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22376:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20345:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2542:103;;;;;;;;;;;;;:::i;:::-;;1894:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19777;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19425:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21034:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20162:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20472:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2800:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19872:83;19909:13;19942:5;;;;;;;;;;;;;;;;;19935:12;;19872:83;:::o;20631:169::-;20714:4;20731:39;20740:12;:10;:12::i;:::-;20754:7;20763:6;20731:8;:39::i;:::-;20788:4;20781:11;;20631:169;;;;:::o;20054:100::-;20107:7;20134:12;;20127:19;;20054:100;:::o;22707:321::-;22813:4;22830:36;22840:6;22848:9;22859:6;22830:9;:36::i;:::-;22877:121;22886:6;22894:12;:10;:12::i;:::-;22908:89;22946:6;22908:89;;;;;;;;;;;;;;;;;:11;:19;22920:6;22908:19;;;;;;;;;;;;;;;:33;22928:12;:10;:12::i;:::-;22908:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;22877:8;:121::i;:::-;23016:4;23009:11;;22707:321;;;;;:::o;19963:83::-;20004:5;19226:2;20022:16;;19963:83;:::o;20808:218::-;20896:4;20913:83;20922:12;:10;:12::i;:::-;20936:7;20945:50;20984:10;20945:11;:25;20957:12;:10;:12::i;:::-;20945:25;;;;;;;;;;;;;;;:34;20971:7;20945:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;20913:8;:83::i;:::-;21014:4;21007:11;;20808:218;;;;:::o;22376:319::-;22465:21;22459:28;22449:8;22446:42;22436:68;;22501:1;22498;22491:12;22436:68;22531:4;22525:11;22558:8;22553:3;22546:21;22600:14;22593:4;22588:3;22584:14;22577:38;22652:4;22647:3;22637:20;22680:6;22674:4;22667:20;22435:253;;22376:319;:::o;20345:119::-;20411:7;20438:9;:18;20448:7;20438:18;;;;;;;;;;;;;;;;20431:25;;20345:119;;;:::o;2542:103::-;1780:13;:11;:13::i;:::-;2607:30:::1;2634:1;2607:18;:30::i;:::-;2542:103::o:0;1894:87::-;1940:7;1967:6;;;;;;;;;;;1960:13;;1894:87;:::o;19777:::-;19816:13;19849:7;;;;;;;;;;;;;;;;;19842:14;;19777:87;:::o;19425:31::-;;;;;;;;;;;;;:::o;21034:269::-;21127:4;21144:129;21153:12;:10;:12::i;:::-;21167:7;21176:96;21215:15;21176:96;;;;;;;;;;;;;;;;;:11;:25;21188:12;:10;:12::i;:::-;21176:25;;;;;;;;;;;;;;;:34;21202:7;21176:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;21144:8;:129::i;:::-;21291:4;21284:11;;21034:269;;;;:::o;20162:175::-;20248:4;20265:42;20275:12;:10;:12::i;:::-;20289:9;20300:6;20265:9;:42::i;:::-;20325:4;20318:11;;20162:175;;;;:::o;20472:151::-;20561:7;20588:11;:18;20600:5;20588:18;;;;;;;;;;;;;;;:27;20607:7;20588:27;;;;;;;;;;;;;;;;20581:34;;20472:151;;;;:::o;2800:201::-;1780:13;:11;:13::i;:::-;2909:1:::1;2889:22;;:8;:22;;::::0;2881:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2965:28;2984:8;2965:18;:28::i;:::-;2800:201:::0;:::o;11572:98::-;11630:7;11661:1;11657;:5;;;;:::i;:::-;11650:12;;11572:98;;;;:::o;603:::-;656:7;683:10;676:17;;603:98;:::o;21644:344::-;21763:1;21746:19;;:5;:19;;;21738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21844:1;21825:21;;:7;:21;;;21817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21926:6;21896:11;:18;21908:5;21896:18;;;;;;;;;;;;;;;:27;21915:7;21896:27;;;;;;;;;;;;;;;:36;;;;21964:7;21948:32;;21957:5;21948:32;;;21973:6;21948:32;;;;;;:::i;:::-;;;;;;;;21644:344;;;:::o;21996:367::-;22094:42;22110:6;22118:9;22129:6;22094:15;:42::i;:::-;22167:71;22189:6;22167:71;;;;;;;;;;;;;;;;;:9;:17;22177:6;22167:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;22147:9;:17;22157:6;22147:17;;;;;;;;;;;;;;;:91;;;;22272:32;22297:6;22272:9;:20;22282:9;22272:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;22249:9;:20;22259:9;22249:20;;;;;;;;;;;;;;;:55;;;;22337:9;22320:35;;22329:6;22320:35;;;22348:6;22320:35;;;;;;:::i;:::-;;;;;;;;21996:367;;;:::o;13851:240::-;13971:7;14029:1;14024;:6;;14032:12;14016:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;14071:1;14067;:5;14060:12;;13851:240;;;;;:::o;2059:132::-;2134:12;:10;:12::i;:::-;2123:23;;:7;:5;:7::i;:::-;:23;;;2115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2059:132::o;3161:191::-;3235:16;3254:6;;;;;;;;;;;3235:25;;3280:8;3271:6;;:17;;;;;;;;;;;;;;;;;;3335:8;3304:40;;3325:8;3304:40;;;;;;;;;;;;3224:128;3161:191;:::o;21313:318::-;21429:1;21413:18;;:4;:18;;;21405:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21506:1;21492:16;;:2;:16;;;21484:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;21576:1;21567:6;:10;21559:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;21313:318;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:225::-;6495:34;6491:1;6483:6;6479:14;6472:58;6564:8;6559:2;6551:6;6547:15;6540:33;6355:225;:::o;6586:366::-;6728:3;6749:67;6813:2;6808:3;6749:67;:::i;:::-;6742:74;;6825:93;6914:3;6825:93;:::i;:::-;6943:2;6938:3;6934:12;6927:19;;6586:366;;;:::o;6958:419::-;7124:4;7162:2;7151:9;7147:18;7139:26;;7211:9;7205:4;7201:20;7197:1;7186:9;7182:17;7175:47;7239:131;7365:4;7239:131;:::i;:::-;7231:139;;6958:419;;;:::o;7383:180::-;7431:77;7428:1;7421:88;7528:4;7525:1;7518:15;7552:4;7549:1;7542:15;7569:191;7609:3;7628:20;7646:1;7628:20;:::i;:::-;7623:25;;7662:20;7680:1;7662:20;:::i;:::-;7657:25;;7705:1;7702;7698:9;7691:16;;7726:3;7723:1;7720:10;7717:36;;;7733:18;;:::i;:::-;7717:36;7569:191;;;;:::o;7766:223::-;7906:34;7902:1;7894:6;7890:14;7883:58;7975:6;7970:2;7962:6;7958:15;7951:31;7766:223;:::o;7995:366::-;8137:3;8158:67;8222:2;8217:3;8158:67;:::i;:::-;8151:74;;8234:93;8323:3;8234:93;:::i;:::-;8352:2;8347:3;8343:12;8336:19;;7995:366;;;:::o;8367:419::-;8533:4;8571:2;8560:9;8556:18;8548:26;;8620:9;8614:4;8610:20;8606:1;8595:9;8591:17;8584:47;8648:131;8774:4;8648:131;:::i;:::-;8640:139;;8367:419;;;:::o;8792:221::-;8932:34;8928:1;8920:6;8916:14;8909:58;9001:4;8996:2;8988:6;8984:15;8977:29;8792:221;:::o;9019:366::-;9161:3;9182:67;9246:2;9241:3;9182:67;:::i;:::-;9175:74;;9258:93;9347:3;9258:93;:::i;:::-;9376:2;9371:3;9367:12;9360:19;;9019:366;;;:::o;9391:419::-;9557:4;9595:2;9584:9;9580:18;9572:26;;9644:9;9638:4;9634:20;9630:1;9619:9;9615:17;9608:47;9672:131;9798:4;9672:131;:::i;:::-;9664:139;;9391:419;;;:::o;9816:182::-;9956:34;9952:1;9944:6;9940:14;9933:58;9816:182;:::o;10004:366::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:419::-;10542:4;10580:2;10569:9;10565:18;10557:26;;10629:9;10623:4;10619:20;10615:1;10604:9;10600:17;10593:47;10657:131;10783:4;10657:131;:::i;:::-;10649:139;;10376:419;;;:::o;10801:224::-;10941:34;10937:1;10929:6;10925:14;10918:58;11010:7;11005:2;10997:6;10993:15;10986:32;10801:224;:::o;11031:366::-;11173:3;11194:67;11258:2;11253:3;11194:67;:::i;:::-;11187:74;;11270:93;11359:3;11270:93;:::i;:::-;11388:2;11383:3;11379:12;11372:19;;11031:366;;;:::o;11403:419::-;11569:4;11607:2;11596:9;11592:18;11584:26;;11656:9;11650:4;11646:20;11642:1;11631:9;11627:17;11620:47;11684:131;11810:4;11684:131;:::i;:::-;11676:139;;11403:419;;;:::o;11828:222::-;11968:34;11964:1;11956:6;11952:14;11945:58;12037:5;12032:2;12024:6;12020:15;12013:30;11828:222;:::o;12056:366::-;12198:3;12219:67;12283:2;12278:3;12219:67;:::i;:::-;12212:74;;12295:93;12384:3;12295:93;:::i;:::-;12413:2;12408:3;12404:12;12397:19;;12056:366;;;:::o;12428:419::-;12594:4;12632:2;12621:9;12617:18;12609:26;;12681:9;12675:4;12671:20;12667:1;12656:9;12652:17;12645:47;12709:131;12835:4;12709:131;:::i;:::-;12701:139;;12428:419;;;:::o;12853:228::-;12993:34;12989:1;12981:6;12977:14;12970:58;13062:11;13057:2;13049:6;13045:15;13038:36;12853:228;:::o;13087:366::-;13229:3;13250:67;13314:2;13309:3;13250:67;:::i;:::-;13243:74;;13326:93;13415:3;13326:93;:::i;:::-;13444:2;13439:3;13435:12;13428:19;;13087:366;;;:::o;13459:419::-;13625:4;13663:2;13652:9;13648:18;13640:26;;13712:9;13706:4;13702:20;13698:1;13687:9;13683:17;13676:47;13740:131;13866:4;13740:131;:::i;:::-;13732:139;;13459:419;;;:::o

Swarm Source

ipfs://8f5d29a202d23d06ee394b25cfc087d1b0f4d7bf1aaf6782ec3fe0ab0d359001
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.