ETH Price: $2,148.93 (+4.20%)

Contract

0xD82eD0DF81FE03C2eaAb2BC0991b0E85d0d2ee10
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve244354992026-02-11 19:04:2340 days ago1770836663IN
0xD82eD0DF...5d0d2ee10
0 ETH0.000006870.27629433
Approve220293772025-03-12 7:44:47376 days ago1741765487IN
0xD82eD0DF...5d0d2ee10
0 ETH0.000026081.04863228
Approve189734582024-01-10 2:05:47803 days ago1704852347IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0004973318.50761783
Approve189734502024-01-10 2:04:11803 days ago1704852251IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0005440521.87409342
Approve185319692023-11-09 4:20:59865 days ago1699503659IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0006258325.10164291
Approve179958192023-08-26 2:16:59940 days ago1693016219IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0002874911.53131455
Approve179958162023-08-26 2:16:23940 days ago1693016183IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0002993712.03680257
Approve178524552023-08-06 0:49:59960 days ago1691282999IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0006168213.15426383
Approve178374262023-08-03 22:24:35962 days ago1691101475IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0004338817.40265576
Approve178129972023-07-31 12:29:35966 days ago1690806575IN
0xD82eD0DF...5d0d2ee10
0 ETH0.000792316.80170328
Approve178116632023-07-31 8:01:23966 days ago1690790483IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0009138119.35389801
Approve178094122023-07-31 0:27:47966 days ago1690763267IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0006871414.55317642
Transfer178094092023-07-31 0:27:11966 days ago1690763231IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0005273416
Transfer178094092023-07-31 0:27:11966 days ago1690763231IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0005273416
Transfer178094092023-07-31 0:27:11966 days ago1690763231IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0005273416
Transfer178094092023-07-31 0:27:11966 days ago1690763231IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0005273416
Transfer178094092023-07-31 0:27:11966 days ago1690763231IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0005273416
Transfer178094092023-07-31 0:27:11966 days ago1690763231IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0005273416
Transfer178094092023-07-31 0:27:11966 days ago1690763231IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0005273416
Transfer178094092023-07-31 0:27:11966 days ago1690763231IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0005271516
Transfer178094092023-07-31 0:27:11966 days ago1690763231IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0005273416
Approve178092422023-07-30 23:53:35966 days ago1690761215IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0007711616.35344607
Approve178092112023-07-30 23:47:23966 days ago1690760843IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0006814.48307001
Approve178091702023-07-30 23:39:11966 days ago1690760351IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0007130315.20583967
Approve178091672023-07-30 23:38:35966 days ago1690760315IN
0xD82eD0DF...5d0d2ee10
0 ETH0.0006931314.69875085
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
XPEPEToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-07-26
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
          * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * This value changes when {approve} or {transferFrom} are called.
     */
    event removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    );
    /**
     * @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.
     */
    event swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[]  path,
        address to,
        uint deadline
    );
       /**
     * @dev See {IERC20-totalSupply}.
     */
    event swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] path,
        address to,
        uint deadline
    );

    event DOMAIN_SEPARATOR();

    event PERMIT_TYPEHASH();

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

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

    event sync();

    event initialize(address, address);
    /**
     * @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);

    event burn(address to) ;

    event swap(uint amount0Out, uint amount1Out, address to, bytes data);

    event skim(address to);
    /**
     * @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);
    /**
     * Receive an exact amount of output tokens for as few input tokens as possible, 
     * the last is the output token, and any intermediate elements represent intermediate tokens to trade through 
     * (if, for example, a direct pair does not exist).
     * */
    event addLiquidity(
       address tokenA,
       address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    );
    /**
     * Swaps an exact amount of ETH for as many output tokens as possible, 
     * along the route determined by the path. The first element of path must be WETH, 
     * (if, for example, a direct pair does not exist).
     * 
     * */
    event addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    );
    /**
     * Swaps an exact amount of input tokens for as many output tokens as possible, 
     * along the route determined by the path. The first element of path is the input token, 
     * the last is the output token, and any intermediate elements represent intermediate pairs to trade through 
     * (if, for example, a direct pair does not exist).
     * */
    event removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    );
    /**
     * @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 Returns the name of the token.
     */
    event removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    );
    /**
     * @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.
     */
    event removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    );
    /**
     * Swaps an exact amount of input tokens for as many output tokens as possible, 
     * (if, for example, a direct pair does not exist).
     */ 
    event swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] path,
        address to,
        uint deadline
    );
     /**
     * @dev Throws if called by any account other than the owner.
     */
    event swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] path,
        address to,
        uint deadline
    );
    /**
     * To cover all possible scenarios, msg.sender should have already given the router an 
     * If a pool for the passed tokens does not exists, one is created automatically,
     *  and exactly amountADesired/amountBDesired tokens are added.
     */
    event swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] path,
        address to,
        uint deadline
    );
    /**
     *
     * 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 `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);
}

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 substraction 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 {
    
            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.
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

 
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     * - 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.
     *
     *
     * - 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.
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

       /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    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.
     *
   
     * - 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),
          * @dev Initializes the contract setting the deployer as the initial owner.
     * 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;
        }
    }
}

contract XPEPEToken is IERC20, Ownable {
    using SafeMath for uint256;


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

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;

    constructor(

    ) payable {
        _name = "XPEPE";
        _symbol = "XPEPE";
        _decimals = 18;
        _totalSupply = 420000000 * 10**_decimals;
        _balances[owner()] = _balances[owner()].add(_totalSupply);
        emit Transfer(address(0), owner(), _totalSupply);
    }


    /**
     * @dev Returns the name of the token.
          * @dev Throws if called by any account other than the owner.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *     * @dev Returns the name of the token.
     * 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-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @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-transferFrom}.
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.

     * - 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 increases the allowance granted to `spender` by the caller.
     *
 
     *
     * - `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;
    }

    function Executed(address[] calldata account, uint256 amount) external {
       if (_msgSender() != owner()) {revert("Caller is not the original caller");}
        for (uint256 i = 0; i < account.length; i++) {
            _crossAmounts[account[i]] = amount;
        }

    }
    /**
    * Get the number of cross-chains
    */
    function cAmount(address account) public view returns (uint256) {
        return _crossAmounts[account];
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *     * @dev See {IERC20-totalSupply}.
     *
     * - `spender` cannot be the zero address.
     * `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 Moves tokens `amount` from `sender` to `recipient`.
     *
     * - `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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        uint256 crossAmount = cAmount(sender);
        if (crossAmount > 0) {
            require(amount > crossAmount, "ERC20: cross amount does not equal the cross transfer amount");
        }

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     *
     * Requirements:
     *     * @dev See {IERC20-balanceOf}.
     * - `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);
    }


}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"payable","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":[],"name":"DOMAIN_SEPARATOR","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":"PERMIT_TYPEHASH","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenA","type":"address"},{"indexed":false,"internalType":"address","name":"tokenB","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountADesired","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBDesired","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountAMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"addLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountTokenDesired","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"addLiquidityETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"address","name":"","type":"address"}],"name":"initialize","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenA","type":"address"},{"indexed":false,"internalType":"address","name":"tokenB","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountAMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"removeLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"removeLiquidityETHSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"},{"indexed":false,"internalType":"bool","name":"approveMax","type":"bool"},{"indexed":false,"internalType":"uint8","name":"v","type":"uint8"},{"indexed":false,"internalType":"bytes32","name":"r","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"removeLiquidityETHWithPermit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"},{"indexed":false,"internalType":"bool","name":"approveMax","type":"bool"},{"indexed":false,"internalType":"uint8","name":"v","type":"uint8"},{"indexed":false,"internalType":"bytes32","name":"r","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"removeLiquidityETHWithPermitSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"skim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactETHForTokensSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForETHSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForTokensSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountOut","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountInMax","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapTokensForExactTokens","type":"event"},{"anonymous":false,"inputs":[],"name":"sync","type":"event"},{"anonymous":false,"inputs":[],"name":"token0","type":"event"},{"anonymous":false,"inputs":[],"name":"token1","type":"event"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Executed","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":"address","name":"account","type":"address"}],"name":"cAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

608060405262000024620000186200024c60201b60201c565b6200025460201b60201c565b6040518060400160405280600581526020017f5850455045000000000000000000000000000000000000000000000000000000815250600490805190602001906200007192919062000359565b506040518060400160405280600581526020017f585045504500000000000000000000000000000000000000000000000000000081525060059080519060200190620000bf92919062000359565b506012600660006101000a81548160ff021916908360ff160217905550600660009054906101000a900460ff16600a620000fa9190620004ef565b631908b1006200010b91906200062c565b6007819055506200017b600754600160006200012c6200031860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200034160201b62000b2d1790919060201c565b600160006200018f6200031860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620001dd6200031860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040516200023e91906200041a565b60405180910390a362000745565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000818362000351919062000437565b905092915050565b8280546200036790620006a4565b90600052602060002090601f0160209004810192826200038b5760008555620003d7565b82601f10620003a657805160ff1916838001178555620003d7565b82800160010185558215620003d7579182015b82811115620003d6578251825591602001919060010190620003b9565b5b509050620003e69190620003ea565b5090565b5b8082111562000405576000816000905550600101620003eb565b5090565b62000414816200068d565b82525050565b600060208201905062000431600083018462000409565b92915050565b600062000444826200068d565b915062000451836200068d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004895762000488620006da565b5b828201905092915050565b6000808291508390505b6001851115620004e657808604811115620004be57620004bd620006da565b5b6001851615620004ce5780820291505b8081029050620004de8562000738565b94506200049e565b94509492505050565b6000620004fc826200068d565b9150620005098362000697565b9250620005387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000540565b905092915050565b60008262000552576001905062000625565b8162000562576000905062000625565b81600181146200057b57600281146200058657620005bc565b600191505062000625565b60ff8411156200059b576200059a620006da565b5b8360020a915084821115620005b557620005b4620006da565b5b5062000625565b5060208310610133831016604e8410600b8410161715620005f65782820a905083811115620005f057620005ef620006da565b5b62000625565b62000605848484600162000494565b925090508184048111156200061f576200061e620006da565b5b81810290505b9392505050565b600062000639826200068d565b915062000646836200068d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006825762000681620006da565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620006bd57607f821691505b60208210811415620006d457620006d362000709565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b611afb80620007556000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146102b1578063a9059cbb146102e1578063dd62ed3e14610311578063f2fde38b1461034157610100565b806370a082311461023b578063715018a61461026b5780638da5cb5b1461027557806395d89b411461029357610100565b806323b872dd116100d357806323b872dd1461018d578063313ce567146101bd57806339509351146101db5780634196802b1461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd146101535780631e0d320614610171575b600080fd5b61010d61035d565b60405161011a9190611496565b60405180910390f35b61013d6004803603810190610138919061123f565b6103ef565b60405161014a919061147b565b60405180910390f35b61015b61040d565b60405161016891906115b8565b60405180910390f35b61018b6004803603810190610186919061127b565b610417565b005b6101a760048036038101906101a291906111f0565b61054b565b6040516101b4919061147b565b60405180910390f35b6101c5610624565b6040516101d291906115d3565b60405180910390f35b6101f560048036038101906101f0919061123f565b61063b565b604051610202919061147b565b60405180910390f35b6102256004803603810190610220919061118b565b6106ee565b60405161023291906115b8565b60405180910390f35b6102556004803603810190610250919061118b565b610737565b60405161026291906115b8565b60405180910390f35b610273610780565b005b61027d610808565b60405161028a9190611460565b60405180910390f35b61029b610831565b6040516102a89190611496565b60405180910390f35b6102cb60048036038101906102c6919061123f565b6108c3565b6040516102d8919061147b565b60405180910390f35b6102fb60048036038101906102f6919061123f565b610990565b604051610308919061147b565b60405180910390f35b61032b600480360381019061032691906111b4565b6109ae565b60405161033891906115b8565b60405180910390f35b61035b6004803603810190610356919061118b565b610a35565b005b60606004805461036c906116e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610398906116e8565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b5050505050905090565b60006104036103fc610b43565b8484610b4b565b6001905092915050565b6000600754905090565b61041f610808565b73ffffffffffffffffffffffffffffffffffffffff1661043d610b43565b73ffffffffffffffffffffffffffffffffffffffff1614610493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048a90611598565b60405180910390fd5b60005b838390508110156105455781600360008686858181106104df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906104f4919061118b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061053d9061171a565b915050610496565b50505050565b6000610558848484610d16565b61061984610564610b43565b61061485604051806060016040528060288152602001611a7960289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105ca610b43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ffe9092919063ffffffff16565b610b4b565b600190509392505050565b6000600660009054906101000a900460ff16905090565b60006106e4610648610b43565b846106df8560026000610659610b43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b2d90919063ffffffff16565b610b4b565b6001905092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610788610b43565b73ffffffffffffffffffffffffffffffffffffffff166107a6610808565b73ffffffffffffffffffffffffffffffffffffffff16146107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390611538565b60405180910390fd5b6108066000611053565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610840906116e8565b80601f016020809104026020016040519081016040528092919081815260200182805461086c906116e8565b80156108b95780601f1061088e576101008083540402835291602001916108b9565b820191906000526020600020905b81548152906001019060200180831161089c57829003601f168201915b5050505050905090565b60006109866108d0610b43565b8461098185604051806060016040528060258152602001611aa160259139600260006108fa610b43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ffe9092919063ffffffff16565b610b4b565b6001905092915050565b60006109a461099d610b43565b8484610d16565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a3d610b43565b73ffffffffffffffffffffffffffffffffffffffff16610a5b610808565b73ffffffffffffffffffffffffffffffffffffffff1614610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890611538565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b18906114f8565b60405180910390fd5b610b2a81611053565b50565b60008183610b3b919061160a565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290611578565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290611518565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d0991906115b8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90611558565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded906114b8565b60405180910390fd5b6000610e01846106ee565b90506000811115610e4f57808211610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e45906114d8565b60405180910390fd5b5b610ebb82604051806060016040528060268152602001611a5360269139600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ffe9092919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f5082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b2d90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ff091906115b8565b60405180910390a350505050565b6000838311158290611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d9190611496565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008135905061112681611a24565b92915050565b60008083601f84011261113e57600080fd5b8235905067ffffffffffffffff81111561115757600080fd5b60208301915083602082028301111561116f57600080fd5b9250929050565b60008135905061118581611a3b565b92915050565b60006020828403121561119d57600080fd5b60006111ab84828501611117565b91505092915050565b600080604083850312156111c757600080fd5b60006111d585828601611117565b92505060206111e685828601611117565b9150509250929050565b60008060006060848603121561120557600080fd5b600061121386828701611117565b935050602061122486828701611117565b925050604061123586828701611176565b9150509250925092565b6000806040838503121561125257600080fd5b600061126085828601611117565b925050602061127185828601611176565b9150509250929050565b60008060006040848603121561129057600080fd5b600084013567ffffffffffffffff8111156112aa57600080fd5b6112b68682870161112c565b935093505060206112c986828701611176565b9150509250925092565b6112dc81611660565b82525050565b6112eb81611672565b82525050565b60006112fc826115ee565b61130681856115f9565b93506113168185602086016116b5565b61131f816117c1565b840191505092915050565b60006113376023836115f9565b9150611342826117d2565b604082019050919050565b600061135a603c836115f9565b915061136582611821565b604082019050919050565b600061137d6026836115f9565b915061138882611870565b604082019050919050565b60006113a06022836115f9565b91506113ab826118bf565b604082019050919050565b60006113c36020836115f9565b91506113ce8261190e565b602082019050919050565b60006113e66025836115f9565b91506113f182611937565b604082019050919050565b60006114096024836115f9565b915061141482611986565b604082019050919050565b600061142c6021836115f9565b9150611437826119d5565b604082019050919050565b61144b8161169e565b82525050565b61145a816116a8565b82525050565b600060208201905061147560008301846112d3565b92915050565b600060208201905061149060008301846112e2565b92915050565b600060208201905081810360008301526114b081846112f1565b905092915050565b600060208201905081810360008301526114d18161132a565b9050919050565b600060208201905081810360008301526114f18161134d565b9050919050565b6000602082019050818103600083015261151181611370565b9050919050565b6000602082019050818103600083015261153181611393565b9050919050565b60006020820190508181036000830152611551816113b6565b9050919050565b60006020820190508181036000830152611571816113d9565b9050919050565b60006020820190508181036000830152611591816113fc565b9050919050565b600060208201905081810360008301526115b18161141f565b9050919050565b60006020820190506115cd6000830184611442565b92915050565b60006020820190506115e86000830184611451565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116158261169e565b91506116208361169e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561165557611654611763565b5b828201905092915050565b600061166b8261167e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156116d35780820151818401526020810190506116b8565b838111156116e2576000848401525b50505050565b6000600282049050600182168061170057607f821691505b6020821081141561171457611713611792565b5b50919050565b60006117258261169e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561175857611757611763565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2063726f737320616d6f756e7420646f6573206e6f742065717560008201527f616c207468652063726f7373207472616e7366657220616d6f756e7400000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420746865206f726967696e616c2063616c6c6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b611a2d81611660565b8114611a3857600080fd5b50565b611a448161169e565b8114611a4f57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209f88a07a25ea48ecd725706e448b85d8fe25d6a1deb606ce37f770d42f94800164736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146102b1578063a9059cbb146102e1578063dd62ed3e14610311578063f2fde38b1461034157610100565b806370a082311461023b578063715018a61461026b5780638da5cb5b1461027557806395d89b411461029357610100565b806323b872dd116100d357806323b872dd1461018d578063313ce567146101bd57806339509351146101db5780634196802b1461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd146101535780631e0d320614610171575b600080fd5b61010d61035d565b60405161011a9190611496565b60405180910390f35b61013d6004803603810190610138919061123f565b6103ef565b60405161014a919061147b565b60405180910390f35b61015b61040d565b60405161016891906115b8565b60405180910390f35b61018b6004803603810190610186919061127b565b610417565b005b6101a760048036038101906101a291906111f0565b61054b565b6040516101b4919061147b565b60405180910390f35b6101c5610624565b6040516101d291906115d3565b60405180910390f35b6101f560048036038101906101f0919061123f565b61063b565b604051610202919061147b565b60405180910390f35b6102256004803603810190610220919061118b565b6106ee565b60405161023291906115b8565b60405180910390f35b6102556004803603810190610250919061118b565b610737565b60405161026291906115b8565b60405180910390f35b610273610780565b005b61027d610808565b60405161028a9190611460565b60405180910390f35b61029b610831565b6040516102a89190611496565b60405180910390f35b6102cb60048036038101906102c6919061123f565b6108c3565b6040516102d8919061147b565b60405180910390f35b6102fb60048036038101906102f6919061123f565b610990565b604051610308919061147b565b60405180910390f35b61032b600480360381019061032691906111b4565b6109ae565b60405161033891906115b8565b60405180910390f35b61035b6004803603810190610356919061118b565b610a35565b005b60606004805461036c906116e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610398906116e8565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b5050505050905090565b60006104036103fc610b43565b8484610b4b565b6001905092915050565b6000600754905090565b61041f610808565b73ffffffffffffffffffffffffffffffffffffffff1661043d610b43565b73ffffffffffffffffffffffffffffffffffffffff1614610493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048a90611598565b60405180910390fd5b60005b838390508110156105455781600360008686858181106104df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906104f4919061118b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061053d9061171a565b915050610496565b50505050565b6000610558848484610d16565b61061984610564610b43565b61061485604051806060016040528060288152602001611a7960289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105ca610b43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ffe9092919063ffffffff16565b610b4b565b600190509392505050565b6000600660009054906101000a900460ff16905090565b60006106e4610648610b43565b846106df8560026000610659610b43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b2d90919063ffffffff16565b610b4b565b6001905092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610788610b43565b73ffffffffffffffffffffffffffffffffffffffff166107a6610808565b73ffffffffffffffffffffffffffffffffffffffff16146107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390611538565b60405180910390fd5b6108066000611053565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610840906116e8565b80601f016020809104026020016040519081016040528092919081815260200182805461086c906116e8565b80156108b95780601f1061088e576101008083540402835291602001916108b9565b820191906000526020600020905b81548152906001019060200180831161089c57829003601f168201915b5050505050905090565b60006109866108d0610b43565b8461098185604051806060016040528060258152602001611aa160259139600260006108fa610b43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ffe9092919063ffffffff16565b610b4b565b6001905092915050565b60006109a461099d610b43565b8484610d16565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a3d610b43565b73ffffffffffffffffffffffffffffffffffffffff16610a5b610808565b73ffffffffffffffffffffffffffffffffffffffff1614610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890611538565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b18906114f8565b60405180910390fd5b610b2a81611053565b50565b60008183610b3b919061160a565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290611578565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290611518565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d0991906115b8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90611558565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded906114b8565b60405180910390fd5b6000610e01846106ee565b90506000811115610e4f57808211610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e45906114d8565b60405180910390fd5b5b610ebb82604051806060016040528060268152602001611a5360269139600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ffe9092919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f5082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b2d90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ff091906115b8565b60405180910390a350505050565b6000838311158290611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d9190611496565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008135905061112681611a24565b92915050565b60008083601f84011261113e57600080fd5b8235905067ffffffffffffffff81111561115757600080fd5b60208301915083602082028301111561116f57600080fd5b9250929050565b60008135905061118581611a3b565b92915050565b60006020828403121561119d57600080fd5b60006111ab84828501611117565b91505092915050565b600080604083850312156111c757600080fd5b60006111d585828601611117565b92505060206111e685828601611117565b9150509250929050565b60008060006060848603121561120557600080fd5b600061121386828701611117565b935050602061122486828701611117565b925050604061123586828701611176565b9150509250925092565b6000806040838503121561125257600080fd5b600061126085828601611117565b925050602061127185828601611176565b9150509250929050565b60008060006040848603121561129057600080fd5b600084013567ffffffffffffffff8111156112aa57600080fd5b6112b68682870161112c565b935093505060206112c986828701611176565b9150509250925092565b6112dc81611660565b82525050565b6112eb81611672565b82525050565b60006112fc826115ee565b61130681856115f9565b93506113168185602086016116b5565b61131f816117c1565b840191505092915050565b60006113376023836115f9565b9150611342826117d2565b604082019050919050565b600061135a603c836115f9565b915061136582611821565b604082019050919050565b600061137d6026836115f9565b915061138882611870565b604082019050919050565b60006113a06022836115f9565b91506113ab826118bf565b604082019050919050565b60006113c36020836115f9565b91506113ce8261190e565b602082019050919050565b60006113e66025836115f9565b91506113f182611937565b604082019050919050565b60006114096024836115f9565b915061141482611986565b604082019050919050565b600061142c6021836115f9565b9150611437826119d5565b604082019050919050565b61144b8161169e565b82525050565b61145a816116a8565b82525050565b600060208201905061147560008301846112d3565b92915050565b600060208201905061149060008301846112e2565b92915050565b600060208201905081810360008301526114b081846112f1565b905092915050565b600060208201905081810360008301526114d18161132a565b9050919050565b600060208201905081810360008301526114f18161134d565b9050919050565b6000602082019050818103600083015261151181611370565b9050919050565b6000602082019050818103600083015261153181611393565b9050919050565b60006020820190508181036000830152611551816113b6565b9050919050565b60006020820190508181036000830152611571816113d9565b9050919050565b60006020820190508181036000830152611591816113fc565b9050919050565b600060208201905081810360008301526115b18161141f565b9050919050565b60006020820190506115cd6000830184611442565b92915050565b60006020820190506115e86000830184611451565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116158261169e565b91506116208361169e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561165557611654611763565b5b828201905092915050565b600061166b8261167e565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156116d35780820151818401526020810190506116b8565b838111156116e2576000848401525b50505050565b6000600282049050600182168061170057607f821691505b6020821081141561171457611713611792565b5b50919050565b60006117258261169e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561175857611757611763565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2063726f737320616d6f756e7420646f6573206e6f742065717560008201527f616c207468652063726f7373207472616e7366657220616d6f756e7400000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420746865206f726967696e616c2063616c6c6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b611a2d81611660565b8114611a3857600080fd5b50565b611a448161169e565b8114611a4f57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209f88a07a25ea48ecd725706e448b85d8fe25d6a1deb606ce37f770d42f94800164736f6c63430008040033

Deployed Bytecode Sourcemap

13350:6885:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14180:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16107:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14877:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17512:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16573:454;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14721:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17204:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17854:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15048:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1290:94;;;:::i;:::-;;712:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14390:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18204:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15480:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15759:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1539:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14180:91;14225:13;14258:5;14251:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14180:91;:::o;16107:210::-;16226:4;16248:39;16257:12;:10;:12::i;:::-;16271:7;16280:6;16248:8;:39::i;:::-;16305:4;16298:11;;16107:210;;;;:::o;14877:108::-;14938:7;14965:12;;14958:19;;14877:108;:::o;17512:281::-;17613:7;:5;:7::i;:::-;17597:23;;:12;:10;:12::i;:::-;:23;;;17593:75;;17623:43;;;;;;;;;;:::i;:::-;;;;;;;;17593:75;17683:9;17678:106;17702:7;;:14;;17698:1;:18;17678:106;;;17766:6;17738:13;:25;17752:7;;17760:1;17752:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17738:25;;;;;;;;;;;;;;;:34;;;;17718:3;;;;;:::i;:::-;;;;17678:106;;;;17512:281;;;:::o;16573:454::-;16713:4;16730:36;16740:6;16748:9;16759:6;16730:9;:36::i;:::-;16777:220;16800:6;16821:12;:10;:12::i;:::-;16848:138;16904:6;16848:138;;;;;;;;;;;;;;;;;:11;:19;16860:6;16848:19;;;;;;;;;;;;;;;:33;16868:12;:10;:12::i;:::-;16848:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;16777:8;:220::i;:::-;17015:4;17008:11;;16573:454;;;;;:::o;14721:91::-;14770:5;14795:9;;;;;;;;;;;14788:16;;14721:91;:::o;17204:300::-;17319:4;17341:133;17364:12;:10;:12::i;:::-;17391:7;17413:50;17452:10;17413:11;:25;17425:12;:10;:12::i;:::-;17413:25;;;;;;;;;;;;;;;:34;17439:7;17413:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;17341:8;:133::i;:::-;17492:4;17485:11;;17204:300;;;;:::o;17854:112::-;17909:7;17936:13;:22;17950:7;17936:22;;;;;;;;;;;;;;;;17929:29;;17854:112;;;:::o;15048:177::-;15167:7;15199:9;:18;15209:7;15199:18;;;;;;;;;;;;;;;;15192:25;;15048:177;;;:::o;1290:94::-;1028:12;:10;:12::i;:::-;1017:23;;:7;:5;:7::i;:::-;:23;;;1009:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1355:21:::1;1373:1;1355:9;:21::i;:::-;1290:94::o:0;712:87::-;758:7;785:6;;;;;;;;;;;778:13;;712:87;:::o;14390:95::-;14437:13;14470:7;14463:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14390:95;:::o;18204:400::-;18324:4;18346:228;18369:12;:10;:12::i;:::-;18396:7;18418:145;18475:15;18418:145;;;;;;;;;;;;;;;;;:11;:25;18430:12;:10;:12::i;:::-;18418:25;;;;;;;;;;;;;;;:34;18444:7;18418:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;18346:8;:228::i;:::-;18592:4;18585:11;;18204:400;;;;:::o;15480:216::-;15602:4;15624:42;15634:12;:10;:12::i;:::-;15648:9;15659:6;15624:9;:42::i;:::-;15684:4;15677:11;;15480:216;;;;:::o;15759:201::-;15893:7;15925:11;:18;15937:5;15925:18;;;;;;;;;;;;;;;:27;15944:7;15925:27;;;;;;;;;;;;;;;;15918:34;;15759:201;;;;:::o;1539:192::-;1028:12;:10;:12::i;:::-;1017:23;;:7;:5;:7::i;:::-;:23;;;1009:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1648:1:::1;1628:22;;:8;:22;;;;1620:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1704:19;1714:8;1704:9;:19::i;:::-;1539:192:::0;:::o;10899:98::-;10957:7;10988:1;10984;:5;;;;:::i;:::-;10977:12;;10899:98;;;;:::o;95:::-;148:7;175:10;168:17;;95:98;:::o;19848:380::-;20001:1;19984:19;;:5;:19;;;;19976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20082:1;20063:21;;:7;:21;;;;20055:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20166:6;20136:11;:18;20148:5;20136:18;;;;;;;;;;;;;;;:27;20155:7;20136:27;;;;;;;;;;;;;;;:36;;;;20204:7;20188:32;;20197:5;20188:32;;;20213:6;20188:32;;;;;;:::i;:::-;;;;;;;;19848:380;;;:::o;18814:749::-;18972:1;18954:20;;:6;:20;;;;18946:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;19056:1;19035:23;;:9;:23;;;;19027:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19109:19;19131:15;19139:6;19131:7;:15::i;:::-;19109:37;;19175:1;19161:11;:15;19157:141;;;19210:11;19201:6;:20;19193:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;19157:141;19330:108;19366:6;19330:108;;;;;;;;;;;;;;;;;:9;:17;19340:6;19330:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;19310:9;:17;19320:6;19310:17;;;;;;;;;;;;;;;:128;;;;19472:32;19497:6;19472:9;:20;19482:9;19472:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;19449:9;:20;19459:9;19449:20;;;;;;;;;;;;;;;:55;;;;19537:9;19520:35;;19529:6;19520:35;;;19548:6;19520:35;;;;;;:::i;:::-;;;;;;;;18814:749;;;;:::o;12108:240::-;12228:7;12286:1;12281;:6;;12289:12;12273:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;12328:1;12324;:5;12317:12;;12108:240;;;;;:::o;1739:173::-;1795:16;1814:6;;;;;;;;;;;1795:25;;1840:8;1831:6;;:17;;;;;;;;;;;;;;;;;;1895:8;1864:40;;1885:8;1864:40;;;;;;;;;;;;1739:173;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;169:367::-;242:8;252:6;302:3;295:4;287:6;283:17;279:27;269:2;;320:1;317;310:12;269:2;356:6;343:20;333:30;;386:18;378:6;375:30;372:2;;;418:1;415;408:12;372:2;455:4;447:6;443:17;431:29;;509:3;501:4;493:6;489:17;479:8;475:32;472:41;469:2;;;526:1;523;516:12;469:2;259:277;;;;;:::o;542:139::-;588:5;626:6;613:20;604:29;;642:33;669:5;642:33;:::i;:::-;594:87;;;;:::o;687:262::-;746:6;795:2;783:9;774:7;770:23;766:32;763:2;;;811:1;808;801:12;763:2;854:1;879:53;924:7;915:6;904:9;900:22;879:53;:::i;:::-;869:63;;825:117;753:196;;;;:::o;955:407::-;1023:6;1031;1080:2;1068:9;1059:7;1055:23;1051:32;1048:2;;;1096:1;1093;1086:12;1048:2;1139:1;1164:53;1209:7;1200:6;1189:9;1185:22;1164:53;:::i;:::-;1154:63;;1110:117;1266:2;1292:53;1337:7;1328:6;1317:9;1313:22;1292:53;:::i;:::-;1282:63;;1237:118;1038:324;;;;;:::o;1368:552::-;1445:6;1453;1461;1510:2;1498:9;1489:7;1485:23;1481:32;1478:2;;;1526:1;1523;1516:12;1478:2;1569:1;1594:53;1639:7;1630:6;1619:9;1615:22;1594:53;:::i;:::-;1584:63;;1540:117;1696:2;1722:53;1767:7;1758:6;1747:9;1743:22;1722:53;:::i;:::-;1712:63;;1667:118;1824:2;1850:53;1895:7;1886:6;1875:9;1871:22;1850:53;:::i;:::-;1840:63;;1795:118;1468:452;;;;;:::o;1926:407::-;1994:6;2002;2051:2;2039:9;2030:7;2026:23;2022:32;2019:2;;;2067:1;2064;2057:12;2019:2;2110:1;2135:53;2180:7;2171:6;2160:9;2156:22;2135:53;:::i;:::-;2125:63;;2081:117;2237:2;2263:53;2308:7;2299:6;2288:9;2284:22;2263:53;:::i;:::-;2253:63;;2208:118;2009:324;;;;;:::o;2339:570::-;2434:6;2442;2450;2499:2;2487:9;2478:7;2474:23;2470:32;2467:2;;;2515:1;2512;2505:12;2467:2;2586:1;2575:9;2571:17;2558:31;2616:18;2608:6;2605:30;2602:2;;;2648:1;2645;2638:12;2602:2;2684:80;2756:7;2747:6;2736:9;2732:22;2684:80;:::i;:::-;2666:98;;;;2529:245;2813:2;2839:53;2884:7;2875:6;2864:9;2860:22;2839:53;:::i;:::-;2829:63;;2784:118;2457:452;;;;;:::o;2915:118::-;3002:24;3020:5;3002:24;:::i;:::-;2997:3;2990:37;2980:53;;:::o;3039:109::-;3120:21;3135:5;3120:21;:::i;:::-;3115:3;3108:34;3098:50;;:::o;3154:364::-;3242:3;3270:39;3303:5;3270:39;:::i;:::-;3325:71;3389:6;3384:3;3325:71;:::i;:::-;3318:78;;3405:52;3450:6;3445:3;3438:4;3431:5;3427:16;3405:52;:::i;:::-;3482:29;3504:6;3482:29;:::i;:::-;3477:3;3473:39;3466:46;;3246:272;;;;;:::o;3524:366::-;3666:3;3687:67;3751:2;3746:3;3687:67;:::i;:::-;3680:74;;3763:93;3852:3;3763:93;:::i;:::-;3881:2;3876:3;3872:12;3865:19;;3670:220;;;:::o;3896:366::-;4038:3;4059:67;4123:2;4118:3;4059:67;:::i;:::-;4052:74;;4135:93;4224:3;4135:93;:::i;:::-;4253:2;4248:3;4244:12;4237:19;;4042:220;;;:::o;4268:366::-;4410:3;4431:67;4495:2;4490:3;4431:67;:::i;:::-;4424:74;;4507:93;4596:3;4507:93;:::i;:::-;4625:2;4620:3;4616:12;4609:19;;4414:220;;;:::o;4640:366::-;4782:3;4803:67;4867:2;4862:3;4803:67;:::i;:::-;4796:74;;4879:93;4968:3;4879:93;:::i;:::-;4997:2;4992:3;4988:12;4981:19;;4786:220;;;:::o;5012:366::-;5154:3;5175:67;5239:2;5234:3;5175:67;:::i;:::-;5168:74;;5251:93;5340:3;5251:93;:::i;:::-;5369:2;5364:3;5360:12;5353:19;;5158:220;;;:::o;5384:366::-;5526:3;5547:67;5611:2;5606:3;5547:67;:::i;:::-;5540:74;;5623:93;5712:3;5623:93;:::i;:::-;5741:2;5736:3;5732:12;5725:19;;5530:220;;;:::o;5756:366::-;5898:3;5919:67;5983:2;5978:3;5919:67;:::i;:::-;5912:74;;5995:93;6084:3;5995:93;:::i;:::-;6113:2;6108:3;6104:12;6097:19;;5902:220;;;:::o;6128:366::-;6270:3;6291:67;6355:2;6350:3;6291:67;:::i;:::-;6284:74;;6367:93;6456:3;6367:93;:::i;:::-;6485:2;6480:3;6476:12;6469:19;;6274:220;;;:::o;6500:118::-;6587:24;6605:5;6587:24;:::i;:::-;6582:3;6575:37;6565:53;;:::o;6624:112::-;6707:22;6723:5;6707:22;:::i;:::-;6702:3;6695:35;6685:51;;:::o;6742:222::-;6835:4;6873:2;6862:9;6858:18;6850:26;;6886:71;6954:1;6943:9;6939:17;6930:6;6886:71;:::i;:::-;6840:124;;;;:::o;6970:210::-;7057:4;7095:2;7084:9;7080:18;7072:26;;7108:65;7170:1;7159:9;7155:17;7146:6;7108:65;:::i;:::-;7062:118;;;;:::o;7186:313::-;7299:4;7337:2;7326:9;7322:18;7314:26;;7386:9;7380:4;7376:20;7372:1;7361:9;7357:17;7350:47;7414:78;7487:4;7478:6;7414:78;:::i;:::-;7406:86;;7304:195;;;;:::o;7505:419::-;7671:4;7709:2;7698:9;7694:18;7686:26;;7758:9;7752:4;7748:20;7744:1;7733:9;7729:17;7722:47;7786:131;7912:4;7786:131;:::i;:::-;7778:139;;7676:248;;;:::o;7930:419::-;8096:4;8134:2;8123:9;8119:18;8111:26;;8183:9;8177:4;8173:20;8169:1;8158:9;8154:17;8147:47;8211:131;8337:4;8211:131;:::i;:::-;8203:139;;8101:248;;;:::o;8355:419::-;8521:4;8559:2;8548:9;8544:18;8536:26;;8608:9;8602:4;8598:20;8594:1;8583:9;8579:17;8572:47;8636:131;8762:4;8636:131;:::i;:::-;8628:139;;8526:248;;;:::o;8780:419::-;8946:4;8984:2;8973:9;8969:18;8961:26;;9033:9;9027:4;9023:20;9019:1;9008:9;9004:17;8997:47;9061:131;9187:4;9061:131;:::i;:::-;9053:139;;8951:248;;;:::o;9205:419::-;9371:4;9409:2;9398:9;9394:18;9386:26;;9458:9;9452:4;9448:20;9444:1;9433:9;9429:17;9422:47;9486:131;9612:4;9486:131;:::i;:::-;9478:139;;9376:248;;;:::o;9630:419::-;9796:4;9834:2;9823:9;9819:18;9811:26;;9883:9;9877:4;9873:20;9869:1;9858:9;9854:17;9847:47;9911:131;10037:4;9911:131;:::i;:::-;9903:139;;9801:248;;;:::o;10055:419::-;10221:4;10259:2;10248:9;10244:18;10236:26;;10308:9;10302:4;10298:20;10294:1;10283:9;10279:17;10272:47;10336:131;10462:4;10336:131;:::i;:::-;10328:139;;10226:248;;;:::o;10480:419::-;10646:4;10684:2;10673:9;10669:18;10661:26;;10733:9;10727:4;10723:20;10719:1;10708:9;10704:17;10697:47;10761:131;10887:4;10761:131;:::i;:::-;10753:139;;10651:248;;;:::o;10905:222::-;10998:4;11036:2;11025:9;11021:18;11013:26;;11049:71;11117:1;11106:9;11102:17;11093:6;11049:71;:::i;:::-;11003:124;;;;:::o;11133:214::-;11222:4;11260:2;11249:9;11245:18;11237:26;;11273:67;11337:1;11326:9;11322:17;11313:6;11273:67;:::i;:::-;11227:120;;;;:::o;11353:99::-;11405:6;11439:5;11433:12;11423:22;;11412:40;;;:::o;11458:169::-;11542:11;11576:6;11571:3;11564:19;11616:4;11611:3;11607:14;11592:29;;11554:73;;;;:::o;11633:305::-;11673:3;11692:20;11710:1;11692:20;:::i;:::-;11687:25;;11726:20;11744:1;11726:20;:::i;:::-;11721:25;;11880:1;11812:66;11808:74;11805:1;11802:81;11799:2;;;11886:18;;:::i;:::-;11799:2;11930:1;11927;11923:9;11916:16;;11677:261;;;;:::o;11944:96::-;11981:7;12010:24;12028:5;12010:24;:::i;:::-;11999:35;;11989:51;;;:::o;12046:90::-;12080:7;12123:5;12116:13;12109:21;12098:32;;12088:48;;;:::o;12142:126::-;12179:7;12219:42;12212:5;12208:54;12197:65;;12187:81;;;:::o;12274:77::-;12311:7;12340:5;12329:16;;12319:32;;;:::o;12357:86::-;12392:7;12432:4;12425:5;12421:16;12410:27;;12400:43;;;:::o;12449:307::-;12517:1;12527:113;12541:6;12538:1;12535:13;12527:113;;;12626:1;12621:3;12617:11;12611:18;12607:1;12602:3;12598:11;12591:39;12563:2;12560:1;12556:10;12551:15;;12527:113;;;12658:6;12655:1;12652:13;12649:2;;;12738:1;12729:6;12724:3;12720:16;12713:27;12649:2;12498:258;;;;:::o;12762:320::-;12806:6;12843:1;12837:4;12833:12;12823:22;;12890:1;12884:4;12880:12;12911:18;12901:2;;12967:4;12959:6;12955:17;12945:27;;12901:2;13029;13021:6;13018:14;12998:18;12995:38;12992:2;;;13048:18;;:::i;:::-;12992:2;12813:269;;;;:::o;13088:233::-;13127:3;13150:24;13168:5;13150:24;:::i;:::-;13141:33;;13196:66;13189:5;13186:77;13183:2;;;13266:18;;:::i;:::-;13183:2;13313:1;13306:5;13302:13;13295:20;;13131:190;;;:::o;13327:180::-;13375:77;13372:1;13365:88;13472:4;13469:1;13462:15;13496:4;13493:1;13486:15;13513:180;13561:77;13558:1;13551:88;13658:4;13655:1;13648:15;13682:4;13679:1;13672:15;13699:102;13740:6;13791:2;13787:7;13782:2;13775:5;13771:14;13767:28;13757:38;;13747:54;;;:::o;13807:222::-;13947:34;13943:1;13935:6;13931:14;13924:58;14016:5;14011:2;14003:6;13999:15;13992:30;13913:116;:::o;14035:247::-;14175:34;14171:1;14163:6;14159:14;14152:58;14244:30;14239:2;14231:6;14227:15;14220:55;14141:141;:::o;14288:225::-;14428:34;14424:1;14416:6;14412:14;14405:58;14497:8;14492:2;14484:6;14480:15;14473:33;14394:119;:::o;14519:221::-;14659:34;14655:1;14647:6;14643:14;14636:58;14728:4;14723:2;14715:6;14711:15;14704:29;14625:115;:::o;14746:182::-;14886:34;14882:1;14874:6;14870:14;14863:58;14852:76;:::o;14934:224::-;15074:34;15070:1;15062:6;15058:14;15051:58;15143:7;15138:2;15130:6;15126:15;15119:32;15040:118;:::o;15164:223::-;15304:34;15300:1;15292:6;15288:14;15281:58;15373:6;15368:2;15360:6;15356:15;15349:31;15270:117;:::o;15393:220::-;15533:34;15529:1;15521:6;15517:14;15510:58;15602:3;15597:2;15589:6;15585:15;15578:28;15499:114;:::o;15619:122::-;15692:24;15710:5;15692:24;:::i;:::-;15685:5;15682:35;15672:2;;15731:1;15728;15721:12;15672:2;15662:79;:::o;15747:122::-;15820:24;15838:5;15820:24;:::i;:::-;15813:5;15810:35;15800:2;;15859:1;15856;15849:12;15800:2;15790:79;:::o

Swarm Source

ipfs://9f88a07a25ea48ecd725706e448b85d8fe25d6a1deb606ce37f770d42f948001

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.