ETH Price: $2,634.26 (+0.20%)
Gas: 2 Gwei

Token

QueenTama (QUEENTAMA)
 

Overview

Max Total Supply

1,000,000,000 QUEENTAMA

Holders

75

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
3,964,479.773198526 QUEENTAMA

Value
$0.00
0xEdF1Dd81a78431405C7fc42009f21c05d49abb10
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:
QUEENTAMA

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-07
*/

/*

Website: https://queentama.com/

TG: https://t.me/QueentamaOfficial

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, 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_) public {
        _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 9;
    }

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

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

    address public constant DEAD_ADDRESS = address(0xdead);
    IUniswapV2Router02 public constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    uint256 public buyLiquidityFee = 3;
    uint256 public sellLiquidityFee = 3;
    uint256 public buyTxFee = 9;
    uint256 public sellTxFee = 9;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTax;

    uint256 public _tTotal = 10**9 * 10**9;                         // 1 billion
    uint256 public swapAtAmount = _tTotal.mul(10).div(10000);       // 0.10% of total supply
    uint256 public maxTxLimit = _tTotal.mul(75).div(10000);         // 0.75% of total supply
    uint256 public maxWalletLimit = _tTotal.mul(150).div(10000);    // 1.50% of total supply

    address public dev;
    address public immutable deployer;
    address public uniswapV2Pair;

    uint256 private launchBlock;
    bool private swapping;
    bool public isLaunched;

    // exclude from fees
    mapping (address => bool) public isExcludedFromFees;

    // exclude from max transaction amount
    mapping (address => bool) public isExcludedFromTxLimit;

    // exclude from max wallet limit
    mapping (address => bool) public isExcludedFromWalletLimit;

    // if the account is blacklisted from transacting
    mapping (address => bool) public isBlacklisted;


    constructor(address _dev) public ERC20("QueenTama", "QUEENTAMA") {

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _approve(address(this), address(uniswapV2Router), type(uint256).max);


        // exclude from fees, wallet limit and transaction limit
        excludeFromAllLimits(owner(), true);
        excludeFromAllLimits(address(this), true);
        excludeFromWalletLimit(uniswapV2Pair, true);

        dev = _dev;
        deployer = _msgSender();

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), _tTotal);
    }

    function excludeFromFees(address account, bool value) public onlyOwner() {
        require(isExcludedFromFees[account] != value, "Fees: Already set to this value");
        isExcludedFromFees[account] = value;
    }

    function excludeFromTxLimit(address account, bool value) public onlyOwner() {
        require(isExcludedFromTxLimit[account] != value, "TxLimit: Already set to this value");
        isExcludedFromTxLimit[account] = value;
    }

    function excludeFromWalletLimit(address account, bool value) public onlyOwner() {
        require(isExcludedFromWalletLimit[account] != value, "WalletLimit: Already set to this value");
        isExcludedFromWalletLimit[account] = value;
    }

    function excludeFromAllLimits(address account, bool value) public onlyOwner() {
        excludeFromFees(account, value);
        excludeFromTxLimit(account, value);
        excludeFromWalletLimit(account, value);
    }

    function setBuyFee(uint256 liquidityFee, uint256 txFee) external onlyOwner() {
        buyLiquidityFee = liquidityFee;
        buyTxFee = txFee;
    }

    function setSellFee(uint256 liquidityFee, uint256 txFee) external onlyOwner() {
        sellLiquidityFee = liquidityFee;
        sellTxFee = txFee;
    }

    function setMaxTxLimit(uint256 newLimit) external onlyOwner() {
        maxTxLimit = newLimit * (10**9);
    }

    function setMaxWalletLimit(uint256 newLimit) external onlyOwner() {
        maxWalletLimit = newLimit * (10**9);
    }

    function setSwapAtAmount(uint256 amountToSwap) external onlyOwner() {
        swapAtAmount = amountToSwap * (10**9);
    }

    function updateDevWallet(address newWallet) external onlyOwner() {
        dev = newWallet;
    }

    function addBlacklist(address account) external onlyOwner() {
        require(!isBlacklisted[account], "Blacklist: Already blacklisted");
        require(account != uniswapV2Pair, "Cannot blacklist pair");
        _setBlacklist(account, true);
    }

    function removeBlacklist(address account) external onlyOwner() {
        require(isBlacklisted[account], "Blacklist: Not blacklisted");
        _setBlacklist(account, false);
    }

    function launchNow() external onlyOwner() {
        require(!isLaunched, "Contract is already launched");
        isLaunched = true;
        launchBlock = block.number;
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "transfer from the zero address");
        require(to != address(0), "transfer to the zero address");
        require(amount <= maxTxLimit || isExcludedFromTxLimit[from] || isExcludedFromTxLimit[to], "Tx Amount too large");
        require(balanceOf(to).add(amount) <= maxWalletLimit || isExcludedFromWalletLimit[to], "Transfer will exceed wallet limit");
        require(isLaunched || isExcludedFromFees[from] || isExcludedFromFees[to], "Waiting to go live");
        require(!isBlacklisted[from], "Sender is blacklisted");

        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        uint256 totalTokensForFee = tokensForLiquidity + tokensForTax;
        bool canSwap = totalTokensForFee >= swapAtAmount;

        if(
            from != uniswapV2Pair &&
            canSwap &&
            !swapping
        ) {
            swapping = true;
            swapBack(totalTokensForFee);
            swapping = false;
        } else if(
            from == uniswapV2Pair &&
            to != uniswapV2Pair &&
            block.number < launchBlock + 2 &&
            !isExcludedFromFees[to]
        ) {
            _setBlacklist(to, true);
        }

        bool takeFee = !swapping;

        if(isExcludedFromFees[from] || isExcludedFromFees[to]) {
            takeFee = false;
        }

        if(takeFee) {
            uint256 fees;
            // on sell
            if (to == uniswapV2Pair) {
                uint256 sellTotalFees = sellLiquidityFee.add(sellTxFee);
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = tokensForLiquidity.add(fees.mul(sellLiquidityFee).div(sellTotalFees));
                tokensForTax = tokensForTax.add(fees.mul(sellTxFee).div(sellTotalFees));
            }
            // on buy & wallet transfers
            else {
                uint256 buyTotalFees = buyLiquidityFee.add(buyTxFee);
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = tokensForLiquidity.add(fees.mul(buyLiquidityFee).div(buyTotalFees));
                tokensForTax = tokensForTax.add(fees.mul(buyTxFee).div(buyTotalFees));
            }

            if(fees > 0){
                super._transfer(from, address(this), fees);
                amount = amount.sub(fees);
            }
        }

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

    function swapBack(uint256 totalTokensForFee) private {
        uint256 toSwap = swapAtAmount;

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = toSwap.mul(tokensForLiquidity).div(totalTokensForFee).div(2);
        uint256 taxTokens = toSwap.sub(liquidityTokens).sub(liquidityTokens);
        uint256 amountToSwapForETH = toSwap.sub(liquidityTokens);

        _swapTokensForETH(amountToSwapForETH);

        uint256 ethBalance = address(this).balance;
        uint256 ethForTax = ethBalance.mul(taxTokens).div(amountToSwapForETH);
        uint256 ethForLiquidity = ethBalance.sub(ethForTax);

        tokensForLiquidity = tokensForLiquidity.sub(liquidityTokens.mul(2));
        tokensForTax = tokensForTax.sub(toSwap.sub(liquidityTokens.mul(2)));

        payable(address(dev)).transfer(ethForTax);
        _addLiquidity(liquidityTokens, ethForLiquidity);
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            deployer,
            block.timestamp
        );
    }

    function _swapTokensForETH(uint256 tokenAmount) private {

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _setBlacklist(address account, bool value) internal {
        isBlacklisted[account] = value;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_dev","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromWalletLimit","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":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTxLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"txFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setMaxTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"txFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToSwap","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405260036006556003600755600960085560098055670de0b6b3a7640000600c556200005b61271062000047600a600c546200040960201b620018051790919060201c565b6200047060201b620018651790919060201c565b600d556200008261271062000047604b600c546200040960201b620018051790919060201c565b600e55620000a9612710620000476096600c546200040960201b620018051790919060201c565b600f55348015620000b957600080fd5b50604051620034443803806200344483398181016040526020811015620000df57600080fd5b5051604080518082018252600980825268517565656e54616d6160b81b6020838101918252845180860190955291845268515545454e54414d4160b81b918401919091528151919291620001369160039162000b21565b5080516200014c90600490602084019062000b21565b505050600062000161620004ba60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001fd57600080fd5b505afa15801562000212573d6000803e3d6000fd5b505050506040513d60208110156200022957600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039092169163c9c65396913091737a250d5630b4cf539739df2c5dacb4c659f2488d9163ad5c4648916004808301926020929190829003018186803b1580156200028b57600080fd5b505afa158015620002a0573d6000803e3d6000fd5b505050506040513d6020811015620002b757600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200030a57600080fd5b505af11580156200031f573d6000803e3d6000fd5b505050506040513d60208110156200033657600080fd5b5051601180546001600160a01b0319166001600160a01b039092169190911790556200037a30737a250d5630b4cf539739df2c5dacb4c659f2488d600019620004be565b6200039062000388620005ae565b6001620005bd565b6200039d306001620005bd565b601154620003b6906001600160a01b0316600162000641565b601080546001600160a01b0319166001600160a01b038316179055620003db620004ba565b60601b6001600160601b03191660805262000402620003f9620005ae565b600c5462000728565b5062000bbd565b6000826200041a575060006200046a565b828202828482816200042857fe5b0414620004675760405162461bcd60e51b8152600401808060200182810382526021815260200180620033b96021913960400191505060405180910390fd5b90505b92915050565b60006200046783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200083760201b60201c565b3390565b6001600160a01b038316620005055760405162461bcd60e51b8152600401808060200182810382526024815260200180620033fa6024913960400191505060405180910390fd5b6001600160a01b0382166200054c5760405162461bcd60e51b8152600401808060200182810382526022815260200180620033756022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6005546001600160a01b031690565b620005c7620004ba565b6005546001600160a01b0390811691161462000619576040805162461bcd60e51b81526020600482018190526024820152600080516020620033da833981519152604482015290519081900360640190fd5b620006258282620008de565b620006318282620009da565b6200063d828262000641565b5050565b6200064b620004ba565b6005546001600160a01b039081169116146200069d576040805162461bcd60e51b81526020600482018190526024820152600080516020620033da833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff1615158115151415620006fd5760405162461bcd60e51b81526004018080602001828103825260268152602001806200341e6026913960400191505060405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6001600160a01b03821662000784576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620007926000838362000ac1565b620007ae8160025462000ac660201b620018a71790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620007e1918390620018a762000ac6821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183620008c75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200088b57818101518382015260200162000871565b50505050905090810190601f168015620008b95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581620008d457fe5b0495945050505050565b620008e8620004ba565b6005546001600160a01b039081169116146200093a576040805162461bcd60e51b81526020600482018190526024820152600080516020620033da833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff1615158115151415620009af576040805162461bcd60e51b815260206004820152601f60248201527f466565733a20416c72656164792073657420746f20746869732076616c756500604482015290519081900360640190fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b620009e4620004ba565b6005546001600160a01b0390811691161462000a36576040805162461bcd60e51b81526020600482018190526024820152600080516020620033da833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526015602052604090205460ff161515811515141562000a965760405162461bcd60e51b8152600401808060200182810382526022815260200180620033976022913960400191505060405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b505050565b60008282018381101562000467576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000b6457805160ff191683800117855562000b94565b8280016001018555821562000b94579182015b8281111562000b9457825182559160200191906001019062000b77565b5062000ba292915062000ba6565b5090565b5b8082111562000ba2576000815560010162000ba7565b60805160601c61279562000be06000398061148452806124e952506127956000f3fe60806040526004361061028c5760003560e01c80638036d5901161015a578063c0246668116100c1578063eb91e6511161007a578063eb91e6511461094e578063f11a24d314610981578063f2fde38b14610996578063f6374342146109c9578063fb0ecfa4146109de578063fe575a8714610a0e57610293565b8063c024666814610838578063cd49513f14610873578063d5f39488146108ae578063dd62ed3e146108c3578063e16830a8146108fe578063e9b786cb1461093957610293565b80639cfe42da116101135780639cfe42da14610718578063a457c2d71461074b578063a9059cbb14610784578063af465a27146107bd578063b40f9469146107d2578063bf95793d1461080557610293565b80638036d5901461069a57806386917524146106af5780638da5cb5b146106c4578063904236d1146106d957806391cca3db146106ee57806395d89b411461070357610293565b806349bd5a5e116101fe5780636ac9a870116101b75780636ac9a870146105ce5780636d7adcad146105fe57806370a0823114610613578063715018a614610646578063715492aa1461065b578063728d41c91461067057610293565b806349bd5a5e146105085780634e6fd6c41461051d5780634fbee193146105325780636402511e1461056557806364f5a5bb1461058f57806366a88d96146105b957610293565b80631a8145bb116102505780631a8145bb146103fc57806323b872dd1461041157806330280a7114610454578063307aebc91461048f578063313ce567146104a457806339509351146104cf57610293565b806306fdde0314610298578063095ea7b3146103225780631694505e1461036f57806318160ddd146103a05780631816467f146103c757610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610a41565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032e57600080fd5b5061035b6004803603604081101561034557600080fd5b506001600160a01b038135169060200135610ad7565b604080519115158252519081900360200190f35b34801561037b57600080fd5b50610384610af5565b604080516001600160a01b039092168252519081900360200190f35b3480156103ac57600080fd5b506103b5610b0d565b60408051918252519081900360200190f35b3480156103d357600080fd5b506103fa600480360360208110156103ea57600080fd5b50356001600160a01b0316610b13565b005b34801561040857600080fd5b506103b5610b8d565b34801561041d57600080fd5b5061035b6004803603606081101561043457600080fd5b506001600160a01b03813581169160208101359091169060400135610b93565b34801561046057600080fd5b506103fa6004803603604081101561047757600080fd5b506001600160a01b0381351690602001351515610c1a565b34801561049b57600080fd5b5061035b610cfb565b3480156104b057600080fd5b506104b9610d09565b6040805160ff9092168252519081900360200190f35b3480156104db57600080fd5b5061035b600480360360408110156104f257600080fd5b506001600160a01b038135169060200135610d0e565b34801561051457600080fd5b50610384610d5c565b34801561052957600080fd5b50610384610d6b565b34801561053e57600080fd5b5061035b6004803603602081101561055557600080fd5b50356001600160a01b0316610d71565b34801561057157600080fd5b506103fa6004803603602081101561058857600080fd5b5035610d86565b34801561059b57600080fd5b506103fa600480360360208110156105b257600080fd5b5035610de9565b3480156105c557600080fd5b506103b5610e4c565b3480156105da57600080fd5b506103fa600480360360408110156105f157600080fd5b5080359060200135610e52565b34801561060a57600080fd5b506103b5610eb5565b34801561061f57600080fd5b506103b56004803603602081101561063657600080fd5b50356001600160a01b0316610ebb565b34801561065257600080fd5b506103fa610ed6565b34801561066757600080fd5b506103fa610f78565b34801561067c57600080fd5b506103fa6004803603602081101561069357600080fd5b5035611042565b3480156106a657600080fd5b506103b56110a5565b3480156106bb57600080fd5b506103b56110ab565b3480156106d057600080fd5b506103846110b1565b3480156106e557600080fd5b506103b56110c0565b3480156106fa57600080fd5b506103846110c6565b34801561070f57600080fd5b506102ad6110d5565b34801561072457600080fd5b506103fa6004803603602081101561073b57600080fd5b50356001600160a01b0316611136565b34801561075757600080fd5b5061035b6004803603604081101561076e57600080fd5b506001600160a01b038135169060200135611265565b34801561079057600080fd5b5061035b600480360360408110156107a757600080fd5b506001600160a01b0381351690602001356112cd565b3480156107c957600080fd5b506103b56112e1565b3480156107de57600080fd5b5061035b600480360360208110156107f557600080fd5b50356001600160a01b03166112e7565b34801561081157600080fd5b5061035b6004803603602081101561082857600080fd5b50356001600160a01b03166112fc565b34801561084457600080fd5b506103fa6004803603604081101561085b57600080fd5b506001600160a01b0381351690602001351515611311565b34801561087f57600080fd5b506103fa6004803603604081101561089657600080fd5b506001600160a01b0381351690602001351515611408565b3480156108ba57600080fd5b50610384611482565b3480156108cf57600080fd5b506103b5600480360360408110156108e657600080fd5b506001600160a01b03813581169160200135166114a6565b34801561090a57600080fd5b506103fa6004803603604081101561092157600080fd5b506001600160a01b03813516906020013515156114d1565b34801561094557600080fd5b506103b56115b2565b34801561095a57600080fd5b506103fa6004803603602081101561097157600080fd5b50356001600160a01b03166115b8565b34801561098d57600080fd5b506103b5611688565b3480156109a257600080fd5b506103fa600480360360208110156109b957600080fd5b50356001600160a01b031661168e565b3480156109d557600080fd5b506103b5611787565b3480156109ea57600080fd5b506103fa60048036036040811015610a0157600080fd5b508035906020013561178d565b348015610a1a57600080fd5b5061035b60048036036020811015610a3157600080fd5b50356001600160a01b03166117f0565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b6000610aeb610ae4611901565b8484611905565b5060015b92915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b60025490565b610b1b611901565b6005546001600160a01b03908116911614610b6b576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600a5481565b6000610ba08484846119f1565b610c1084610bac611901565b610c0b85604051806060016040528060288152602001612663602891396001600160a01b038a16600090815260016020526040812090610bea611901565b6001600160a01b031681526020810191909152604001600020549190611f28565b611905565b5060019392505050565b610c22611901565b6005546001600160a01b03908116911614610c72576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526015602052604090205460ff1615158115151415610cd05760405162461bcd60e51b81526004018080602001828103825260228152602001806126206022913960400191505060405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b601354610100900460ff1681565b600990565b6000610aeb610d1b611901565b84610c0b8560016000610d2c611901565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906118a7565b6011546001600160a01b031681565b61dead81565b60146020526000908152604090205460ff1681565b610d8e611901565b6005546001600160a01b03908116911614610dde576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b633b9aca0002600d55565b610df1611901565b6005546001600160a01b03908116911614610e41576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b633b9aca0002600e55565b600f5481565b610e5a611901565b6005546001600160a01b03908116911614610eaa576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b600791909155600955565b600b5481565b6001600160a01b031660009081526020819052604090205490565b610ede611901565b6005546001600160a01b03908116911614610f2e576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b610f80611901565b6005546001600160a01b03908116911614610fd0576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b601354610100900460ff161561102d576040805162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420697320616c7265616479206c61756e6368656400000000604482015290519081900360640190fd5b6013805461ff00191661010017905543601255565b61104a611901565b6005546001600160a01b0390811691161461109a576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b633b9aca0002600f55565b600e5481565b600d5481565b6005546001600160a01b031690565b60095481565b6010546001600160a01b031681565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610acd5780601f10610aa257610100808354040283529160200191610acd565b61113e611901565b6005546001600160a01b0390811691161461118e576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526017602052604090205460ff16156111fc576040805162461bcd60e51b815260206004820152601e60248201527f426c61636b6c6973743a20416c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6011546001600160a01b0382811691161415611257576040805162461bcd60e51b815260206004820152601560248201527421b0b73737ba10313630b1b5b634b9ba103830b4b960591b604482015290519081900360640190fd5b611262816001611fbf565b50565b6000610aeb611272611901565b84610c0b8560405180606001604052806025815260200161273b602591396001600061129c611901565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611f28565b6000610aeb6112da611901565b84846119f1565b600c5481565b60166020526000908152604090205460ff1681565b60156020526000908152604090205460ff1681565b611319611901565b6005546001600160a01b03908116911614611369576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff16151581151514156113dd576040805162461bcd60e51b815260206004820152601f60248201527f466565733a20416c72656164792073657420746f20746869732076616c756500604482015290519081900360640190fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b611410611901565b6005546001600160a01b03908116911614611460576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b61146a8282611311565b6114748282610c1a565b61147e82826114d1565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6114d9611901565b6005546001600160a01b03908116911614611529576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff16151581151514156115875760405162461bcd60e51b81526004018080602001828103825260268152602001806127156026913960400191505060405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60085481565b6115c0611901565b6005546001600160a01b03908116911614611610576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526017602052604090205460ff1661167d576040805162461bcd60e51b815260206004820152601a60248201527f426c61636b6c6973743a204e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b611262816000611fbf565b60065481565b611696611901565b6005546001600160a01b039081169116146116e6576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b6001600160a01b03811661172b5760405162461bcd60e51b81526004018080602001828103825260268152602001806125b26026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60075481565b611795611901565b6005546001600160a01b039081169116146117e5576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b600691909155600855565b60176020526000908152604090205460ff1681565b60008261181457506000610aef565b8282028284828161182157fe5b041461185e5760405162461bcd60e51b81526004018080602001828103825260218152602001806126426021913960400191505060405180910390fd5b9392505050565b600061185e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611fea565b60008282018381101561185e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b03831661194a5760405162461bcd60e51b81526004018080602001828103825260248152602001806126f16024913960400191505060405180910390fd5b6001600160a01b03821661198f5760405162461bcd60e51b81526004018080602001828103825260228152602001806125d86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611a4c576040805162461bcd60e51b815260206004820152601e60248201527f7472616e736665722066726f6d20746865207a65726f20616464726573730000604482015290519081900360640190fd5b6001600160a01b038216611aa7576040805162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f206164647265737300000000604482015290519081900360640190fd5b600e5481111580611ad057506001600160a01b03831660009081526015602052604090205460ff165b80611af357506001600160a01b03821660009081526015602052604090205460ff165b611b3a576040805162461bcd60e51b8152602060048201526013602482015272547820416d6f756e7420746f6f206c6172676560681b604482015290519081900360640190fd5b600f54611b5082611b4a85610ebb565b906118a7565b111580611b7557506001600160a01b03821660009081526016602052604090205460ff165b611bb05760405162461bcd60e51b81526004018080602001828103825260218152602001806126ab6021913960400191505060405180910390fd5b601354610100900460ff1680611bde57506001600160a01b03831660009081526014602052604090205460ff165b80611c0157506001600160a01b03821660009081526014602052604090205460ff165b611c47576040805162461bcd60e51b815260206004820152601260248201527157616974696e6720746f20676f206c69766560701b604482015290519081900360640190fd5b6001600160a01b03831660009081526017602052604090205460ff1615611cad576040805162461bcd60e51b815260206004820152601560248201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b604482015290519081900360640190fd5b80611cc357611cbe8383600061204f565b611f23565b600b54600a54600d546011549190920191821015906001600160a01b03868116911614801590611cf05750805b8015611cff575060135460ff16155b15611d29576013805460ff19166001179055611d1a826121aa565b6013805460ff19169055611d99565b6011546001600160a01b038681169116148015611d5457506011546001600160a01b03858116911614155b8015611d64575060125460020143105b8015611d8957506001600160a01b03841660009081526014602052604090205460ff16155b15611d9957611d99846001611fbf565b6013546001600160a01b03861660009081526014602052604090205460ff91821615911680611de057506001600160a01b03851660009081526014602052604090205460ff165b15611de9575060005b8015611f14576011546000906001600160a01b0387811691161415611e8c576000611e216009546007546118a790919063ffffffff16565b9050611e386064611e328884611805565b90611865565b9150611e5f611e5682611e326007548661180590919063ffffffff16565b600a54906118a7565b600a55600954611e8390611e7a908390611e32908690611805565b600b54906118a7565b600b5550611ef4565b6000611ea56008546006546118a790919063ffffffff16565b9050611eb66064611e328884611805565b9150611ed4611e5682611e326006548661180590919063ffffffff16565b600a55600854611eef90611e7a908390611e32908690611805565b600b55505b8015611f1257611f0587308361204f565b611f0f85826122b0565b94505b505b611f1f86868661204f565b5050505b505050565b60008184841115611fb75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f7c578181015183820152602001611f64565b50505050905090810190601f168015611fa95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b600081836120395760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611f7c578181015183820152602001611f64565b50600083858161204557fe5b0495945050505050565b6001600160a01b0383166120945760405162461bcd60e51b81526004018080602001828103825260258152602001806126cc6025913960400191505060405180910390fd5b6001600160a01b0382166120d95760405162461bcd60e51b815260040180806020018281038252602381526020018061258f6023913960400191505060405180910390fd5b6120e4838383611f23565b612121816040518060600160405280602681526020016125fa602691396001600160a01b0386166000908152602081905260409020549190611f28565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461215090826118a7565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000600d54905060006121d16002611e3285611e32600a548761180590919063ffffffff16565b905060006121e9826121e385826122b0565b906122b0565b905060006121f784846122b0565b9050612202816122f2565b47600061221383611e328487611805565b9050600061222183836122b0565b905061223a612231876002611805565b600a54906122b0565b600a5561225e61225561224e886002611805565b89906122b0565b600b54906122b0565b600b556010546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561229b573d6000803e3d6000fd5b506122a686826124be565b5050505050505050565b600061185e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f28565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061232057fe5b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561238d57600080fd5b505afa1580156123a1573d6000803e3d6000fd5b505050506040513d60208110156123b757600080fd5b50518151829060019081106123c857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612481578181015183820152602001612469565b505050509050019650505050505050600060405180830381600087803b1580156124aa57600080fd5b505af1158015611f1f573d6000803e3d6000fd5b6040805163f305d71960e01b81523060048201526024810184905260006044820181905260648201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031660848201524260a48201529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163f305d71991849160c48082019260609290919082900301818588803b15801561255d57600080fd5b505af1158015612571573d6000803e3d6000fd5b50505050506040513d606081101561258857600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e736665722077696c6c206578636565642077616c6c6574206c696d697445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c756545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122010488004fa6a8a6a6e8b4aefd6b8e89de159895b2ec0c8ac6aa154d769ec03f764736f6c634300060c003345524332303a20617070726f766520746f20746865207a65726f206164647265737354784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c7565000000000000000000000000add6894a7354d60317b73906ebda6f7e17c29b26

Deployed Bytecode

0x60806040526004361061028c5760003560e01c80638036d5901161015a578063c0246668116100c1578063eb91e6511161007a578063eb91e6511461094e578063f11a24d314610981578063f2fde38b14610996578063f6374342146109c9578063fb0ecfa4146109de578063fe575a8714610a0e57610293565b8063c024666814610838578063cd49513f14610873578063d5f39488146108ae578063dd62ed3e146108c3578063e16830a8146108fe578063e9b786cb1461093957610293565b80639cfe42da116101135780639cfe42da14610718578063a457c2d71461074b578063a9059cbb14610784578063af465a27146107bd578063b40f9469146107d2578063bf95793d1461080557610293565b80638036d5901461069a57806386917524146106af5780638da5cb5b146106c4578063904236d1146106d957806391cca3db146106ee57806395d89b411461070357610293565b806349bd5a5e116101fe5780636ac9a870116101b75780636ac9a870146105ce5780636d7adcad146105fe57806370a0823114610613578063715018a614610646578063715492aa1461065b578063728d41c91461067057610293565b806349bd5a5e146105085780634e6fd6c41461051d5780634fbee193146105325780636402511e1461056557806364f5a5bb1461058f57806366a88d96146105b957610293565b80631a8145bb116102505780631a8145bb146103fc57806323b872dd1461041157806330280a7114610454578063307aebc91461048f578063313ce567146104a457806339509351146104cf57610293565b806306fdde0314610298578063095ea7b3146103225780631694505e1461036f57806318160ddd146103a05780631816467f146103c757610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610a41565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032e57600080fd5b5061035b6004803603604081101561034557600080fd5b506001600160a01b038135169060200135610ad7565b604080519115158252519081900360200190f35b34801561037b57600080fd5b50610384610af5565b604080516001600160a01b039092168252519081900360200190f35b3480156103ac57600080fd5b506103b5610b0d565b60408051918252519081900360200190f35b3480156103d357600080fd5b506103fa600480360360208110156103ea57600080fd5b50356001600160a01b0316610b13565b005b34801561040857600080fd5b506103b5610b8d565b34801561041d57600080fd5b5061035b6004803603606081101561043457600080fd5b506001600160a01b03813581169160208101359091169060400135610b93565b34801561046057600080fd5b506103fa6004803603604081101561047757600080fd5b506001600160a01b0381351690602001351515610c1a565b34801561049b57600080fd5b5061035b610cfb565b3480156104b057600080fd5b506104b9610d09565b6040805160ff9092168252519081900360200190f35b3480156104db57600080fd5b5061035b600480360360408110156104f257600080fd5b506001600160a01b038135169060200135610d0e565b34801561051457600080fd5b50610384610d5c565b34801561052957600080fd5b50610384610d6b565b34801561053e57600080fd5b5061035b6004803603602081101561055557600080fd5b50356001600160a01b0316610d71565b34801561057157600080fd5b506103fa6004803603602081101561058857600080fd5b5035610d86565b34801561059b57600080fd5b506103fa600480360360208110156105b257600080fd5b5035610de9565b3480156105c557600080fd5b506103b5610e4c565b3480156105da57600080fd5b506103fa600480360360408110156105f157600080fd5b5080359060200135610e52565b34801561060a57600080fd5b506103b5610eb5565b34801561061f57600080fd5b506103b56004803603602081101561063657600080fd5b50356001600160a01b0316610ebb565b34801561065257600080fd5b506103fa610ed6565b34801561066757600080fd5b506103fa610f78565b34801561067c57600080fd5b506103fa6004803603602081101561069357600080fd5b5035611042565b3480156106a657600080fd5b506103b56110a5565b3480156106bb57600080fd5b506103b56110ab565b3480156106d057600080fd5b506103846110b1565b3480156106e557600080fd5b506103b56110c0565b3480156106fa57600080fd5b506103846110c6565b34801561070f57600080fd5b506102ad6110d5565b34801561072457600080fd5b506103fa6004803603602081101561073b57600080fd5b50356001600160a01b0316611136565b34801561075757600080fd5b5061035b6004803603604081101561076e57600080fd5b506001600160a01b038135169060200135611265565b34801561079057600080fd5b5061035b600480360360408110156107a757600080fd5b506001600160a01b0381351690602001356112cd565b3480156107c957600080fd5b506103b56112e1565b3480156107de57600080fd5b5061035b600480360360208110156107f557600080fd5b50356001600160a01b03166112e7565b34801561081157600080fd5b5061035b6004803603602081101561082857600080fd5b50356001600160a01b03166112fc565b34801561084457600080fd5b506103fa6004803603604081101561085b57600080fd5b506001600160a01b0381351690602001351515611311565b34801561087f57600080fd5b506103fa6004803603604081101561089657600080fd5b506001600160a01b0381351690602001351515611408565b3480156108ba57600080fd5b50610384611482565b3480156108cf57600080fd5b506103b5600480360360408110156108e657600080fd5b506001600160a01b03813581169160200135166114a6565b34801561090a57600080fd5b506103fa6004803603604081101561092157600080fd5b506001600160a01b03813516906020013515156114d1565b34801561094557600080fd5b506103b56115b2565b34801561095a57600080fd5b506103fa6004803603602081101561097157600080fd5b50356001600160a01b03166115b8565b34801561098d57600080fd5b506103b5611688565b3480156109a257600080fd5b506103fa600480360360208110156109b957600080fd5b50356001600160a01b031661168e565b3480156109d557600080fd5b506103b5611787565b3480156109ea57600080fd5b506103fa60048036036040811015610a0157600080fd5b508035906020013561178d565b348015610a1a57600080fd5b5061035b60048036036020811015610a3157600080fd5b50356001600160a01b03166117f0565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b6000610aeb610ae4611901565b8484611905565b5060015b92915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b60025490565b610b1b611901565b6005546001600160a01b03908116911614610b6b576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600a5481565b6000610ba08484846119f1565b610c1084610bac611901565b610c0b85604051806060016040528060288152602001612663602891396001600160a01b038a16600090815260016020526040812090610bea611901565b6001600160a01b031681526020810191909152604001600020549190611f28565b611905565b5060019392505050565b610c22611901565b6005546001600160a01b03908116911614610c72576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526015602052604090205460ff1615158115151415610cd05760405162461bcd60e51b81526004018080602001828103825260228152602001806126206022913960400191505060405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b601354610100900460ff1681565b600990565b6000610aeb610d1b611901565b84610c0b8560016000610d2c611901565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906118a7565b6011546001600160a01b031681565b61dead81565b60146020526000908152604090205460ff1681565b610d8e611901565b6005546001600160a01b03908116911614610dde576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b633b9aca0002600d55565b610df1611901565b6005546001600160a01b03908116911614610e41576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b633b9aca0002600e55565b600f5481565b610e5a611901565b6005546001600160a01b03908116911614610eaa576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b600791909155600955565b600b5481565b6001600160a01b031660009081526020819052604090205490565b610ede611901565b6005546001600160a01b03908116911614610f2e576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b610f80611901565b6005546001600160a01b03908116911614610fd0576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b601354610100900460ff161561102d576040805162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420697320616c7265616479206c61756e6368656400000000604482015290519081900360640190fd5b6013805461ff00191661010017905543601255565b61104a611901565b6005546001600160a01b0390811691161461109a576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b633b9aca0002600f55565b600e5481565b600d5481565b6005546001600160a01b031690565b60095481565b6010546001600160a01b031681565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610acd5780601f10610aa257610100808354040283529160200191610acd565b61113e611901565b6005546001600160a01b0390811691161461118e576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526017602052604090205460ff16156111fc576040805162461bcd60e51b815260206004820152601e60248201527f426c61636b6c6973743a20416c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6011546001600160a01b0382811691161415611257576040805162461bcd60e51b815260206004820152601560248201527421b0b73737ba10313630b1b5b634b9ba103830b4b960591b604482015290519081900360640190fd5b611262816001611fbf565b50565b6000610aeb611272611901565b84610c0b8560405180606001604052806025815260200161273b602591396001600061129c611901565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611f28565b6000610aeb6112da611901565b84846119f1565b600c5481565b60166020526000908152604090205460ff1681565b60156020526000908152604090205460ff1681565b611319611901565b6005546001600160a01b03908116911614611369576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff16151581151514156113dd576040805162461bcd60e51b815260206004820152601f60248201527f466565733a20416c72656164792073657420746f20746869732076616c756500604482015290519081900360640190fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b611410611901565b6005546001600160a01b03908116911614611460576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b61146a8282611311565b6114748282610c1a565b61147e82826114d1565b5050565b7f00000000000000000000000080e3186a5b80291e4b032805c913a7a5f68ba05281565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6114d9611901565b6005546001600160a01b03908116911614611529576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526016602052604090205460ff16151581151514156115875760405162461bcd60e51b81526004018080602001828103825260268152602001806127156026913960400191505060405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60085481565b6115c0611901565b6005546001600160a01b03908116911614611610576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526017602052604090205460ff1661167d576040805162461bcd60e51b815260206004820152601a60248201527f426c61636b6c6973743a204e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b611262816000611fbf565b60065481565b611696611901565b6005546001600160a01b039081169116146116e6576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b6001600160a01b03811661172b5760405162461bcd60e51b81526004018080602001828103825260268152602001806125b26026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60075481565b611795611901565b6005546001600160a01b039081169116146117e5576040805162461bcd60e51b8152602060048201819052602482015260008051602061268b833981519152604482015290519081900360640190fd5b600691909155600855565b60176020526000908152604090205460ff1681565b60008261181457506000610aef565b8282028284828161182157fe5b041461185e5760405162461bcd60e51b81526004018080602001828103825260218152602001806126426021913960400191505060405180910390fd5b9392505050565b600061185e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611fea565b60008282018381101561185e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b03831661194a5760405162461bcd60e51b81526004018080602001828103825260248152602001806126f16024913960400191505060405180910390fd5b6001600160a01b03821661198f5760405162461bcd60e51b81526004018080602001828103825260228152602001806125d86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611a4c576040805162461bcd60e51b815260206004820152601e60248201527f7472616e736665722066726f6d20746865207a65726f20616464726573730000604482015290519081900360640190fd5b6001600160a01b038216611aa7576040805162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f206164647265737300000000604482015290519081900360640190fd5b600e5481111580611ad057506001600160a01b03831660009081526015602052604090205460ff165b80611af357506001600160a01b03821660009081526015602052604090205460ff165b611b3a576040805162461bcd60e51b8152602060048201526013602482015272547820416d6f756e7420746f6f206c6172676560681b604482015290519081900360640190fd5b600f54611b5082611b4a85610ebb565b906118a7565b111580611b7557506001600160a01b03821660009081526016602052604090205460ff165b611bb05760405162461bcd60e51b81526004018080602001828103825260218152602001806126ab6021913960400191505060405180910390fd5b601354610100900460ff1680611bde57506001600160a01b03831660009081526014602052604090205460ff165b80611c0157506001600160a01b03821660009081526014602052604090205460ff165b611c47576040805162461bcd60e51b815260206004820152601260248201527157616974696e6720746f20676f206c69766560701b604482015290519081900360640190fd5b6001600160a01b03831660009081526017602052604090205460ff1615611cad576040805162461bcd60e51b815260206004820152601560248201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b604482015290519081900360640190fd5b80611cc357611cbe8383600061204f565b611f23565b600b54600a54600d546011549190920191821015906001600160a01b03868116911614801590611cf05750805b8015611cff575060135460ff16155b15611d29576013805460ff19166001179055611d1a826121aa565b6013805460ff19169055611d99565b6011546001600160a01b038681169116148015611d5457506011546001600160a01b03858116911614155b8015611d64575060125460020143105b8015611d8957506001600160a01b03841660009081526014602052604090205460ff16155b15611d9957611d99846001611fbf565b6013546001600160a01b03861660009081526014602052604090205460ff91821615911680611de057506001600160a01b03851660009081526014602052604090205460ff165b15611de9575060005b8015611f14576011546000906001600160a01b0387811691161415611e8c576000611e216009546007546118a790919063ffffffff16565b9050611e386064611e328884611805565b90611865565b9150611e5f611e5682611e326007548661180590919063ffffffff16565b600a54906118a7565b600a55600954611e8390611e7a908390611e32908690611805565b600b54906118a7565b600b5550611ef4565b6000611ea56008546006546118a790919063ffffffff16565b9050611eb66064611e328884611805565b9150611ed4611e5682611e326006548661180590919063ffffffff16565b600a55600854611eef90611e7a908390611e32908690611805565b600b55505b8015611f1257611f0587308361204f565b611f0f85826122b0565b94505b505b611f1f86868661204f565b5050505b505050565b60008184841115611fb75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f7c578181015183820152602001611f64565b50505050905090810190601f168015611fa95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b600081836120395760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611f7c578181015183820152602001611f64565b50600083858161204557fe5b0495945050505050565b6001600160a01b0383166120945760405162461bcd60e51b81526004018080602001828103825260258152602001806126cc6025913960400191505060405180910390fd5b6001600160a01b0382166120d95760405162461bcd60e51b815260040180806020018281038252602381526020018061258f6023913960400191505060405180910390fd5b6120e4838383611f23565b612121816040518060600160405280602681526020016125fa602691396001600160a01b0386166000908152602081905260409020549190611f28565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461215090826118a7565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000600d54905060006121d16002611e3285611e32600a548761180590919063ffffffff16565b905060006121e9826121e385826122b0565b906122b0565b905060006121f784846122b0565b9050612202816122f2565b47600061221383611e328487611805565b9050600061222183836122b0565b905061223a612231876002611805565b600a54906122b0565b600a5561225e61225561224e886002611805565b89906122b0565b600b54906122b0565b600b556010546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561229b573d6000803e3d6000fd5b506122a686826124be565b5050505050505050565b600061185e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f28565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061232057fe5b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561238d57600080fd5b505afa1580156123a1573d6000803e3d6000fd5b505050506040513d60208110156123b757600080fd5b50518151829060019081106123c857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612481578181015183820152602001612469565b505050509050019650505050505050600060405180830381600087803b1580156124aa57600080fd5b505af1158015611f1f573d6000803e3d6000fd5b6040805163f305d71960e01b81523060048201526024810184905260006044820181905260648201527f00000000000000000000000080e3186a5b80291e4b032805c913a7a5f68ba0526001600160a01b031660848201524260a48201529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163f305d71991849160c48082019260609290919082900301818588803b15801561255d57600080fd5b505af1158015612571573d6000803e3d6000fd5b50505050506040513d606081101561258857600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554784c696d69743a20416c72656164792073657420746f20746869732076616c7565536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e736665722077696c6c206578636565642077616c6c6574206c696d697445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357616c6c65744c696d69743a20416c72656164792073657420746f20746869732076616c756545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122010488004fa6a8a6a6e8b4aefd6b8e89de159895b2ec0c8ac6aa154d769ec03f764736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000add6894a7354d60317b73906ebda6f7e17c29b26

-----Decoded View---------------
Arg [0] : _dev (address): 0xADd6894a7354d60317b73906EBda6f7e17c29b26

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000add6894a7354d60317b73906ebda6f7e17c29b26


Deployed Bytecode Sourcemap

29321:8963:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20718:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22884:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22884:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29461:115;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;29461:115:0;;;;;;;;;;;;;;21837:108;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;33186:99;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33186:99:0;-1:-1:-1;;;;;33186:99:0;;:::i;:::-;;29737:33;;;;;;;;;;;;;:::i;23535:355::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23535:355:0;;;;;;;;;;;;;;;;;:::i;31759:230::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31759:230:0;;;;;;;;;;:::i;30343:22::-;;;;;;;;;;;;;:::i;21680:92::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24299:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24299:218:0;;;;;;;;:::i;30244:28::-;;;;;;;;;;;;;:::i;29400:54::-;;;;;;;;;;;;;:::i;30400:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30400:51:0;-1:-1:-1;;;;;30400:51:0;;:::i;33054:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33054:124:0;;:::i;32806:112::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32806:112:0;;:::i;30083:59::-;;;;;;;;;;;;;:::i;32642:156::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32642:156:0;;;;;;;:::i;29777:27::-;;;;;;;;;;;;;:::i;22008:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22008:127:0;-1:-1:-1;;;;;22008:127:0;;:::i;5469:148::-;;;;;;;;;;;;;:::i;33745:178::-;;;;;;;;;;;;;:::i;32926:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32926:120:0;;:::i;29989:54::-;;;;;;;;;;;;;:::i;29895:56::-;;;;;;;;;;;;;:::i;4827:79::-;;;;;;;;;;;;;:::i;29702:28::-;;;;;;;;;;;;;:::i;30179:18::-;;;;;;;;;;;;;:::i;20937:104::-;;;;;;;;;;;;;:::i;33293:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33293:253:0;-1:-1:-1;;;;;33293:253:0;;:::i;25020:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25020:269:0;;;;;;;;:::i;22348:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22348:175:0;;;;;;;;:::i;29813:38::-;;;;;;;;;;;;;:::i;30605:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30605:58:0;-1:-1:-1;;;;;30605:58:0;;:::i;30504:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30504:54:0;-1:-1:-1;;;;;30504:54:0;;:::i;31533:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31533:218:0;;;;;;;;;;:::i;32251:222::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32251:222:0;;;;;;;;;;:::i;30204:33::-;;;;;;;;;;;;;:::i;22586:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22586:151:0;;;;;;;;;;:::i;31997:246::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31997:246:0;;;;;;;;;;:::i;29668:27::-;;;;;;;;;;;;;:::i;33554:183::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33554:183:0;-1:-1:-1;;;;;33554:183:0;;:::i;29585:34::-;;;;;;;;;;;;;:::i;5772:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5772:244:0;-1:-1:-1;;;;;5772:244:0;;:::i;29626:35::-;;;;;;;;;;;;;:::i;32481:153::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32481:153:0;;;;;;;:::i;30727:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30727:46:0;-1:-1:-1;;;;;30727:46:0;;:::i;20718:100::-;20805:5;20798:12;;;;;;;;-1:-1:-1;;20798:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20772:13;;20798:12;;20805:5;;20798:12;;20805:5;20798:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20718:100;:::o;22884:169::-;22967:4;22984:39;22993:12;:10;:12::i;:::-;23007:7;23016:6;22984:8;:39::i;:::-;-1:-1:-1;23041:4:0;22884:169;;;;;:::o;29461:115::-;29533:42;29461:115;:::o;21837:108::-;21925:12;;21837:108;:::o;33186:99::-;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;33262:3:::1;:15:::0;;-1:-1:-1;;;;;;33262:15:0::1;-1:-1:-1::0;;;;;33262:15:0;;;::::1;::::0;;;::::1;::::0;;33186:99::o;29737:33::-;;;;:::o;23535:355::-;23675:4;23692:36;23702:6;23710:9;23721:6;23692:9;:36::i;:::-;23739:121;23748:6;23756:12;:10;:12::i;:::-;23770:89;23808:6;23770:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23770:19:0;;;;;;:11;:19;;;;;;23790:12;:10;:12::i;:::-;-1:-1:-1;;;;;23770:33:0;;;;;;;;;;;;-1:-1:-1;23770:33:0;;;:89;:37;:89::i;:::-;23739:8;:121::i;:::-;-1:-1:-1;23878:4:0;23535:355;;;;;:::o;31759:230::-;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31854:30:0;::::1;;::::0;;;:21:::1;:30;::::0;;;;;::::1;;:39;;::::0;::::1;;;;31846:86;;;;-1:-1:-1::0;;;31846:86:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;31943:30:0;;;::::1;;::::0;;;:21:::1;:30;::::0;;;;:38;;-1:-1:-1;;31943:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31759:230::o;30343:22::-;;;;;;;;;:::o;21680:92::-;21763:1;21680:92;:::o;24299:218::-;24387:4;24404:83;24413:12;:10;:12::i;:::-;24427:7;24436:50;24475:10;24436:11;:25;24448:12;:10;:12::i;:::-;-1:-1:-1;;;;;24436:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;24436:25:0;;;:34;;;;;;;;;;;:38;:50::i;30244:28::-;;;-1:-1:-1;;;;;30244:28:0;;:::o;29400:54::-;29447:6;29400:54;:::o;30400:51::-;;;;;;;;;;;;;;;:::o;33054:124::-;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;33164:5:::1;33148:22;33133:12;:37:::0;33054:124::o;32806:112::-;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;32904:5:::1;32892:18;32879:10;:31:::0;32806:112::o;30083:59::-;;;;:::o;32642:156::-;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;32731:16:::1;:31:::0;;;;32773:9:::1;:17:::0;32642:156::o;29777:27::-;;;;:::o;22008:127::-;-1:-1:-1;;;;;22109:18:0;22082:7;22109:18;;;;;;;;;;;;22008:127::o;5469:148::-;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;5560:6:::1;::::0;5539:40:::1;::::0;5576:1:::1;::::0;-1:-1:-1;;;;;5560:6:0::1;::::0;5539:40:::1;::::0;5576:1;;5539:40:::1;5590:6;:19:::0;;-1:-1:-1;;;;;;5590:19:0::1;::::0;;5469:148::o;33745:178::-;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;33807:10:::1;::::0;::::1;::::0;::::1;;;33806:11;33798:52;;;::::0;;-1:-1:-1;;;33798:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33861:10;:17:::0;;-1:-1:-1;;33861:17:0::1;;;::::0;;33903:12:::1;33889:11;:26:::0;33745:178::o;32926:120::-;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;33032:5:::1;33020:18;33003:14;:35:::0;32926:120::o;29989:54::-;;;;:::o;29895:56::-;;;;:::o;4827:79::-;4892:6;;-1:-1:-1;;;;;4892:6:0;4827:79;:::o;29702:28::-;;;;:::o;30179:18::-;;;-1:-1:-1;;;;;30179:18:0;;:::o;20937:104::-;21026:7;21019:14;;;;;;;;-1:-1:-1;;21019:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20993:13;;21019:14;;21026:7;;21019:14;;21026:7;21019:14;;;;;;;;;;;;;;;;;;;;;;;;33293:253;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33373:22:0;::::1;;::::0;;;:13:::1;:22;::::0;;;;;::::1;;33372:23;33364:66;;;::::0;;-1:-1:-1;;;33364:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33460:13;::::0;-1:-1:-1;;;;;33449:24:0;;::::1;33460:13:::0;::::1;33449:24;;33441:58;;;::::0;;-1:-1:-1;;;33441:58:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;33441:58:0;;;;;;;;;;;;;::::1;;33510:28;33524:7;33533:4;33510:13;:28::i;:::-;33293:253:::0;:::o;25020:269::-;25113:4;25130:129;25139:12;:10;:12::i;:::-;25153:7;25162:96;25201:15;25162:96;;;;;;;;;;;;;;;;;:11;:25;25174:12;:10;:12::i;:::-;-1:-1:-1;;;;;25162:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25162:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;22348:175::-;22434:4;22451:42;22461:12;:10;:12::i;:::-;22475:9;22486:6;22451:9;:42::i;29813:38::-;;;;:::o;30605:58::-;;;;;;;;;;;;;;;:::o;30504:54::-;;;;;;;;;;;;;;;:::o;31533:218::-;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31625:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;::::1;;:36;;::::0;::::1;;;;31617:80;;;::::0;;-1:-1:-1;;;31617:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31708:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;31708:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31533:218::o;32251:222::-;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;32340:31:::1;32356:7;32365:5;32340:15;:31::i;:::-;32382:34;32401:7;32410:5;32382:18;:34::i;:::-;32427:38;32450:7;32459:5;32427:22;:38::i;:::-;32251:222:::0;;:::o;30204:33::-;;;:::o;22586:151::-;-1:-1:-1;;;;;22702:18:0;;;22675:7;22702:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22586:151::o;31997:246::-;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32096:34:0;::::1;;::::0;;;:25:::1;:34;::::0;;;;;::::1;;:43;;::::0;::::1;;;;32088:94;;;;-1:-1:-1::0;;;32088:94:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32193:34:0;;;::::1;;::::0;;;:25:::1;:34;::::0;;;;:42;;-1:-1:-1;;32193:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31997:246::o;29668:27::-;;;;:::o;33554:183::-;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33636:22:0;::::1;;::::0;;;:13:::1;:22;::::0;;;;;::::1;;33628:61;;;::::0;;-1:-1:-1;;;33628:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33700:29;33714:7;33723:5;33700:13;:29::i;29585:34::-:0;;;;:::o;5772:244::-;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;5861:22:0;::::1;5853:73;;;;-1:-1:-1::0;;;5853:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5963:6;::::0;5942:38:::1;::::0;-1:-1:-1;;;;;5942:38:0;;::::1;::::0;5963:6:::1;::::0;5942:38:::1;::::0;5963:6:::1;::::0;5942:38:::1;5991:6;:17:::0;;-1:-1:-1;;;;;;5991:17:0::1;-1:-1:-1::0;;;;;5991:17:0;;;::::1;::::0;;;::::1;::::0;;5772:244::o;29626:35::-;;;;:::o;32481:153::-;5049:12;:10;:12::i;:::-;5039:6;;-1:-1:-1;;;;;5039:6:0;;;:22;;;5031:67;;;;;-1:-1:-1;;;5031:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;5031:67:0;;;;;;;;;;;;;;;32569:15:::1;:30:::0;;;;32610:8:::1;:16:::0;32481:153::o;30727:46::-;;;;;;;;;;;;;;;:::o;7640:471::-;7698:7;7943:6;7939:47;;-1:-1:-1;7973:1:0;7966:8;;7939:47;8010:5;;;8014:1;8010;:5;:1;8034:5;;;;;:10;8026:56;;;;-1:-1:-1;;;8026:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8102:1;7640:471;-1:-1:-1;;;7640:471:0:o;8587:132::-;8645:7;8672:39;8676:1;8679;8672:39;;;;;;;;;;;;;;;;;:3;:39::i;6286:181::-;6344:7;6376:5;;;6400:6;;;;6392:46;;;;;-1:-1:-1;;;6392:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;3980:98;4060:10;3980:98;:::o;28206:380::-;-1:-1:-1;;;;;28342:19:0;;28334:68;;;;-1:-1:-1;;;28334:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28421:21:0;;28413:68;;;;-1:-1:-1;;;28413:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28494:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28546:32;;;;;;;;;;;;;;;;;28206:380;;;:::o;33931:2565::-;-1:-1:-1;;;;;34029:18:0;;34021:61;;;;;-1:-1:-1;;;34021:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34101:16:0;;34093:57;;;;;-1:-1:-1;;;34093:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34179:10;;34169:6;:20;;:51;;;-1:-1:-1;;;;;;34193:27:0;;;;;;:21;:27;;;;;;;;34169:51;:80;;;-1:-1:-1;;;;;;34224:25:0;;;;;;:21;:25;;;;;;;;34169:80;34161:112;;;;;-1:-1:-1;;;34161:112:0;;;;;;;;;;;;-1:-1:-1;;;34161:112:0;;;;;;;;;;;;;;;34321:14;;34292:25;34310:6;34292:13;34302:2;34292:9;:13::i;:::-;:17;;:25::i;:::-;:43;;:76;;;-1:-1:-1;;;;;;34339:29:0;;;;;;:25;:29;;;;;;;;34292:76;34284:122;;;;-1:-1:-1;;;34284:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34425:10;;;;;;;;:38;;-1:-1:-1;;;;;;34439:24:0;;;;;;:18;:24;;;;;;;;34425:38;:64;;;-1:-1:-1;;;;;;34467:22:0;;;;;;:18;:22;;;;;;;;34425:64;34417:95;;;;;-1:-1:-1;;;34417:95:0;;;;;;;;;;;;-1:-1:-1;;;34417:95:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34532:19:0;;;;;;:13;:19;;;;;;;;34531:20;34523:54;;;;;-1:-1:-1;;;34523:54:0;;;;;;;;;;;;-1:-1:-1;;;34523:54:0;;;;;;;;;;;;;;;34593:11;34590:92;;34621:28;34637:4;34643:2;34647:1;34621:15;:28::i;:::-;34664:7;;34590:92;34743:12;;34722:18;;34802:12;;34852:13;;34722:33;;;;;34781;;;;-1:-1:-1;;;;;34844:21:0;;;34852:13;;34844:21;;;;:45;;;34882:7;34844:45;:71;;;;-1:-1:-1;34907:8:0;;;;34906:9;34844:71;34827:444;;;34942:8;:15;;-1:-1:-1;;34942:15:0;34953:4;34942:15;;;34972:27;34981:17;34972:8;:27::i;:::-;35014:8;:16;;-1:-1:-1;;35014:16:0;;;34827:444;;;35073:13;;-1:-1:-1;;;;;35065:21:0;;;35073:13;;35065:21;:57;;;;-1:-1:-1;35109:13:0;;-1:-1:-1;;;;;35103:19:0;;;35109:13;;35103:19;;35065:57;:104;;;;;35154:11;;35168:1;35154:15;35139:12;:30;35065:104;:144;;;;-1:-1:-1;;;;;;35187:22:0;;;;;;:18;:22;;;;;;;;35186:23;35065:144;35048:223;;;35236:23;35250:2;35254:4;35236:13;:23::i;:::-;35299:8;;-1:-1:-1;;;;;35323:24:0;;35283:12;35323:24;;;:18;:24;;;;;;35299:8;;;;35298:9;;35323:24;;:50;;-1:-1:-1;;;;;;35351:22:0;;;;;;:18;:22;;;;;;;;35323:50;35320:97;;;-1:-1:-1;35400:5:0;35320:97;35432:7;35429:1014;;;35517:13;;35456:12;;-1:-1:-1;;;;;35511:19:0;;;35517:13;;35511:19;35507:776;;;35551:21;35575:31;35596:9;;35575:16;;:20;;:31;;;;:::i;:::-;35551:55;-1:-1:-1;35632:34:0;35662:3;35632:25;:6;35551:55;35632:10;:25::i;:::-;:29;;:34::i;:::-;35625:41;;35706:69;35729:45;35760:13;35729:26;35738:16;;35729:4;:8;;:26;;;;:::i;:45::-;35706:18;;;:22;:69::i;:::-;35685:18;:90;35835:9;;35809:56;;35826:38;;35850:13;;35826:19;;:4;;:8;:19::i;:38::-;35809:12;;;:16;:56::i;:::-;35794:12;:71;-1:-1:-1;35507:776:0;;;35961:20;35984:29;36004:8;;35984:15;;:19;;:29;;;;:::i;:::-;35961:52;-1:-1:-1;36039:33:0;36068:3;36039:24;:6;35961:52;36039:10;:24::i;:33::-;36032:40;;36112:67;36135:43;36165:12;36135:25;36144:15;;36135:4;:8;;:25;;;;:::i;36112:67::-;36091:18;:88;36239:8;;36213:54;;36230:36;;36253:12;;36230:18;;:4;;:8;:18::i;36213:54::-;36198:12;:69;-1:-1:-1;35507:776:0;36302:8;;36299:133;;36330:42;36346:4;36360;36367;36330:15;:42::i;:::-;36400:16;:6;36411:4;36400:10;:16::i;:::-;36391:25;;36299:133;35429:1014;;36455:33;36471:4;36477:2;36481:6;36455:15;:33::i;:::-;33931:2565;;;;;;;:::o;7189:192::-;7275:7;7311:12;7303:6;;;;7295:29;;;;-1:-1:-1;;;7295:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7347:5:0;;;7189:192::o;38134:110::-;-1:-1:-1;;;;;38206:22:0;;;;;;;;:13;:22;;;;;:30;;-1:-1:-1;;38206:30:0;;;;;;;;;;38134:110::o;9215:278::-;9301:7;9336:12;9329:5;9321:28;;;;-1:-1:-1;;;9321:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9360:9;9376:1;9372;:5;;;;;;;9215:278;-1:-1:-1;;;;;9215:278:0:o;25779:573::-;-1:-1:-1;;;;;25919:20:0;;25911:70;;;;-1:-1:-1;;;25911:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26000:23:0;;25992:71;;;;-1:-1:-1;;;25992:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26076:47;26097:6;26105:9;26116:6;26076:20;:47::i;:::-;26156:71;26178:6;26156:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26156:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;26136:17:0;;;:9;:17;;;;;;;;;;;:91;;;;26261:20;;;;;;;:32;;26286:6;26261:24;:32::i;:::-;-1:-1:-1;;;;;26238:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;26309:35;;;;;;;26238:20;;26309:35;;;;;;;;;;;;;25779:573;;;:::o;36504:912::-;36568:14;36585:12;;36568:29;;36659:23;36685:60;36743:1;36685:53;36720:17;36685:30;36696:18;;36685:6;:10;;:30;;;;:::i;:60::-;36659:86;-1:-1:-1;36756:17:0;36776:48;36659:86;36776:27;:6;36659:86;36776:10;:27::i;:::-;:31;;:48::i;:::-;36756:68;-1:-1:-1;36835:26:0;36864:27;:6;36875:15;36864:10;:27::i;:::-;36835:56;;36904:37;36922:18;36904:17;:37::i;:::-;36975:21;36954:18;37027:49;37057:18;37027:25;36975:21;37042:9;37027:14;:25::i;:49::-;37007:69;-1:-1:-1;37087:23:0;37113:25;:10;37007:69;37113:14;:25::i;:::-;37087:51;-1:-1:-1;37172:46:0;37195:22;:15;37215:1;37195:19;:22::i;:::-;37172:18;;;:22;:46::i;:::-;37151:18;:67;37244:52;37261:34;37272:22;:15;37292:1;37272:19;:22::i;:::-;37261:6;;:10;:34::i;:::-;37244:12;;;:16;:52::i;:::-;37229:12;:67;37325:3;;37309:41;;-1:-1:-1;;;;;37325:3:0;;;;37309:41;;;;;37340:9;;37325:3;37309:41;37325:3;37309:41;37340:9;37325:3;37309:41;;;;;;;;;;;;;;;;;;;;;37361:47;37375:15;37392;37361:13;:47::i;:::-;36504:912;;;;;;;;:::o;6750:136::-;6808:7;6835:43;6839:1;6842;6835:43;;;;;;;;;;;;;;;;;:3;:43::i;37723:403::-;37816:16;;;37830:1;37816:16;;;37792:21;37816:16;;;;;37792:21;37816:16;;;;;;;;;;-1:-1:-1;37816:16:0;37792:40;;37861:4;37843;37848:1;37843:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;37843:23:0;;;-1:-1:-1;;;;;37843:23:0;;;;;29533:42;-1:-1:-1;;;;;37887:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37887:22:0;37877:7;;:4;;37882:1;;37877:7;;;;;;;;;;;:32;-1:-1:-1;;;;;37877:32:0;;;-1:-1:-1;;;;;37877:32:0;;;;;29533:42;-1:-1:-1;;;;;37922:66:0;;38003:11;38029:1;38045:4;38072;38092:15;37922:196;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37922:196:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37424:291;37508:199;;;-1:-1:-1;;;37508:199:0;;37580:4;37508:199;;;;;;;;;;37626:1;37508:199;;;;;;;;;;37658:8;-1:-1:-1;;;;;37508:199:0;;;;;37681:15;37508:199;;;;;;29533:42;;37508:31;;37547:9;;37508:199;;;;;;;;;;;;;;;37547:9;29533:42;37508:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;37424:291:0:o

Swarm Source

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