ETH Price: $2,598.14 (-2.94%)
Gas: 6 Gwei

Token

MuskMMA (MuskMMA)
 

Overview

Max Total Supply

247,200,000,000 MuskMMA

Holders

71

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
333,527,438.821841408 MuskMMA

Value
$0.00
0xdfec2d2db79989a1060643a6c759779e163049fd
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:
MuskMMA

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-12
*/

// SPDX-License-Identifier: MIT                                                                               
                                                    
pragma solidity ^0.8.9;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    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 setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `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);
}

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 ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @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}.
     *
     * 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}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(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);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    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 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 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 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 swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        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 getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    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);
}

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

contract MuskMMA is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public maxWallet;
    uint8 private _decimals;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    bool public rescueSwap = false;
    
    uint256 public tradingActiveBlock;
        
    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyDevFee;
    
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellDevFee;
    
    uint256 public tokensForMarketing;
    uint256 public tokensForDev;
    
    /******************/

    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
    
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);
    
    event buyBackWalletUpdated(address indexed newWallet, address indexed oldWallet);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event BuyBackTriggered(uint256 amount);
    
    event OwnerForcedSwapBack(uint256 timestamp);

    constructor() ERC20("MuskMMA", "MuskMMA") {

        address _owner = 0x6D3CDf6e4756D8f0021f44A2b8c0aA6dB2124C20;

        _decimals = 9;

        uint256 totalSupply = 247200000000 * (10**_decimals);
        
        maxTransactionAmount = totalSupply * 1 / 100; // 1% maxTransactionAmountTxn
        maxWallet = totalSupply * 1 / 100; // 1% maxWallet

        buyMarketingFee = 1;
        buyDevFee = 0;
        buyTotalFees = buyMarketingFee + buyDevFee;
        
        sellMarketingFee = 0;
        sellDevFee = 1;
        sellTotalFees = sellMarketingFee + sellDevFee;

        marketingWallet = address(0xFe89275f1D084EA120B2D93455dbb8b6493A637b); // set as marketing wallet
    	devWallet = address(0x7488D423762165E52c73D3443E0801857F146260); // set as dev wallet


        address currentRouter;
        
        //Adding Variables for all the routers for easier deployment for our customers.
        if (block.chainid == 56) {
            currentRouter = 0x10ED43C718714eb63d5aA57B78B54704E256024E; // PCS Router
        } else if (block.chainid == 97) {
            currentRouter = 0xD99D1c33F9fC3444f8101754aBC46c52416550D1; // PCS Testnet
        } else if (block.chainid == 43114) {
            currentRouter = 0x60aE616a2155Ee3d9A68541Ba4544862310933d4; //Avax Mainnet
        } else if (block.chainid == 137) {
            currentRouter = 0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff; //Polygon Ropsten
        } else if (block.chainid == 250) {
            currentRouter = 0xF491e7B69E4244ad4002BC14e878a34207E38c29; //SpookySwap FTM
        } else if (block.chainid == 3) {
            currentRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //Ropsten
        } else if (block.chainid == 1 || block.chainid == 4) {
            currentRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //Mainnet
        } else {
            revert();
        }

        //End of Router Variables.

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(currentRouter);

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(_owner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        
        excludeFromMaxTransaction(_owner, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(_owner, totalSupply);
        transferOwnership(_owner);
    }

    receive() external payable {

  	}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        tradingActiveBlock = block.number;
    }
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
    
    function airdropToWallets(address[] memory airdropWallets, uint256[] memory amounts) external onlyOwner returns (bool){
        require(!tradingActive, "Trading is already active, cannot airdrop after launch.");
        require(airdropWallets.length == amounts.length, "arrays must be the same length");
        require(airdropWallets.length < 200, "Can only airdrop 200 wallets per txn due to gas limits"); // allows for airdrop + launch at the same exact time, reducing delays and reducing sniper input.
        for(uint256 i = 0; i < airdropWallets.length; i++){
            address wallet = airdropWallets[i];
            uint256 amount = amounts[i];
            _transfer(msg.sender, wallet, amount);
        }
        return true;
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function decimals() public view override returns (uint8) {
        return _decimals;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    // only use this to disable swapback and send tax in form of tokens
    function updateRescueSwap(bool enabled) external onlyOwner(){
        rescueSwap = enabled;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }
    
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        if(!tradingActive){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
        }
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !(_isExcludedFromFees[from] || _isExcludedFromFees[to]) &&
                !swapping
            ){
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else {
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        
		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance > 0;

        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            
            swapBack();

            swapping = false;
        }
        
        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            
            if(tradingActiveBlock == block.number && (automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from])){
                fees = amount.mul(99).div(100);
                tokensForMarketing += fees * 33 / 99;
            }
            // on sell
            else if (automatedMarketMakerPairs[to]){
                if (sellTotalFees > 0){
                    fees = amount.mul(sellTotalFees).div(100);
                    tokensForDev += fees * sellDevFee / sellTotalFees;
                    tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
                }
            }
            // on buy
            else if(automatedMarketMakerPairs[from]) {
                if (buyTotalFees > 0){
                    fees = amount.mul(buyTotalFees).div(100);
                    tokensForDev += fees * buyDevFee / buyTotalFees;
                    tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
                }
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
        	
        	amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        try uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        ) {} catch {}
        
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        try uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        ) {} catch {}
    }

    function resetTaxAmount() public onlyOwner {
        tokensForMarketing = 0;
        tokensForDev = 0;
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));

        if (rescueSwap){
            if (contractBalance > 0){
                super._transfer(address(this), marketingWallet, contractBalance);
            }
            return;
        }

        uint256 totalTokensToSwap =  tokensForMarketing + tokensForDev ;
        bool success;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
        
        // Halve the amount of liquidity tokens
        uint256 amountToSwapForETH = contractBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        
        swapTokensForEth(amountToSwapForETH); 

        if (balanceOf(address(this))>0){
            super._transfer(address(this), devWallet, balanceOf(address(this)));
        }        
                
        tokensForMarketing = 0;
        tokensForDev = 0;
                
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
        
    }
}

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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuyBackTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"buyBackWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"airdropWallets","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropToWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"resetTaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateRescueSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805464ffffffff0019166101001790553480156200002357600080fd5b506040805180820182526007808252664d75736b4d4d4160c81b602080840182815285518087019096529285528401528151919291620000669160039162000904565b5080516200007c90600490602084019062000904565b5050506000620000916200052360201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000906000805160206200304f833981519152908290a350600a805460ff191660099081178255736d3cdf6e4756d8f0021f44a2b8c0aa6db2124c2091600091620001019162000abd565b620001129064398e44a80062000ad5565b905060646200012382600162000ad5565b6200012f919062000af7565b60085560646200014182600162000ad5565b6200014d919062000af7565b6009556001600d8190556000600e819055620001699162000b1a565b600c556000601081905560016011819055620001859162000b1a565b600f55600680546001600160a01b031990811673fe89275f1d084ea120b2d93455dbb8b6493a637b1790915560078054909116737488d423762165e52c73d3443e0801857f14626017905560006038461415620001f857507310ed43c718714eb63d5aa57b78b54704e256024e620002ee565b46606114156200021e575073d99d1c33f9fc3444f8101754abc46c52416550d1620002ee565b4661a86a14156200024557507360ae616a2155ee3d9a68541ba4544862310933d4620002ee565b46608914156200026b575073a5e0829caced8ffdd4de3c43696c57f7d7a678ff620002ee565b4660fa141562000291575073f491e7b69e4244ad4002bc14e878a34207e38c29620002ee565b4660031415620002b75750737a250d5630b4cf539739df2c5dacb4c659f2488d620002ee565b4660011480620002c75750466004145b15620002e95750737a250d5630b4cf539739df2c5dacb4c659f2488d620002ee565b600080fd5b80620002fc81600162000527565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200034257600080fd5b505afa15801562000357573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037d919062000b35565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003c657600080fd5b505afa158015620003db573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000401919062000b35565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200044a57600080fd5b505af11580156200045f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000485919062000b35565b6001600160a01b031660a0819052620004a090600162000527565b60a051620004b0906001620005a1565b620004bd846001620005f5565b620004ca306001620005f5565b620004d961dead6001620005f5565b620004e684600162000527565b620004f330600162000527565b6200050261dead600162000527565b6200050e84846200069f565b62000519846200079b565b5050505062000b9d565b3390565b6005546001600160a01b03163314620005765760405162461bcd60e51b815260206004820181905260248201526000805160206200302f83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620006405760405162461bcd60e51b815260206004820181905260248201526000805160206200302f83398151915260448201526064016200056d565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006f75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200056d565b62000713816002546200089860201b620010291790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620007469183906200102962000898821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620007e65760405162461bcd60e51b815260206004820181905260248201526000805160206200302f83398151915260448201526064016200056d565b6001600160a01b0381166200084d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200056d565b6005546040516001600160a01b038084169216906000805160206200304f83398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080620008a7838562000b1a565b905083811015620008fb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200056d565b90505b92915050565b828054620009129062000b60565b90600052602060002090601f01602090048101928262000936576000855562000981565b82601f106200095157805160ff191683800117855562000981565b8280016001018555821562000981579182015b828111156200098157825182559160200191906001019062000964565b506200098f92915062000993565b5090565b5b808211156200098f576000815560010162000994565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000a01578160001904821115620009e557620009e5620009aa565b80851615620009f357918102915b93841c9390800290620009c5565b509250929050565b60008262000a1a57506001620008fe565b8162000a2957506000620008fe565b816001811462000a42576002811462000a4d5762000a6d565b6001915050620008fe565b60ff84111562000a615762000a61620009aa565b50506001821b620008fe565b5060208310610133831016604e8410600b841016171562000a92575081810a620008fe565b62000a9e8383620009c0565b806000190482111562000ab55762000ab5620009aa565b029392505050565b600062000ace60ff84168362000a09565b9392505050565b600081600019048311821515161562000af25762000af2620009aa565b500290565b60008262000b1557634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000b305762000b30620009aa565b500190565b60006020828403121562000b4857600080fd5b81516001600160a01b0381168114620008fb57600080fd5b600181811c9082168062000b7557607f821691505b6020821081141562000b9757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161245062000bdf600039600081816104380152610da501526000818161031f01528181611c9d01528181611d650152611da101526124506000f3fe6080604052600436106102765760003560e01c80637dd72e8d1161014f578063a0d82dc5116100c1578063c8c8ebe41161007a578063c8c8ebe414610759578063d85ba0631461076f578063dd62ed3e14610785578063ee40166e146107cb578063f2fde38b146107e1578063f8b45b051461080157600080fd5b8063a0d82dc514610693578063a457c2d7146106a9578063a9059cbb146106c9578063b62496f5146106e9578063bbc0c74214610719578063c02466681461073957600080fd5b8063924de9b711610113578063924de9b7146105f2578063955b225b1461061257806395d89b41146106325780639a7a23d6146106475780639c3b4fdc146106675780639fccce321461067d57600080fd5b80637dd72e8d146105745780638a8c523c146105895780638da5cb5b1461059e5780638ea5220f146105bc57806392136913146105dc57600080fd5b806349bd5a5e116101e857806370a08231116101ac57806370a08231146104d2578063715018a6146104f2578063751039fc146105095780637571336a1461051e57806375f0a8741461053e5780637bce5a041461055e57600080fd5b806349bd5a5e146104265780634a62bb651461045a5780634c24c51d146104795780636a486a8e1461049b5780636ddd1713146104b157600080fd5b80631f3fed8f1161023a5780631f3fed8f146103785780632307b4411461038e57806323b872dd146103ae57806327c8f835146103ce578063313ce567146103e4578063395093511461040657600080fd5b806306fdde0314610282578063095ea7b3146102ad57806310d5de53146102dd5780631694505e1461030d57806318160ddd1461035957600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610817565b6040516102a49190611e40565b60405180910390f35b3480156102b957600080fd5b506102cd6102c8366004611eaa565b6108a9565b60405190151581526020016102a4565b3480156102e957600080fd5b506102cd6102f8366004611ed6565b60156020526000908152604090205460ff1681565b34801561031957600080fd5b506103417f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102a4565b34801561036557600080fd5b506002545b6040519081526020016102a4565b34801561038457600080fd5b5061036a60125481565b34801561039a57600080fd5b506102cd6103a9366004611fc9565b6108c0565b3480156103ba57600080fd5b506102cd6103c936600461208b565b610aa8565b3480156103da57600080fd5b5061034161dead81565b3480156103f057600080fd5b50600a5460405160ff90911681526020016102a4565b34801561041257600080fd5b506102cd610421366004611eaa565b610b07565b34801561043257600080fd5b506103417f000000000000000000000000000000000000000000000000000000000000000081565b34801561046657600080fd5b50600a546102cd90610100900460ff1681565b34801561048557600080fd5b50600a546102cd90640100000000900460ff1681565b3480156104a757600080fd5b5061036a600f5481565b3480156104bd57600080fd5b50600a546102cd906301000000900460ff1681565b3480156104de57600080fd5b5061036a6104ed366004611ed6565b610b3d565b3480156104fe57600080fd5b50610507610b58565b005b34801561051557600080fd5b506102cd610bcc565b34801561052a57600080fd5b506105076105393660046120e1565b610c0a565b34801561054a57600080fd5b50600654610341906001600160a01b031681565b34801561056a57600080fd5b5061036a600d5481565b34801561058057600080fd5b50610507610c5f565b34801561059557600080fd5b50610507610c95565b3480156105aa57600080fd5b506005546001600160a01b0316610341565b3480156105c857600080fd5b50600754610341906001600160a01b031681565b3480156105e857600080fd5b5061036a60105481565b3480156105fe57600080fd5b5061050761060d366004612116565b610cd8565b34801561061e57600080fd5b5061050761062d366004612116565b610d20565b34801561063e57600080fd5b50610297610d6a565b34801561065357600080fd5b506105076106623660046120e1565b610d79565b34801561067357600080fd5b5061036a600e5481565b34801561068957600080fd5b5061036a60135481565b34801561069f57600080fd5b5061036a60115481565b3480156106b557600080fd5b506102cd6106c4366004611eaa565b610e59565b3480156106d557600080fd5b506102cd6106e4366004611eaa565b610ea8565b3480156106f557600080fd5b506102cd610704366004611ed6565b60166020526000908152604090205460ff1681565b34801561072557600080fd5b50600a546102cd9062010000900460ff1681565b34801561074557600080fd5b506105076107543660046120e1565b610eb5565b34801561076557600080fd5b5061036a60085481565b34801561077b57600080fd5b5061036a600c5481565b34801561079157600080fd5b5061036a6107a0366004612131565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107d757600080fd5b5061036a600b5481565b3480156107ed57600080fd5b506105076107fc366004611ed6565b610f3e565b34801561080d57600080fd5b5061036a60095481565b6060600380546108269061216a565b80601f01602080910402602001604051908101604052809291908181526020018280546108529061216a565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b60006108b633848461108f565b5060015b92915050565b6005546000906001600160a01b031633146108f65760405162461bcd60e51b81526004016108ed906121a5565b60405180910390fd5b600a5462010000900460ff16156109755760405162461bcd60e51b815260206004820152603760248201527f54726164696e6720697320616c7265616479206163746976652c2063616e6e6f60448201527f742061697264726f70206166746572206c61756e63682e00000000000000000060648201526084016108ed565b81518351146109c65760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e677468000060448201526064016108ed565b60c8835110610a365760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203230302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b60648201526084016108ed565b60005b8351811015610a9e576000848281518110610a5657610a566121da565b602002602001015190506000848381518110610a7457610a746121da565b60200260200101519050610a893383836111b4565b50508080610a9690612206565b915050610a39565b5060019392505050565b6000610ab58484846111b4565b610a9e8433610b02856040518060600160405280602881526020016123ce602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906118d2565b61108f565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108b6918590610b029086611029565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610b825760405162461bcd60e51b81526004016108ed906121a5565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610bf95760405162461bcd60e51b81526004016108ed906121a5565b50600a805461ff0019169055600190565b6005546001600160a01b03163314610c345760405162461bcd60e51b81526004016108ed906121a5565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c895760405162461bcd60e51b81526004016108ed906121a5565b60006012819055601355565b6005546001600160a01b03163314610cbf5760405162461bcd60e51b81526004016108ed906121a5565b600a805463ffff00001916630101000017905543600b55565b6005546001600160a01b03163314610d025760405162461bcd60e51b81526004016108ed906121a5565b600a805491151563010000000263ff00000019909216919091179055565b6005546001600160a01b03163314610d4a5760405162461bcd60e51b81526004016108ed906121a5565b600a80549115156401000000000264ff0000000019909216919091179055565b6060600480546108269061216a565b6005546001600160a01b03163314610da35760405162461bcd60e51b81526004016108ed906121a5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610e4b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016108ed565b610e55828261190c565b5050565b60006108b63384610b02856040518060600160405280602581526020016123f6602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906118d2565b60006108b63384846111b4565b6005546001600160a01b03163314610edf5760405162461bcd60e51b81526004016108ed906121a5565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f685760405162461bcd60e51b81526004016108ed906121a5565b6001600160a01b038116610fcd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ed565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110368385612221565b9050838110156110885760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108ed565b9392505050565b6001600160a01b0383166110f15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108ed565b6001600160a01b0382166111525760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108ed565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166111da5760405162461bcd60e51b81526004016108ed90612239565b6001600160a01b0382166112005760405162461bcd60e51b81526004016108ed9061227e565b600a5462010000900460ff16611294576001600160a01b03831660009081526014602052604090205460ff168061124f57506001600160a01b03821660009081526014602052604090205460ff165b6112945760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108ed565b806112aa576112a583836000611960565b505050565b600a54610100900460ff161561159a576005546001600160a01b038481169116148015906112e657506005546001600160a01b03838116911614155b80156112fa57506001600160a01b03821615155b801561131157506001600160a01b03821661dead14155b801561135957506001600160a01b03831660009081526014602052604090205460ff168061135757506001600160a01b03821660009081526014602052604090205460ff165b155b801561136f5750600554600160a01b900460ff16155b1561159a576001600160a01b03831660009081526016602052604090205460ff1680156113b557506001600160a01b03821660009081526015602052604090205460ff16155b156114895760085481111561142a5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108ed565b60095461143683610b3d565b6114409083612221565b11156114845760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ed565b61159a565b6001600160a01b03821660009081526016602052604090205460ff1680156114ca57506001600160a01b03831660009081526015602052604090205460ff16155b15611540576008548111156114845760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108ed565b60095461154c83610b3d565b6115569083612221565b111561159a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ed565b60006115a530610b3d565b9050801580159081906115c15750600a546301000000900460ff165b80156115d75750600554600160a01b900460ff16155b80156115fc57506001600160a01b03851660009081526016602052604090205460ff16155b801561162157506001600160a01b03851660009081526014602052604090205460ff16155b801561164657506001600160a01b03841660009081526014602052604090205460ff16155b15611674576005805460ff60a01b1916600160a01b179055611666611a69565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526014602052604090205460ff600160a01b9092048216159116806116c257506001600160a01b03851660009081526014602052604090205460ff165b156116cb575060005b600081156118be5743600b5414801561171e57506001600160a01b03861660009081526016602052604090205460ff168061171e57506001600160a01b03871660009081526016602052604090205460ff165b1561176e576117396064611733876063611b85565b90611c04565b905060636117488260216122c1565b61175291906122e0565b601260008282546117639190612221565b909155506118a09050565b6001600160a01b03861660009081526016602052604090205460ff16156117f957600f54156117f4576117b16064611733600f5488611b8590919063ffffffff16565b9050600f54601154826117c491906122c1565b6117ce91906122e0565b601360008282546117df9190612221565b9091555050600f5460105461174890836122c1565b6118a0565b6001600160a01b03871660009081526016602052604090205460ff16156118a057600c54156118a05761183c6064611733600c5488611b8590919063ffffffff16565b9050600c54600e548261184f91906122c1565b61185991906122e0565b6013600082825461186a9190612221565b9091555050600c54600d5461187f90836122c1565b61188991906122e0565b6012600082825461189a9190612221565b90915550505b80156118b1576118b1873083611960565b6118bb8186612302565b94505b6118c9878787611960565b50505050505050565b600081848411156118f65760405162461bcd60e51b81526004016108ed9190611e40565b5060006119038486612302565b95945050505050565b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119865760405162461bcd60e51b81526004016108ed90612239565b6001600160a01b0382166119ac5760405162461bcd60e51b81526004016108ed9061227e565b6119e9816040518060600160405280602681526020016123a8602691396001600160a01b03861660009081526020819052604090205491906118d2565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611a189082611029565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016111a7565b6000611a7430610b3d565b600a54909150640100000000900460ff1615611aab578015611aa857600654611aa89030906001600160a01b031683611960565b50565b6000601354601254611abd9190612221565b90506000821580611acc575081155b15611ad657505050565b6000611af18361173360125487611b8590919063ffffffff16565b9050611afc81611c46565b6000611b0730610b3d565b1115611b2d57600754611b2d9030906001600160a01b0316611b2882610b3d565b611960565b6000601281905560138190556006546040516001600160a01b039091169147919081818185875af1925050503d80600081146118c9576040519150601f19603f3d011682016040523d82523d6000602084013e6118c9565b600082611b94575060006108ba565b6000611ba083856122c1565b905082611bad85836122e0565b146110885760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108ed565b600061108883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e12565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c7b57611c7b6121da565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611cf457600080fd5b505afa158015611d08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2c9190612319565b81600181518110611d3f57611d3f6121da565b60200260200101906001600160a01b031690816001600160a01b031681525050611d8a307f00000000000000000000000000000000000000000000000000000000000000008461108f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611ddf908590600090869030904290600401612336565b600060405180830381600087803b158015611df957600080fd5b505af1925050508015611e0a575060015b610e55575050565b60008183611e335760405162461bcd60e51b81526004016108ed9190611e40565b50600061190384866122e0565b600060208083528351808285015260005b81811015611e6d57858101830151858201604001528201611e51565b81811115611e7f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611aa857600080fd5b60008060408385031215611ebd57600080fd5b8235611ec881611e95565b946020939093013593505050565b600060208284031215611ee857600080fd5b813561108881611e95565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611f3257611f32611ef3565b604052919050565b600067ffffffffffffffff821115611f5457611f54611ef3565b5060051b60200190565b600082601f830112611f6f57600080fd5b81356020611f84611f7f83611f3a565b611f09565b82815260059290921b84018101918181019086841115611fa357600080fd5b8286015b84811015611fbe5780358352918301918301611fa7565b509695505050505050565b60008060408385031215611fdc57600080fd5b823567ffffffffffffffff80821115611ff457600080fd5b818501915085601f83011261200857600080fd5b81356020612018611f7f83611f3a565b82815260059290921b8401810191818101908984111561203757600080fd5b948201945b8386101561205e57853561204f81611e95565b8252948201949082019061203c565b9650508601359250508082111561207457600080fd5b5061208185828601611f5e565b9150509250929050565b6000806000606084860312156120a057600080fd5b83356120ab81611e95565b925060208401356120bb81611e95565b929592945050506040919091013590565b803580151581146120dc57600080fd5b919050565b600080604083850312156120f457600080fd5b82356120ff81611e95565b915061210d602084016120cc565b90509250929050565b60006020828403121561212857600080fd5b611088826120cc565b6000806040838503121561214457600080fd5b823561214f81611e95565b9150602083013561215f81611e95565b809150509250929050565b600181811c9082168061217e57607f821691505b6020821081141561219f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561221a5761221a6121f0565b5060010190565b60008219821115612234576122346121f0565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008160001904831182151516156122db576122db6121f0565b500290565b6000826122fd57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015612314576123146121f0565b500390565b60006020828403121561232b57600080fd5b815161108881611e95565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123865784516001600160a01b031683529383019391830191600101612361565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d65042944bf35c289588e5adf538234eecb867794daa2e06d1e71ea562564d7964736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0

Deployed Bytecode

0x6080604052600436106102765760003560e01c80637dd72e8d1161014f578063a0d82dc5116100c1578063c8c8ebe41161007a578063c8c8ebe414610759578063d85ba0631461076f578063dd62ed3e14610785578063ee40166e146107cb578063f2fde38b146107e1578063f8b45b051461080157600080fd5b8063a0d82dc514610693578063a457c2d7146106a9578063a9059cbb146106c9578063b62496f5146106e9578063bbc0c74214610719578063c02466681461073957600080fd5b8063924de9b711610113578063924de9b7146105f2578063955b225b1461061257806395d89b41146106325780639a7a23d6146106475780639c3b4fdc146106675780639fccce321461067d57600080fd5b80637dd72e8d146105745780638a8c523c146105895780638da5cb5b1461059e5780638ea5220f146105bc57806392136913146105dc57600080fd5b806349bd5a5e116101e857806370a08231116101ac57806370a08231146104d2578063715018a6146104f2578063751039fc146105095780637571336a1461051e57806375f0a8741461053e5780637bce5a041461055e57600080fd5b806349bd5a5e146104265780634a62bb651461045a5780634c24c51d146104795780636a486a8e1461049b5780636ddd1713146104b157600080fd5b80631f3fed8f1161023a5780631f3fed8f146103785780632307b4411461038e57806323b872dd146103ae57806327c8f835146103ce578063313ce567146103e4578063395093511461040657600080fd5b806306fdde0314610282578063095ea7b3146102ad57806310d5de53146102dd5780631694505e1461030d57806318160ddd1461035957600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610817565b6040516102a49190611e40565b60405180910390f35b3480156102b957600080fd5b506102cd6102c8366004611eaa565b6108a9565b60405190151581526020016102a4565b3480156102e957600080fd5b506102cd6102f8366004611ed6565b60156020526000908152604090205460ff1681565b34801561031957600080fd5b506103417f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102a4565b34801561036557600080fd5b506002545b6040519081526020016102a4565b34801561038457600080fd5b5061036a60125481565b34801561039a57600080fd5b506102cd6103a9366004611fc9565b6108c0565b3480156103ba57600080fd5b506102cd6103c936600461208b565b610aa8565b3480156103da57600080fd5b5061034161dead81565b3480156103f057600080fd5b50600a5460405160ff90911681526020016102a4565b34801561041257600080fd5b506102cd610421366004611eaa565b610b07565b34801561043257600080fd5b506103417f000000000000000000000000c1e7ef983c24da5d0c150f0d94685debb71f8f1881565b34801561046657600080fd5b50600a546102cd90610100900460ff1681565b34801561048557600080fd5b50600a546102cd90640100000000900460ff1681565b3480156104a757600080fd5b5061036a600f5481565b3480156104bd57600080fd5b50600a546102cd906301000000900460ff1681565b3480156104de57600080fd5b5061036a6104ed366004611ed6565b610b3d565b3480156104fe57600080fd5b50610507610b58565b005b34801561051557600080fd5b506102cd610bcc565b34801561052a57600080fd5b506105076105393660046120e1565b610c0a565b34801561054a57600080fd5b50600654610341906001600160a01b031681565b34801561056a57600080fd5b5061036a600d5481565b34801561058057600080fd5b50610507610c5f565b34801561059557600080fd5b50610507610c95565b3480156105aa57600080fd5b506005546001600160a01b0316610341565b3480156105c857600080fd5b50600754610341906001600160a01b031681565b3480156105e857600080fd5b5061036a60105481565b3480156105fe57600080fd5b5061050761060d366004612116565b610cd8565b34801561061e57600080fd5b5061050761062d366004612116565b610d20565b34801561063e57600080fd5b50610297610d6a565b34801561065357600080fd5b506105076106623660046120e1565b610d79565b34801561067357600080fd5b5061036a600e5481565b34801561068957600080fd5b5061036a60135481565b34801561069f57600080fd5b5061036a60115481565b3480156106b557600080fd5b506102cd6106c4366004611eaa565b610e59565b3480156106d557600080fd5b506102cd6106e4366004611eaa565b610ea8565b3480156106f557600080fd5b506102cd610704366004611ed6565b60166020526000908152604090205460ff1681565b34801561072557600080fd5b50600a546102cd9062010000900460ff1681565b34801561074557600080fd5b506105076107543660046120e1565b610eb5565b34801561076557600080fd5b5061036a60085481565b34801561077b57600080fd5b5061036a600c5481565b34801561079157600080fd5b5061036a6107a0366004612131565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107d757600080fd5b5061036a600b5481565b3480156107ed57600080fd5b506105076107fc366004611ed6565b610f3e565b34801561080d57600080fd5b5061036a60095481565b6060600380546108269061216a565b80601f01602080910402602001604051908101604052809291908181526020018280546108529061216a565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b60006108b633848461108f565b5060015b92915050565b6005546000906001600160a01b031633146108f65760405162461bcd60e51b81526004016108ed906121a5565b60405180910390fd5b600a5462010000900460ff16156109755760405162461bcd60e51b815260206004820152603760248201527f54726164696e6720697320616c7265616479206163746976652c2063616e6e6f60448201527f742061697264726f70206166746572206c61756e63682e00000000000000000060648201526084016108ed565b81518351146109c65760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e677468000060448201526064016108ed565b60c8835110610a365760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203230302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b60648201526084016108ed565b60005b8351811015610a9e576000848281518110610a5657610a566121da565b602002602001015190506000848381518110610a7457610a746121da565b60200260200101519050610a893383836111b4565b50508080610a9690612206565b915050610a39565b5060019392505050565b6000610ab58484846111b4565b610a9e8433610b02856040518060600160405280602881526020016123ce602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906118d2565b61108f565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108b6918590610b029086611029565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610b825760405162461bcd60e51b81526004016108ed906121a5565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610bf95760405162461bcd60e51b81526004016108ed906121a5565b50600a805461ff0019169055600190565b6005546001600160a01b03163314610c345760405162461bcd60e51b81526004016108ed906121a5565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c895760405162461bcd60e51b81526004016108ed906121a5565b60006012819055601355565b6005546001600160a01b03163314610cbf5760405162461bcd60e51b81526004016108ed906121a5565b600a805463ffff00001916630101000017905543600b55565b6005546001600160a01b03163314610d025760405162461bcd60e51b81526004016108ed906121a5565b600a805491151563010000000263ff00000019909216919091179055565b6005546001600160a01b03163314610d4a5760405162461bcd60e51b81526004016108ed906121a5565b600a80549115156401000000000264ff0000000019909216919091179055565b6060600480546108269061216a565b6005546001600160a01b03163314610da35760405162461bcd60e51b81526004016108ed906121a5565b7f000000000000000000000000c1e7ef983c24da5d0c150f0d94685debb71f8f186001600160a01b0316826001600160a01b03161415610e4b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016108ed565b610e55828261190c565b5050565b60006108b63384610b02856040518060600160405280602581526020016123f6602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906118d2565b60006108b63384846111b4565b6005546001600160a01b03163314610edf5760405162461bcd60e51b81526004016108ed906121a5565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f685760405162461bcd60e51b81526004016108ed906121a5565b6001600160a01b038116610fcd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ed565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110368385612221565b9050838110156110885760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108ed565b9392505050565b6001600160a01b0383166110f15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108ed565b6001600160a01b0382166111525760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108ed565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166111da5760405162461bcd60e51b81526004016108ed90612239565b6001600160a01b0382166112005760405162461bcd60e51b81526004016108ed9061227e565b600a5462010000900460ff16611294576001600160a01b03831660009081526014602052604090205460ff168061124f57506001600160a01b03821660009081526014602052604090205460ff165b6112945760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108ed565b806112aa576112a583836000611960565b505050565b600a54610100900460ff161561159a576005546001600160a01b038481169116148015906112e657506005546001600160a01b03838116911614155b80156112fa57506001600160a01b03821615155b801561131157506001600160a01b03821661dead14155b801561135957506001600160a01b03831660009081526014602052604090205460ff168061135757506001600160a01b03821660009081526014602052604090205460ff165b155b801561136f5750600554600160a01b900460ff16155b1561159a576001600160a01b03831660009081526016602052604090205460ff1680156113b557506001600160a01b03821660009081526015602052604090205460ff16155b156114895760085481111561142a5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108ed565b60095461143683610b3d565b6114409083612221565b11156114845760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ed565b61159a565b6001600160a01b03821660009081526016602052604090205460ff1680156114ca57506001600160a01b03831660009081526015602052604090205460ff16155b15611540576008548111156114845760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108ed565b60095461154c83610b3d565b6115569083612221565b111561159a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ed565b60006115a530610b3d565b9050801580159081906115c15750600a546301000000900460ff165b80156115d75750600554600160a01b900460ff16155b80156115fc57506001600160a01b03851660009081526016602052604090205460ff16155b801561162157506001600160a01b03851660009081526014602052604090205460ff16155b801561164657506001600160a01b03841660009081526014602052604090205460ff16155b15611674576005805460ff60a01b1916600160a01b179055611666611a69565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526014602052604090205460ff600160a01b9092048216159116806116c257506001600160a01b03851660009081526014602052604090205460ff165b156116cb575060005b600081156118be5743600b5414801561171e57506001600160a01b03861660009081526016602052604090205460ff168061171e57506001600160a01b03871660009081526016602052604090205460ff165b1561176e576117396064611733876063611b85565b90611c04565b905060636117488260216122c1565b61175291906122e0565b601260008282546117639190612221565b909155506118a09050565b6001600160a01b03861660009081526016602052604090205460ff16156117f957600f54156117f4576117b16064611733600f5488611b8590919063ffffffff16565b9050600f54601154826117c491906122c1565b6117ce91906122e0565b601360008282546117df9190612221565b9091555050600f5460105461174890836122c1565b6118a0565b6001600160a01b03871660009081526016602052604090205460ff16156118a057600c54156118a05761183c6064611733600c5488611b8590919063ffffffff16565b9050600c54600e548261184f91906122c1565b61185991906122e0565b6013600082825461186a9190612221565b9091555050600c54600d5461187f90836122c1565b61188991906122e0565b6012600082825461189a9190612221565b90915550505b80156118b1576118b1873083611960565b6118bb8186612302565b94505b6118c9878787611960565b50505050505050565b600081848411156118f65760405162461bcd60e51b81526004016108ed9190611e40565b5060006119038486612302565b95945050505050565b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119865760405162461bcd60e51b81526004016108ed90612239565b6001600160a01b0382166119ac5760405162461bcd60e51b81526004016108ed9061227e565b6119e9816040518060600160405280602681526020016123a8602691396001600160a01b03861660009081526020819052604090205491906118d2565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611a189082611029565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016111a7565b6000611a7430610b3d565b600a54909150640100000000900460ff1615611aab578015611aa857600654611aa89030906001600160a01b031683611960565b50565b6000601354601254611abd9190612221565b90506000821580611acc575081155b15611ad657505050565b6000611af18361173360125487611b8590919063ffffffff16565b9050611afc81611c46565b6000611b0730610b3d565b1115611b2d57600754611b2d9030906001600160a01b0316611b2882610b3d565b611960565b6000601281905560138190556006546040516001600160a01b039091169147919081818185875af1925050503d80600081146118c9576040519150601f19603f3d011682016040523d82523d6000602084013e6118c9565b600082611b94575060006108ba565b6000611ba083856122c1565b905082611bad85836122e0565b146110885760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108ed565b600061108883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e12565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c7b57611c7b6121da565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611cf457600080fd5b505afa158015611d08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2c9190612319565b81600181518110611d3f57611d3f6121da565b60200260200101906001600160a01b031690816001600160a01b031681525050611d8a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461108f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611ddf908590600090869030904290600401612336565b600060405180830381600087803b158015611df957600080fd5b505af1925050508015611e0a575060015b610e55575050565b60008183611e335760405162461bcd60e51b81526004016108ed9190611e40565b50600061190384866122e0565b600060208083528351808285015260005b81811015611e6d57858101830151858201604001528201611e51565b81811115611e7f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611aa857600080fd5b60008060408385031215611ebd57600080fd5b8235611ec881611e95565b946020939093013593505050565b600060208284031215611ee857600080fd5b813561108881611e95565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611f3257611f32611ef3565b604052919050565b600067ffffffffffffffff821115611f5457611f54611ef3565b5060051b60200190565b600082601f830112611f6f57600080fd5b81356020611f84611f7f83611f3a565b611f09565b82815260059290921b84018101918181019086841115611fa357600080fd5b8286015b84811015611fbe5780358352918301918301611fa7565b509695505050505050565b60008060408385031215611fdc57600080fd5b823567ffffffffffffffff80821115611ff457600080fd5b818501915085601f83011261200857600080fd5b81356020612018611f7f83611f3a565b82815260059290921b8401810191818101908984111561203757600080fd5b948201945b8386101561205e57853561204f81611e95565b8252948201949082019061203c565b9650508601359250508082111561207457600080fd5b5061208185828601611f5e565b9150509250929050565b6000806000606084860312156120a057600080fd5b83356120ab81611e95565b925060208401356120bb81611e95565b929592945050506040919091013590565b803580151581146120dc57600080fd5b919050565b600080604083850312156120f457600080fd5b82356120ff81611e95565b915061210d602084016120cc565b90509250929050565b60006020828403121561212857600080fd5b611088826120cc565b6000806040838503121561214457600080fd5b823561214f81611e95565b9150602083013561215f81611e95565b809150509250929050565b600181811c9082168061217e57607f821691505b6020821081141561219f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561221a5761221a6121f0565b5060010190565b60008219821115612234576122346121f0565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008160001904831182151516156122db576122db6121f0565b500290565b6000826122fd57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015612314576123146121f0565b500390565b60006020828403121561232b57600080fd5b815161108881611e95565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123865784516001600160a01b031683529383019391830191600101612361565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d65042944bf35c289588e5adf538234eecb867794daa2e06d1e71ea562564d7964736f6c63430008090033

Deployed Bytecode Sourcemap

29434:13743:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7590:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9757:169;;;;;;;;;;-1:-1:-1;9757:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;9757:169:0;1072:187:1;30536:64:0;;;;;;;;;;-1:-1:-1;30536:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29511:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;29511:51:0;1516:230:1;8710:108:0;;;;;;;;;;-1:-1:-1;8798:12:0;;8710:108;;;1897:25:1;;;1885:2;1870:18;8710:108:0;1751:177:1;30315:33:0;;;;;;;;;;;;;;;;35068:752;;;;;;;;;;-1:-1:-1;35068:752:0;;;;;:::i;:::-;;:::i;10408:355::-;;;;;;;;;;-1:-1:-1;10408:355:0;;;;;:::i;:::-;;:::i;29614:53::-;;;;;;;;;;;;29660:6;29614:53;;35984:92;;;;;;;;;;-1:-1:-1;36059:9:0;;35984:92;;36059:9;;;;5231:36:1;;5219:2;5204:18;35984:92:0;5089:184:1;11172:218:0;;;;;;;;;;-1:-1:-1;11172:218:0;;;;;:::i;:::-;;:::i;29569:38::-;;;;;;;;;;;;;;;29885:33;;;;;;;;;;-1:-1:-1;29885:33:0;;;;;;;;;;;30003:30;;;;;;;;;;-1:-1:-1;30003:30:0;;;;;;;;;;;30204:28;;;;;;;;;;;;;;;;29965:31;;;;;;;;;;-1:-1:-1;29965:31:0;;;;;;;;;;;8881:127;;;;;;;;;;-1:-1:-1;8881:127:0;;;;;:::i;:::-;;:::i;22055:148::-;;;;;;;;;;;;;:::i;:::-;;34936:120;;;;;;;;;;;;;:::i;35832:144::-;;;;;;;;;;-1:-1:-1;35832:144:0;;;;;:::i;:::-;;:::i;29706:30::-;;;;;;;;;;-1:-1:-1;29706:30:0;;;;-1:-1:-1;;;;;29706:30:0;;;30130;;;;;;;;;;;;;;;;42025:111;;;;;;;;;;;;;:::i;34724:156::-;;;;;;;;;;;;;:::i;21413:79::-;;;;;;;;;;-1:-1:-1;21478:6:0;;-1:-1:-1;;;;;21478:6:0;21413:79;;29743:24;;;;;;;;;;-1:-1:-1;29743:24:0;;;;-1:-1:-1;;;;;29743:24:0;;;30239:31;;;;;;;;;;;;;;;;36176:101;;;;;;;;;;-1:-1:-1;36176:101:0;;;;;:::i;:::-;;:::i;36358:99::-;;;;;;;;;;-1:-1:-1;36358:99:0;;;;;:::i;:::-;;:::i;7809:104::-;;;;;;;;;;;;;:::i;36655:246::-;;;;;;;;;;-1:-1:-1;36655:246:0;;;;;:::i;:::-;;:::i;30167:24::-;;;;;;;;;;;;;;;;30355:27;;;;;;;;;;;;;;;;30277:25;;;;;;;;;;;;;;;;11893:269;;;;;;;;;;-1:-1:-1;11893:269:0;;;;;:::i;:::-;;:::i;9221:175::-;;;;;;;;;;-1:-1:-1;9221:175:0;;;;;:::i;:::-;;:::i;30758:58::-;;;;;;;;;;-1:-1:-1;30758:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29925:33;;;;;;;;;;-1:-1:-1;29925:33:0;;;;;;;;;;;36465:182;;;;;;;;;;-1:-1:-1;36465:182:0;;;;;:::i;:::-;;:::i;29780:35::-;;;;;;;;;;;;;;;;30096:27;;;;;;;;;;;;;;;;9459:151;;;;;;;;;;-1:-1:-1;9459:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9575:18:0;;;9548:7;9575:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9459:151;30046:33;;;;;;;;;;;;;;;;22358:244;;;;;;;;;;-1:-1:-1;22358:244:0;;;;;:::i;:::-;;:::i;29822:24::-;;;;;;;;;;;;;;;;7590:100;7644:13;7677:5;7670:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7590:100;:::o;9757:169::-;9840:4;9857:39;306:10;9880:7;9889:6;9857:8;:39::i;:::-;-1:-1:-1;9914:4:0;9757:169;;;;;:::o;35068:752::-;21625:6;;35181:4;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;;;;;;;;;35206:13:::1;::::0;;;::::1;;;35205:14;35197:82;;;::::0;-1:-1:-1;;;35197:82:0;;7289:2:1;35197:82:0::1;::::0;::::1;7271:21:1::0;7328:2;7308:18;;;7301:30;7367:34;7347:18;;;7340:62;7438:25;7418:18;;;7411:53;7481:19;;35197:82:0::1;7087:419:1::0;35197:82:0::1;35323:7;:14;35298;:21;:39;35290:82;;;::::0;-1:-1:-1;;;35290:82:0;;7713:2:1;35290:82:0::1;::::0;::::1;7695:21:1::0;7752:2;7732:18;;;7725:30;7791:32;7771:18;;;7764:60;7841:18;;35290:82:0::1;7511:354:1::0;35290:82:0::1;35415:3;35391:14;:21;:27;35383:94;;;::::0;-1:-1:-1;;;35383:94:0;;8072:2:1;35383:94:0::1;::::0;::::1;8054:21:1::0;8111:2;8091:18;;;8084:30;8150:34;8130:18;;;8123:62;-1:-1:-1;;;8201:18:1;;;8194:52;8263:19;;35383:94:0::1;7870:418:1::0;35383:94:0::1;35590:9;35586:205;35609:14;:21;35605:1;:25;35586:205;;;35651:14;35668;35683:1;35668:17;;;;;;;;:::i;:::-;;;;;;;35651:34;;35700:14;35717:7;35725:1;35717:10;;;;;;;;:::i;:::-;;;;;;;35700:27;;35742:37;35752:10;35764:6;35772;35742:9;:37::i;:::-;35636:155;;35632:3;;;;;:::i;:::-;;;;35586:205;;;-1:-1:-1::0;35808:4:0::1;::::0;35068:752;-1:-1:-1;;;35068:752:0:o;10408:355::-;10548:4;10565:36;10575:6;10583:9;10594:6;10565:9;:36::i;:::-;10612:121;10621:6;306:10;10643:89;10681:6;10643:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10643:19:0;;;;;;:11;:19;;;;;;;;306:10;10643:33;;;;;;;;;;:37;:89::i;:::-;10612:8;:121::i;11172:218::-;306:10;11260:4;11309:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11309:34:0;;;;;;;;;;11260:4;;11277:83;;11300:7;;11309:50;;11348:10;11309:38;:50::i;8881:127::-;-1:-1:-1;;;;;8982:18:0;8955:7;8982:18;;;;;;;;;;;;8881:127::o;22055:148::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;22146:6:::1;::::0;22125:40:::1;::::0;22162:1:::1;::::0;-1:-1:-1;;;;;22146:6:0::1;::::0;22125:40:::1;::::0;22162:1;;22125:40:::1;22176:6;:19:::0;;-1:-1:-1;;;;;;22176:19:0::1;::::0;;22055:148::o;34936:120::-;21625:6;;34988:4;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;35004:14:0::1;:22:::0;;-1:-1:-1;;35004:22:0::1;::::0;;:14:::1;34936:120:::0;:::o;35832:144::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35922:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;35922:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35832:144::o;42025:111::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;42100:1:::1;42079:18;:22:::0;;;42112:12:::1;:16:::0;42025:111::o;34724:156::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;34779:13:::1;:20:::0;;-1:-1:-1;;34810:18:0;;;;;34860:12:::1;34839:18;:33:::0;34724:156::o;36176:101::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;36248:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;36248:21:0;;::::1;::::0;;;::::1;::::0;;36176:101::o;36358:99::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;36429:10:::1;:20:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;36429:20:0;;::::1;::::0;;;::::1;::::0;;36358:99::o;7809:104::-;7865:13;7898:7;7891:14;;;;;:::i;36655:246::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;36764:13:::1;-1:-1:-1::0;;;;;36756:21:0::1;:4;-1:-1:-1::0;;;;;36756:21:0::1;;;36748:91;;;::::0;-1:-1:-1;;;36748:91:0;;8899:2:1;36748:91:0::1;::::0;::::1;8881:21:1::0;8938:2;8918:18;;;8911:30;8977:34;8957:18;;;8950:62;9048:27;9028:18;;;9021:55;9093:19;;36748:91:0::1;8697:421:1::0;36748:91:0::1;36852:41;36881:4;36887:5;36852:28;:41::i;:::-;36655:246:::0;;:::o;11893:269::-;11986:4;12003:129;306:10;12026:7;12035:96;12074:15;12035:96;;;;;;;;;;;;;;;;;306:10;12035:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12035:34:0;;;;;;;;;;;;:38;:96::i;9221:175::-;9307:4;9324:42;306:10;9348:9;9359:6;9324:9;:42::i;36465:182::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36550:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;36550:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36605:34;;1212:41:1;;;36605:34:0::1;::::0;1185:18:1;36605:34:0::1;;;;;;;36465:182:::0;;:::o;22358:244::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22447:22:0;::::1;22439:73;;;::::0;-1:-1:-1;;;22439:73:0;;9325:2:1;22439:73:0::1;::::0;::::1;9307:21:1::0;9364:2;9344:18;;;9337:30;9403:34;9383:18;;;9376:62;-1:-1:-1;;;9454:18:1;;;9447:36;9500:19;;22439:73:0::1;9123:402:1::0;22439:73:0::1;22549:6;::::0;22528:38:::1;::::0;-1:-1:-1;;;;;22528:38:0;;::::1;::::0;22549:6:::1;::::0;22528:38:::1;::::0;22549:6:::1;::::0;22528:38:::1;22577:6;:17:::0;;-1:-1:-1;;;;;;22577:17:0::1;-1:-1:-1::0;;;;;22577:17:0;;;::::1;::::0;;;::::1;::::0;;22358:244::o;16457:181::-;16515:7;;16547:5;16551:1;16547;:5;:::i;:::-;16535:17;;16576:1;16571;:6;;16563:46;;;;-1:-1:-1;;;16563:46:0;;9865:2:1;16563:46:0;;;9847:21:1;9904:2;9884:18;;;9877:30;9943:29;9923:18;;;9916:57;9990:18;;16563:46:0;9663:351:1;16563:46:0;16629:1;16457:181;-1:-1:-1;;;16457:181:0:o;15079:380::-;-1:-1:-1;;;;;15215:19:0;;15207:68;;;;-1:-1:-1;;;15207:68:0;;10221:2:1;15207:68:0;;;10203:21:1;10260:2;10240:18;;;10233:30;10299:34;10279:18;;;10272:62;-1:-1:-1;;;10350:18:1;;;10343:34;10394:19;;15207:68:0;10019:400:1;15207:68:0;-1:-1:-1;;;;;15294:21:0;;15286:68;;;;-1:-1:-1;;;15286:68:0;;10626:2:1;15286:68:0;;;10608:21:1;10665:2;10645:18;;;10638:30;10704:34;10684:18;;;10677:62;-1:-1:-1;;;10755:18:1;;;10748:32;10797:19;;15286:68:0;10424:398:1;15286:68:0;-1:-1:-1;;;;;15367:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15419:32;;1897:25:1;;;15419:32:0;;1870:18:1;15419:32:0;;;;;;;;15079:380;;;:::o;37109:3740::-;-1:-1:-1;;;;;37241:18:0;;37233:68;;;;-1:-1:-1;;;37233:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37320:16:0;;37312:64;;;;-1:-1:-1;;;37312:64:0;;;;;;;:::i;:::-;37391:13;;;;;;;37387:132;;-1:-1:-1;;;;;37428:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;37457:23:0;;;;;;:19;:23;;;;;;;;37428:52;37420:87;;;;-1:-1:-1;;;37420:87:0;;11839:2:1;37420:87:0;;;11821:21:1;11878:2;11858:18;;;11851:30;-1:-1:-1;;;11897:18:1;;;11890:52;11959:18;;37420:87:0;11637:346:1;37420:87:0;37533:11;37530:92;;37561:28;37577:4;37583:2;37587:1;37561:15;:28::i;:::-;37109:3740;;;:::o;37530:92::-;37645:14;;;;;;;37642:1134;;;21478:6;;-1:-1:-1;;;;;37697:15:0;;;21478:6;;37697:15;;;;:49;;-1:-1:-1;21478:6:0;;-1:-1:-1;;;;;37733:13:0;;;21478:6;;37733:13;;37697:49;:86;;;;-1:-1:-1;;;;;;37767:16:0;;;;37697:86;:128;;;;-1:-1:-1;;;;;;37804:21:0;;37818:6;37804:21;;37697:128;:204;;;;-1:-1:-1;;;;;;37848:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;37877:23:0;;;;;;:19;:23;;;;;;;;37848:52;37846:55;37697:204;:234;;;;-1:-1:-1;37923:8:0;;-1:-1:-1;;;37923:8:0;;;;37922:9;37697:234;37675:1090;;;-1:-1:-1;;;;;38016:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;38052:35:0;;;;;;:31;:35;;;;;;;;38051:36;38016:71;38012:738;;;38134:20;;38124:6;:30;;38116:96;;;;-1:-1:-1;;;38116:96:0;;12190:2:1;38116:96:0;;;12172:21:1;12229:2;12209:18;;;12202:30;12268:34;12248:18;;;12241:62;-1:-1:-1;;;12319:18:1;;;12312:51;12380:19;;38116:96:0;11988:417:1;38116:96:0;38273:9;;38256:13;38266:2;38256:9;:13::i;:::-;38247:22;;:6;:22;:::i;:::-;:35;;38239:67;;;;-1:-1:-1;;;38239:67:0;;12612:2:1;38239:67:0;;;12594:21:1;12651:2;12631:18;;;12624:30;-1:-1:-1;;;12670:18:1;;;12663:49;12729:18;;38239:67:0;12410:343:1;38239:67:0;38012:738;;;-1:-1:-1;;;;;38400:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;38434:37:0;;;;;;:31;:37;;;;;;;;38433:38;38400:71;38396:354;;;38518:20;;38508:6;:30;;38500:97;;;;-1:-1:-1;;;38500:97:0;;12960:2:1;38500:97:0;;;12942:21:1;12999:2;12979:18;;;12972:30;13038:34;13018:18;;;13011:62;-1:-1:-1;;;13089:18:1;;;13082:52;13151:19;;38500:97:0;12758:418:1;38396:354:0;38697:9;;38680:13;38690:2;38680:9;:13::i;:::-;38671:22;;:6;:22;:::i;:::-;:35;;38663:67;;;;-1:-1:-1;;;38663:67:0;;12612:2:1;38663:67:0;;;12594:21:1;12651:2;12631:18;;;12624:30;-1:-1:-1;;;12670:18:1;;;12663:49;12729:18;;38663:67:0;12410:343:1;38663:67:0;38790:28;38821:24;38839:4;38821:9;:24::i;:::-;38790:55;-1:-1:-1;38881:24:0;;;;;;;38936:35;;-1:-1:-1;38960:11:0;;;;;;;38936:35;:61;;;;-1:-1:-1;38989:8:0;;-1:-1:-1;;;38989:8:0;;;;38988:9;38936:61;:110;;;;-1:-1:-1;;;;;;39015:31:0;;;;;;:25;:31;;;;;;;;39014:32;38936:110;:153;;;;-1:-1:-1;;;;;;39064:25:0;;;;;;:19;:25;;;;;;;;39063:26;38936:153;:194;;;;-1:-1:-1;;;;;;39107:23:0;;;;;;:19;:23;;;;;;;;39106:24;38936:194;38918:338;;;39157:8;:15;;-1:-1:-1;;;;39157:15:0;-1:-1:-1;;;39157:15:0;;;39201:10;:8;:10::i;:::-;39228:8;:16;;-1:-1:-1;;;;39228:16:0;;;38918:338;39292:8;;-1:-1:-1;;;;;39401:25:0;;39276:12;39401:25;;;39292:8;39401:25;;;;;;39292:8;-1:-1:-1;;;39292:8:0;;;;;39291:9;;39401:25;;:52;;-1:-1:-1;;;;;;39430:23:0;;;;;;:19;:23;;;;;;;;39401:52;39398:99;;;-1:-1:-1;39480:5:0;39398:99;39517:12;39621:7;39618:1178;;;39683:12;39661:18;;:34;:104;;;;-1:-1:-1;;;;;;39700:29:0;;;;;;:25;:29;;;;;;;;;:64;;-1:-1:-1;;;;;;39733:31:0;;;;;;:25;:31;;;;;;;;39700:64;39658:969;;;39792:23;39811:3;39792:14;:6;39803:2;39792:10;:14::i;:::-;:18;;:23::i;:::-;39785:30;-1:-1:-1;39868:2:0;39856:9;39785:30;39863:2;39856:9;:::i;:::-;:14;;;;:::i;:::-;39834:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;39658:969:0;;-1:-1:-1;39658:969:0;;-1:-1:-1;;;;;39933:29:0;;;;;;:25;:29;;;;;;;;39929:698;;;39986:13;;:17;39982:262;;40034:34;40064:3;40034:25;40045:13;;40034:6;:10;;:25;;;;:::i;:34::-;40027:41;;40127:13;;40114:10;;40107:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;40091:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;40211:13:0;;40192:16;;40185:23;;:4;:23;:::i;39982:262::-;39929:698;;;-1:-1:-1;;;;;40304:31:0;;;;;;:25;:31;;;;;;;;40301:326;;;40360:12;;:16;40356:256;;40407:33;40436:3;40407:24;40418:12;;40407:6;:10;;:24;;;;:::i;:33::-;40400:40;;40498:12;;40486:9;;40479:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;40463:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;40580:12:0;;40562:15;;40555:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;40533:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;40356:256:0;40658:8;;40655:93;;40690:42;40706:4;40720;40727;40690:15;:42::i;:::-;40770:14;40780:4;40770:14;;:::i;:::-;;;39618:1178;40808:33;40824:4;40830:2;40834:6;40808:15;:33::i;:::-;37222:3627;;;;37109:3740;;;:::o;17360:192::-;17446:7;17482:12;17474:6;;;;17466:29;;;;-1:-1:-1;;;17466:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17506:9:0;17518:5;17522:1;17518;:5;:::i;:::-;17506:17;17360:192;-1:-1:-1;;;;;17360:192:0:o;36913:188::-;-1:-1:-1;;;;;36996:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;36996:39:0;;;;;;;;;;37053:40;;36996:39;;:31;37053:40;;;36913:188;;:::o;12652:573::-;-1:-1:-1;;;;;12792:20:0;;12784:70;;;;-1:-1:-1;;;12784:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12873:23:0;;12865:71;;;;-1:-1:-1;;;12865:71:0;;;;;;;:::i;:::-;13029;13051:6;13029:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13029:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13009:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13134:20;;;;;;;:32;;13159:6;13134:24;:32::i;:::-;-1:-1:-1;;;;;13111:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13182:35;1897:25:1;;;13111:20:0;;13182:35;;;;;;1870:18:1;13182:35:0;1751:177:1;42144:1030:0;42183:23;42209:24;42227:4;42209:9;:24::i;:::-;42250:10;;42183:50;;-1:-1:-1;42250:10:0;;;;;42246:185;;;42280:19;;42276:123;;42350:15;;42319:64;;42343:4;;-1:-1:-1;;;;;42350:15:0;42367;42319;:64::i;:::-;42413:7;42144:1030::o;42246:185::-;42443:25;42493:12;;42472:18;;:33;;;;:::i;:::-;42443:62;-1:-1:-1;42517:12:0;42553:20;;;:46;;-1:-1:-1;42577:22:0;;42553:46;42550:60;;;42602:7;;;42144:1030::o;42550:60::-;42679:26;42708:62;42752:17;42708:39;42728:18;;42708:15;:19;;:39;;;;:::i;:62::-;42679:91;;42791:36;42808:18;42791:16;:36::i;:::-;42870:1;42845:24;42863:4;42845:9;:24::i;:::-;:26;42841:125;;;42918:9;;42887:67;;42911:4;;-1:-1:-1;;;;;42918:9:0;42929:24;42911:4;42929:9;:24::i;:::-;42887:15;:67::i;:::-;43023:1;43002:18;:22;;;43035:12;:16;;;43101:15;;43093:63;;-1:-1:-1;;;;;43101:15:0;;;;43130:21;;43093:63;;43023:1;43093:63;43130:21;43101:15;43093:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17811:471;17869:7;18114:6;18110:47;;-1:-1:-1;18144:1:0;18137:8;;18110:47;18169:9;18181:5;18185:1;18181;:5;:::i;:::-;18169:17;-1:-1:-1;18214:1:0;18205:5;18209:1;18169:17;18205:5;:::i;:::-;:10;18197:56;;;;-1:-1:-1;;;18197:56:0;;14118:2:1;18197:56:0;;;14100:21:1;14157:2;14137:18;;;14130:30;14196:34;14176:18;;;14169:62;-1:-1:-1;;;14247:18:1;;;14240:31;14288:19;;18197:56:0;13916:397:1;18758:132:0;18816:7;18843:39;18847:1;18850;18843:39;;;;;;;;;;;;;;;;;:3;:39::i;40857:616::-;41009:16;;;41023:1;41009:16;;;;;;;;40985:21;;41009:16;;;;;;;;;;-1:-1:-1;41009:16:0;40985:40;;41054:4;41036;41041:1;41036:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41036:23:0;;;-1:-1:-1;;;;;41036:23:0;;;;;41080:15;-1:-1:-1;;;;;41080:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41070:4;41075:1;41070:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;41070:32:0;;;-1:-1:-1;;;;;41070:32:0;;;;;41115:62;41132:4;41147:15;41165:11;41115:8;:62::i;:::-;41220:224;;-1:-1:-1;;;41220:224:0;;-1:-1:-1;;;;;41220:15:0;:66;;;;:224;;41301:11;;41327:1;;41371:4;;41398;;41418:15;;41220:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41216:240;;36655:246;;:::o;19386:278::-;19472:7;19507:12;19500:5;19492:28;;;;-1:-1:-1;;;19492:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19531:9:0;19543:5;19547:1;19543;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:127::-;1994:10;1989:3;1985:20;1982:1;1975:31;2025:4;2022:1;2015:15;2049:4;2046:1;2039:15;2065:275;2136:2;2130:9;2201:2;2182:13;;-1:-1:-1;;2178:27:1;2166:40;;2236:18;2221:34;;2257:22;;;2218:62;2215:88;;;2283:18;;:::i;:::-;2319:2;2312:22;2065:275;;-1:-1:-1;2065:275:1:o;2345:183::-;2405:4;2438:18;2430:6;2427:30;2424:56;;;2460:18;;:::i;:::-;-1:-1:-1;2505:1:1;2501:14;2517:4;2497:25;;2345:183::o;2533:662::-;2587:5;2640:3;2633:4;2625:6;2621:17;2617:27;2607:55;;2658:1;2655;2648:12;2607:55;2694:6;2681:20;2720:4;2744:60;2760:43;2800:2;2760:43;:::i;:::-;2744:60;:::i;:::-;2838:15;;;2924:1;2920:10;;;;2908:23;;2904:32;;;2869:12;;;;2948:15;;;2945:35;;;2976:1;2973;2966:12;2945:35;3012:2;3004:6;3000:15;3024:142;3040:6;3035:3;3032:15;3024:142;;;3106:17;;3094:30;;3144:12;;;;3057;;3024:142;;;-1:-1:-1;3184:5:1;2533:662;-1:-1:-1;;;;;;2533:662:1:o;3200:1215::-;3318:6;3326;3379:2;3367:9;3358:7;3354:23;3350:32;3347:52;;;3395:1;3392;3385:12;3347:52;3435:9;3422:23;3464:18;3505:2;3497:6;3494:14;3491:34;;;3521:1;3518;3511:12;3491:34;3559:6;3548:9;3544:22;3534:32;;3604:7;3597:4;3593:2;3589:13;3585:27;3575:55;;3626:1;3623;3616:12;3575:55;3662:2;3649:16;3684:4;3708:60;3724:43;3764:2;3724:43;:::i;3708:60::-;3802:15;;;3884:1;3880:10;;;;3872:19;;3868:28;;;3833:12;;;;3908:19;;;3905:39;;;3940:1;3937;3930:12;3905:39;3964:11;;;;3984:217;4000:6;3995:3;3992:15;3984:217;;;4080:3;4067:17;4097:31;4122:5;4097:31;:::i;:::-;4141:18;;4017:12;;;;4179;;;;3984:217;;;4220:5;-1:-1:-1;;4263:18:1;;4250:32;;-1:-1:-1;;4294:16:1;;;4291:36;;;4323:1;4320;4313:12;4291:36;;4346:63;4401:7;4390:8;4379:9;4375:24;4346:63;:::i;:::-;4336:73;;;3200:1215;;;;;:::o;4420:456::-;4497:6;4505;4513;4566:2;4554:9;4545:7;4541:23;4537:32;4534:52;;;4582:1;4579;4572:12;4534:52;4621:9;4608:23;4640:31;4665:5;4640:31;:::i;:::-;4690:5;-1:-1:-1;4747:2:1;4732:18;;4719:32;4760:33;4719:32;4760:33;:::i;:::-;4420:456;;4812:7;;-1:-1:-1;;;4866:2:1;4851:18;;;;4838:32;;4420:456::o;5278:160::-;5343:20;;5399:13;;5392:21;5382:32;;5372:60;;5428:1;5425;5418:12;5372:60;5278:160;;;:::o;5443:315::-;5508:6;5516;5569:2;5557:9;5548:7;5544:23;5540:32;5537:52;;;5585:1;5582;5575:12;5537:52;5624:9;5611:23;5643:31;5668:5;5643:31;:::i;:::-;5693:5;-1:-1:-1;5717:35:1;5748:2;5733:18;;5717:35;:::i;:::-;5707:45;;5443:315;;;;;:::o;5763:180::-;5819:6;5872:2;5860:9;5851:7;5847:23;5843:32;5840:52;;;5888:1;5885;5878:12;5840:52;5911:26;5927:9;5911:26;:::i;5948:388::-;6016:6;6024;6077:2;6065:9;6056:7;6052:23;6048:32;6045:52;;;6093:1;6090;6083:12;6045:52;6132:9;6119:23;6151:31;6176:5;6151:31;:::i;:::-;6201:5;-1:-1:-1;6258:2:1;6243:18;;6230:32;6271:33;6230:32;6271:33;:::i;:::-;6323:7;6313:17;;;5948:388;;;;;:::o;6341:380::-;6420:1;6416:12;;;;6463;;;6484:61;;6538:4;6530:6;6526:17;6516:27;;6484:61;6591:2;6583:6;6580:14;6560:18;6557:38;6554:161;;;6637:10;6632:3;6628:20;6625:1;6618:31;6672:4;6669:1;6662:15;6700:4;6697:1;6690:15;6554:161;;6341:380;;;:::o;6726:356::-;6928:2;6910:21;;;6947:18;;;6940:30;7006:34;7001:2;6986:18;;6979:62;7073:2;7058:18;;6726:356::o;8293:127::-;8354:10;8349:3;8345:20;8342:1;8335:31;8385:4;8382:1;8375:15;8409:4;8406:1;8399:15;8425:127;8486:10;8481:3;8477:20;8474:1;8467:31;8517:4;8514:1;8507:15;8541:4;8538:1;8531:15;8557:135;8596:3;-1:-1:-1;;8617:17:1;;8614:43;;;8637:18;;:::i;:::-;-1:-1:-1;8684:1:1;8673:13;;8557:135::o;9530:128::-;9570:3;9601:1;9597:6;9594:1;9591:13;9588:39;;;9607:18;;:::i;:::-;-1:-1:-1;9643:9:1;;9530:128::o;10827:401::-;11029:2;11011:21;;;11068:2;11048:18;;;11041:30;11107:34;11102:2;11087:18;;11080:62;-1:-1:-1;;;11173:2:1;11158:18;;11151:35;11218:3;11203:19;;10827:401::o;11233:399::-;11435:2;11417:21;;;11474:2;11454:18;;;11447:30;11513:34;11508:2;11493:18;;11486:62;-1:-1:-1;;;11579:2:1;11564:18;;11557:33;11622:3;11607:19;;11233:399::o;13181:168::-;13221:7;13287:1;13283;13279:6;13275:14;13272:1;13269:21;13264:1;13257:9;13250:17;13246:45;13243:71;;;13294:18;;:::i;:::-;-1:-1:-1;13334:9:1;;13181:168::o;13354:217::-;13394:1;13420;13410:132;;13464:10;13459:3;13455:20;13452:1;13445:31;13499:4;13496:1;13489:15;13527:4;13524:1;13517:15;13410:132;-1:-1:-1;13556:9:1;;13354:217::o;13576:125::-;13616:4;13644:1;13641;13638:8;13635:34;;;13649:18;;:::i;:::-;-1:-1:-1;13686:9:1;;13576:125::o;14318:251::-;14388:6;14441:2;14429:9;14420:7;14416:23;14412:32;14409:52;;;14457:1;14454;14447:12;14409:52;14489:9;14483:16;14508:31;14533:5;14508:31;:::i;14574:980::-;14836:4;14884:3;14873:9;14869:19;14915:6;14904:9;14897:25;14941:2;14979:6;14974:2;14963:9;14959:18;14952:34;15022:3;15017:2;15006:9;15002:18;14995:31;15046:6;15081;15075:13;15112:6;15104;15097:22;15150:3;15139:9;15135:19;15128:26;;15189:2;15181:6;15177:15;15163:29;;15210:1;15220:195;15234:6;15231:1;15228:13;15220:195;;;15299:13;;-1:-1:-1;;;;;15295:39:1;15283:52;;15390:15;;;;15355:12;;;;15331:1;15249:9;15220:195;;;-1:-1:-1;;;;;;;15471:32:1;;;;15466:2;15451:18;;15444:60;-1:-1:-1;;;15535:3:1;15520:19;15513:35;15432:3;14574:980;-1:-1:-1;;;14574:980:1:o

Swarm Source

ipfs://d65042944bf35c289588e5adf538234eecb867794daa2e06d1e71ea562564d79
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.